SPB Git forge

spb/lou-ka

Public

Lou·Ka — tous les logements à louer du Québec, un seul endroit.

232commits 1branches 0releases
172.9 MBsize
maindefault branch
2 days agolast push
HTML 98.9% Python 0.6%

[ka2] fix connecteur halfred: refonte Eversa « Editorial » du site — préfixe de locale /fr + nouveau gabarit de cartes. Le sync du 2026-09-17 (dernier succès 06:46, stale 5,2 h) rapportait found=0 : halfred.ca (plateforme Eversa, cf. gestion_cem 7f020de) a basculé sur des routes préfixées de locale (/listings/list → 301 /fr/listings/list) ET un nouveau gabarit : les cartes sont désormais des <a data-sentry-component="EditorialListingCard"> avec hrefs /fr/listings/…/details (le sélecteur a[href^='/listings/'] ne matchait plus rien), titre en h3 (plus h1), lieu « Secteur · Ville » (plus « Ville (Secteur) »), SpecItem textuels sans icônes lucide, prix « À partir de $1,559 » avec ancien prix .line-through dans un composant line, disponibilité en pill « Disponible le … » ; la fiche détail expose la description via RichTextDisplay (plus de h2 « Description de l'annonce ») et des Walk/Bike Score® en anglais. Fix minimal : LIST_URL → /fr/listings/list, _external_id retire le préfixe de locale (ids historiques préservés, aucune ré-ingestion), _city_sector gère « Secteur · Ville » (ancien format en repli, normalisation Gatineau intacte), _features lit SpecItem/pills/line, _fetch_detail lit RichTextDisplay et les scores bilingues. Testé : fetch() venv → 173 annonces en 133 s (30 Rue De Matapédia Gatineau/Pointe-Gatineau 4½ 1 300 $ promo, 12 fiches détail avec description+contact+scores — médiane 172 couverte), fixtures ré-enregistrées + pytest 2 passed, run.py sync halfred → found=174 ok (added=1, 131 s), pm2 restart lou-ka-sync, site :8095 → 200.

Simon-Pierre Boucher committed 7 days ago (Sep 17, 2026) parent 7f020de

23 changed files +9,794 −10,138

modified louka/connectors/halfred.py +82 −66
@@ -2,17 +2,19 @@
2 2 # Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 3 # Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 4 # connectors/halfred.py : connecteur Halfred (halfred.ca — Outaouais)
5 −# Application React Router rendue CÔTÉ SERVEUR : /listings redirige vers
6 −# /listings/list dont le HTML contient déjà toutes les cartes d'annonces
7 −# (aucun JavaScript requis). Chaque carte porte, en éléments structurés :
8 −# - le lien /listings/<slug>/details (ou /listings/project/<uuid>/details
9 −# pour les projets locatifs) -> external_id stable ;
10 −# - l'adresse civique (h1), le secteur « Gatineau (Hull) » (icône map-pin),
11 −# le nombre de chambres, de salles de bain, la superficie, la date de
12 −# disponibilité (icônes lucide) et le prix (« À partir de 1 650$ »,
13 −# ancien prix barré quand il y a une promotion).
14 −# La fiche /details ajoute la description longue rédigée par l'agence, la
15 −# galerie de photos, les scores de mobilité/vélo et le contact du bureau.
5 +# Application React Router (plateforme Eversa) rendue CÔTÉ SERVEUR. Depuis
6 +# la refonte « Editorial » de ~2026-09-17, toutes les routes portent un
7 +# préfixe de locale (/fr, /en) : la liste est /fr/listings/list, dont le
8 +# HTML contient déjà toutes les cartes (aucun JavaScript requis). Chaque
9 +# carte est un <a data-sentry-component="EditorialListingCard"> :
10 +# - le lien /fr/listings/<slug>/details (ou /fr/listings/project/<uuid>/
11 +# details pour les projets) -> external_id stable, préfixe retiré ;
12 +# - l'adresse civique (h3), le lieu « Secteur · Ville » (p qui suit),
13 +# les SpecItem textuels (chambres, salles de bain, pi²), la pill
14 +# « Disponible le … » et le prix (« À partir de $1,559 », ancien prix
15 +# barré .line-through quand il y a une promotion).
16 +# La fiche /details ajoute la description (RichTextDisplay), la galerie,
17 +# les Walk/Bike Score® et le contact du bureau.
16 18 # Elle passe par self.detail(...) (cache BD) avec un plafond par sync : le
17 19 # robots.txt du site impose « Crawl-delay: 10 » — request_delay = 10 s.
18 20 # Le site est bilingue : en-tête Accept-Language fr-CA pour obtenir le
@@ -30,7 +32,7 @@ from ..schema import (Listing, normalize_unit_type, parse_area_sqft,
30 32 from .base import BaseConnector
31 33
32 34 BASE = "https://www.halfred.ca"
33 −LIST_URL = f"{BASE}/listings/list"
35 +LIST_URL = f"{BASE}/fr/listings/list"
34 36
35 37 # Villes/secteurs de l'agglomération de Gatineau (fusion 2002) : la ville
36 38 # affichée reste « Gatineau », le nom d'origine devient le secteur.
@@ -43,10 +45,6 @@ _GATINEAU_KEYS = {
43 45 # libellés de secteur sans valeur informative (numéros, doublon de la ville)
44 46 _SECTOR_NOISE = re.compile(r"^(?:\d+|gatineau|quebec|québec)$", re.I)
45 47
46 −_ICONS = {
47 − "bed-double": "beds", "bath": "baths", "ruler": "sqft",
48 − "calendar": "availability", "map-pin": "location",
49 −}
50 48
51 49
52 50 def _norm(s: str) -> str:
@@ -68,57 +66,72 @@ class HalfredConnector(BaseConnector):
68 66 # -- helpers ---------------------------------------------------------------
69 67 @staticmethod
70 68 def _external_id(href: str) -> str:
71 − """/listings/17-rue-de-liverpool/details -> '17-rue-de-liverpool' ;
72 − /listings/project/<uuid>/details -> 'project-<uuid>'."""
73 − m = re.match(r"^/listings/project/([0-9a-f-]{8,})/details$", href)
69 + """/fr/listings/17-rue-de-liverpool/details -> '17-rue-de-liverpool' ;
70 + /fr/listings/project/<uuid>/details -> 'project-<uuid>'. Le préfixe
71 + de locale (/fr, /en) est retiré pour garder les ids historiques."""
72 + path = re.sub(r"^/(?:fr|en)(?=/)", "", href)
73 + m = re.match(r"^/listings/project/([0-9a-f-]{8,})/details$", path)
74 74 if m:
75 75 return f"project-{m.group(1)}"
76 − m = re.match(r"^/listings/([^/]+)/details$", href)
76 + m = re.match(r"^/listings/([^/]+)/details$", path)
77 77 return m.group(1) if m else ""
78 78
79 79 @staticmethod
80 80 def _city_sector(raw: str) -> tuple[str, str]:
81 − """« Gatineau (Plateau) » -> ('Gatineau', 'Plateau') ;
82 − « Buckingham (Buckingham) » -> ('Gatineau', 'Buckingham') ;
81 + """« Pointe-Gatineau · Gatineau » -> ('Gatineau', 'Pointe-Gatineau') ;
82 + « Buckingham · Buckingham » -> ('Gatineau', 'Buckingham') ;
83 83 « Chelsea » -> ('Chelsea', '')."""
84 84 txt = re.sub(r"\s+", " ", (raw or "").strip())
85 − m = re.match(r"^(.*?)\s*\(([^)]*)\)\s*$", txt)
86 − base = (m.group(1) if m else txt).strip()
87 − paren = (m.group(2) if m else "").strip()
88 − if _norm(base) in _GATINEAU_KEYS:
89 − if _norm(base) == "gatineau":
90 − sector = "" if _SECTOR_NOISE.match(paren) else paren
91 − else:
92 − sector = base
85 + if "·" in txt:
86 + sector, _, city = (x.strip() for x in txt.rpartition("·"))
87 + else:
88 + # ancien format « Ville (Secteur) »
89 + m = re.match(r"^(.*?)\s*\(([^)]*)\)\s*$", txt)
90 + city = (m.group(1) if m else txt).strip()
91 + sector = (m.group(2) if m else "").strip()
92 + if _norm(city) in _GATINEAU_KEYS:
93 + if _norm(city) != "gatineau" and \
94 + (not sector or _norm(sector) == _norm(city)):
95 + sector = city
96 + if not sector or _SECTOR_NOISE.match(sector):
97 + sector = ""
93 98 return "Gatineau", sector
94 − sector = "" if (not paren or _norm(paren) == _norm(base)) else paren
95 − return base, sector
99 + if not sector or _norm(sector) == _norm(city):
100 + sector = ""
101 + return city, sector
96 102
97 103 @staticmethod
98 104 def _features(card) -> dict:
99 − """Attributs structurés de la carte, repérés par leur icône lucide."""
105 + """Attributs structurés de la carte : SpecItem textuels (chambres,
106 + salles de bain, superficie), pill « Disponible… » et bloc prix."""
100 107 out: dict[str, str] = {}
101 − for feat in card.select("[data-sentry-component='ListingCardFeature']"):
102 − icon = feat.find("span")
103 − classes = " ".join(icon.get("class") or []) if icon else ""
104 − key = ""
105 − for suffix, name in _ICONS.items():
106 − if f"icon-lucide-{suffix}" in classes:
107 − key = name
108 − break
108 + for feat in card.select("[data-sentry-component='SpecItem']"):
109 109 txt = re.sub(r"\s+", " ", feat.get_text(" ", strip=True)).strip()
110 − if key:
111 − out.setdefault(key, txt)
112 − elif "price" not in out and "$" in txt:
113 − # bloc prix : retirer l'ancien prix barré (promotion)
114 − clone = BeautifulSoup(str(feat), "html.parser")
115 − for old in clone.select(".line-through"):
116 − out.setdefault("price_regular",
117 − re.sub(r"\s+", " ",
118 − old.get_text(" ", strip=True)))
119 − old.decompose()
120 − out["price"] = re.sub(
121 − r"\s+", " ", clone.get_text(" ", strip=True)).strip()
110 + low = _norm(txt)
111 + if "chambre" in low or "studio" in low or "bedroom" in low:
112 + out.setdefault("beds", txt)
113 + elif "bain" in low or "bath" in low:
114 + out.setdefault("baths", txt)
115 + elif "pi²" in low or "pi2" in low or "sq" in low:
116 + out.setdefault("sqft", txt)
117 + for sp in card.find_all("span"):
118 + txt = re.sub(r"\s+", " ", sp.get_text(" ", strip=True)).strip()
119 + if re.match(r"(?i)^(disponible|available)\b", txt):
120 + out.setdefault("availability", txt)
121 + break
122 + line = card.select_one("[data-sentry-component='line']")
123 + if line and "$" in line.get_text():
124 + # bloc prix : retirer l'ancien prix barré (promotion)
125 + clone = BeautifulSoup(str(line), "html.parser")
126 + for old in clone.select(".line-through"):
127 + out.setdefault("price_regular",
128 + re.sub(r"\s+", " ",
129 + old.get_text(" ", strip=True)))
130 + old.decompose()
131 + price = re.sub(
132 + r"\s+", " ", clone.get_text(" ", strip=True)).strip()
133 + out["price"] = re.sub(r"\s*/\s*(mois|month)\s*$", "",
134 + price).strip()
122 135 return out
123 136
124 137 @staticmethod
@@ -170,11 +183,9 @@ class HalfredConnector(BaseConnector):
170 183 html = self._html(self._abs(href))
171 184 soup = BeautifulSoup(html, "html.parser")
172 185
173 − h2 = soup.find("h2", string=re.compile(r"Description de l"))
174 − if h2 and h2.parent:
175 − txt = h2.parent.get_text("\n", strip=True)
176 − txt = re.sub(r"^Description de l['’]annonce\s*", "", txt)
177 − txt = re.sub(r"\n+", " ", txt)
186 + rich = soup.select_one("[data-sentry-component='RichTextDisplay']")
187 + if rich:
188 + txt = re.sub(r"\n+", " ", rich.get_text("\n", strip=True))
178 189 payload["description"] = re.sub(r"\s{2,}", " ", txt).strip()[:1500]
179 190
180 191 for img in soup.select("img[src*='/storage/v1/']"):
@@ -191,9 +202,9 @@ class HalfredConnector(BaseConnector):
191 202 if m:
192 203 payload["contact"]["phone"] = \
193 204 f"{m.group(1)}-{m.group(2)}-{m.group(3)}"
194 − for label, key in (("Score de mobilité", "walk"),
195 − ("Score de vélo", "bike")):
196 − m = re.search(rf"{label}\s*(\d{{1,3}})", text)
205 + for label, key in ((r"(?:Walk Score|Score de mobilité)", "walk"),
206 + (r"(?:Bike Score|Score de vélo)", "bike")):
207 + m = re.search(rf"{label}\W*(\d{{1,3}})", text)
197 208 if m:
198 209 payload["scores"][key] = int(m.group(1))
199 210 return payload
@@ -201,7 +212,9 @@ class HalfredConnector(BaseConnector):
201 212 # -- fetch -----------------------------------------------------------------
202 213 def fetch(self) -> list[Listing]:
203 214 soup = BeautifulSoup(self._html(LIST_URL), "html.parser")
204 − cards = soup.select("a[href^='/listings/'][href$='/details']")
215 + cards = soup.select(
216 + "a[data-sentry-component='EditorialListingCard']") or \
217 + soup.select("a[href$='/details']")
205 218
206 219 listings: list[Listing] = []
207 220 seen: set[str] = set()
@@ -214,10 +227,13 @@ class HalfredConnector(BaseConnector):
214 227 continue
215 228 seen.add(ext)
216 229
217 − h1 = card.select_one("h1")
218 − title = h1.get_text(" ", strip=True) if h1 else ""
230 + h = card.select_one("h3, h1")
231 + title = h.get_text(" ", strip=True) if h else ""
232 + # le lieu « Secteur · Ville » est le <p> qui suit le titre
233 + loc_p = h.find_next_sibling("p") if h else None
234 + location = loc_p.get_text(" ", strip=True) if loc_p else ""
219 235 feats = self._features(card)
220 − city, sector = self._city_sector(feats.get("location", ""))
236 + city, sector = self._city_sector(location)
221 237 # l'adresse civique n'est publiée que pour les immeubles dont
222 238 # le titre EST l'adresse (les projets portent un nom)
223 239 address = (f"{title}, {city}"
@@ -229,7 +245,7 @@ class HalfredConnector(BaseConnector):
229 245 badges = [b.get_text(" ", strip=True)
230 246 for b in card.select("span")
231 247 if b.get_text(strip=True) in
232 − ("PROMO", "Dernières unités", "Nouveau")]
248 + ("PROMO", "Offre", "Dernières unités", "Nouveau")]
233 249
234 250 image = ""
235 251 img = card.select_one("img[src*='/storage/v1/']")
added tests/fixtures/halfred/047e8f5f82d9e4a9889e.html +1047 −0
@@ -0,0 +1,1047 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png?width=1024&amp;height=1280&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/IMG_2062.JPG?width=232&amp;height=168&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 88 Rue Frontenac, Gatineau</title><meta name="description" content="🔥 Spacieux appartement 3 chambres à louer – Vieux-Hull! 🔥 Découvrez ce grand appartement de 3 chambres idéalement situé au cœur du Vieux-Hull ! Profitez..."/><meta property="og:title" content="Halfred | Apartment rentals | 88 Rue Frontenac, Gatineau"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="🔥 Spacieux appartement 3 chambres à louer – Vieux-Hull! 🔥 Découvrez ce grand appartement de 3 chambres idéalement situé au cœur du Vieux-Hull ! Profitez..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png"/><meta property="og:url" content="https://www.halfred.ca/fr/listings/88-rue-frontenac/details"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/88-rue-frontenac/details"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/88-rue-frontenac/details"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/88-rue-frontenac/details"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/88-rue-frontenac/details"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/listing-detail.page-Bodk8trl.js"/><link rel="modulepreload" href="/assets/detail-error-boundary-C3TWahqB.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="bf86ddf314f7b3c8bc421c2e3a9e4524-0924d8f54f106817-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=bf86ddf314f7b3c8bc421c2e3a9e4524,sentry-org_id=476518,sentry-transaction=GET%20%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.23866376083795948,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="max-lg:hidden order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex"><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Retour à la liste</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="px-3.5" data-sentry-component="EditorialDetailsPage" data-sentry-source-file="details.tsx"><main class="mx-auto max-w-[1320px] px-1 pb-10 pt-3 sm:px-[clamp(20px,4.5vw,64px)] sm:pb-[clamp(48px,5.5vw,84px)] sm:pt-[clamp(24px,3.2vw,44px)]"><div class="flex flex-wrap items-start gap-x-[clamp(40px,5vw,72px)] gap-y-7 sm:gap-y-14 lg:flex-nowrap"><div class="order-2 min-w-0 max-w-[660px] flex-[1_1_440px] lg:order-1"><div data-ed-rise="true" class="ed-kicker mb-2 sm:mb-3">Hull · Gatineau</div><h1 class="ed-serif m-0 mb-5 overflow-hidden pb-[0.05em] text-[length:var(--ed-text-h1)] font-medium leading-[1.12] tracking-[-0.012em] text-[var(--ed-ink)] sm:mb-6"><span data-ed-mask="true" class="block">88 Rue Frontenac</span></h1><div data-ed-rise="4" class="mb-8 sm:mb-10" id="details-cta"><div data-sentry-component="ConversionRail" data-sentry-source-file="conversion-rail.tsx"><div class="flex flex-col items-stretch gap-2.5 sm:flex-row sm:flex-wrap sm:items-center sm:gap-3"><a href="#units" class="inline-flex w-full min-h-12 items-center justify-center gap-2.5 rounded-full bg-[var(--ed-ink)] px-7 py-1 shadow-[0_8px_20px_rgba(26,26,23,0.16)] transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto"><span class="text-[14px] font-semibold leading-snug text-white"><span class="whitespace-nowrap">Postuler en ligne</span></span><span></span></a><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div></div></div><div data-ed-rise="5"><div data-sentry-component="HomeTypeRows" data-sentry-source-file="home-types.tsx"><div class="ed-kicker mb-2 text-[10.5px] tracking-[0.13em]">Logements disponibles</div><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">3 chambres</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">1 disponible</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,302<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a></div></div><div data-ed-rise="9" class="mt-8 sm:mt-10"><div class="text-[length:var(--ed-text-copy)] leading-[var(--ed-copy-leading)] text-[var(--ed-body)] [&amp;_p:empty]:hidden [&amp;_p:has(&gt;br:only-child)]:hidden line-clamp-4"><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Spacious 3-Bedroom Apartment for Rent – Old Hull!</strong> 🔥</p><p>Discover this spacious 3-bedroom apartment ideally located in the heart of <strong>Old Hull</strong>! Enjoy living just steps away from essential services, restaurants, parks, museums, government buildings, and much more.</p><p>📍 <strong>Prime location:</strong><br>🌆 Located in the vibrant Old Hull area<br>🍽️ Close to restaurants, cafés, and shops<br>🌳 Near parks and green spaces<br>🏛️ Minutes from museums and government offices</p><p>🏡 <strong>What this unit offers:</strong><br>🍽️ Stove included<br>🧊 Refrigerator included<br>📦 Outdoor storage shed included<br>✨ Spacious and functional living space</p><p>💡 <strong>Why you’ll love it:</strong><br>Enjoy the convenience of downtown living while benefiting from a comfortable and well-located apartment.</p><p>📌 <strong>Important details:</strong><br>🚗 No parking included, but parking may be available for $100/month (subject to availability)<br>❌ 🐶 No dogs allowed<br>⚡ Not heated / not electricity included<br>📋 Credit check required</p><p>📸 <em>Photos are from a model unit and may vary from the available apartment.</em></p><p>📞 Contact <strong>Halfred</strong> today at <strong>819-593-3304</strong> for more information or to schedule your visit!</p></div></div></div></div></div><!--$?--><template id="B:0"></template><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Cats Allowed</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Stove</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Refrigerator</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water Tank</span></div><!--/$--><div data-ed-rise="9" class="mt-6 sm:mt-8"><div data-sentry-component="ContactPanel" data-sentry-source-file="conversion-rail.tsx"><div class="rounded-[18px] border border-[var(--ed-hairline)] bg-[var(--ed-card-alt)] p-4 sm:p-5" data-sentry-component="ContactActions" data-sentry-source-file="conversion-rail.tsx"><div class="mb-4 flex items-center gap-3"><span class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-chip)] text-[13px] font-semibold tracking-[0.02em] text-[var(--ed-strong)]">H|</span><span class="min-w-0"><span class="block truncate text-[15px] font-semibold text-[var(--ed-ink)]">Halfred | Apartment rentals</span><span class="block text-[12.5px] text-[var(--ed-secondary)]">Gestionnaire immobilier</span></span></div><div class="flex flex-wrap gap-2"><a href="mailto:info@halfred.ca" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full bg-[var(--ed-ink)] px-4 text-[13.5px] font-medium text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto sm:flex-1"><span></span>Message</a><a href="tel:(819) 593-3304" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[13.5px] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)] sm:w-auto sm:flex-1"><span></span><span class="truncate">Appeler (819) 593-3304</span></a></div><form class="mt-2.5 flex items-center gap-2" data-sentry-component="QuickQuestion" data-sentry-source-file="conversion-rail.tsx"><input type="text" placeholder="Or ask a quick question…" class="h-10 min-w-0 flex-1 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[16px] text-[var(--ed-ink)] outline-none transition-colors placeholder:text-[var(--ed-tertiary)] focus:border-[var(--ed-ink)] sm:text-[13.5px]" value=""/><button type="submit" aria-label="Send your question" class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form></div><div class="mt-6 border-t border-[var(--ed-hairline)]" data-sentry-component="FeesDisclosure" data-sentry-source-file="conversion-rail.tsx"><button type="button" aria-expanded="false" class="flex w-full items-center justify-between gap-3 py-3.5 text-left"><span class="text-[15px] font-medium text-[var(--ed-ink)]">Frais et politiques</span><span></span></button></div></div></div><div data-ed-rise="10" id="amenities" class="mt-8 scroll-mt-[calc(var(--ed-header-h,0px)+16px)] sm:mt-10"><div class="ed-kicker mb-5">Commodités</div><div class="grid grid-cols-1 gap-x-8 gap-y-3 text-[15px] text-[var(--ed-strong)] sm:grid-cols-2 sm:gap-y-4 sm:text-[15.5px]"><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Cats Allowed</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Stove</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Refrigerator</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water Tank</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Washer/Dryer Outlet</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water</div></div><button type="button" class="mt-2.5 py-2.5 text-[15px] text-[var(--ed-ink)] underline underline-offset-4 sm:mt-5 sm:py-0">Afficher les 8 commodités</button></div></div><div class="order-1 min-w-0 flex-[1.15_1_480px] lg:sticky lg:top-[92px] lg:order-2 lg:self-start" data-sentry-component="GalleryCollage" data-sentry-source-file="gallery-collage.tsx"><div class="-mx-[1.125rem] flex snap-x snap-mandatory gap-3 overflow-x-auto px-[1.125rem] pb-1 sm:hidden"><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-full" href="/fr/listings/88-rue-frontenac/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png?width=800&amp;height=520&amp;quality=80" alt="88 Rue Frontenac" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="hidden sm:block"><a data-ed-img="true" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[20px]" style="aspect-ratio:4/5" data-sentry-element="RemixLink" data-sentry-source-file="gallery-collage.tsx" href="/fr/listings/88-rue-frontenac/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png?width=1024&amp;height=1280&amp;quality=80" alt="88 Rue Frontenac" data-ed-imgzoom="true" class="absolute inset-0 h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/><div class="absolute bottom-3.5 right-3.5 flex items-center gap-2 rounded-full bg-[rgba(26,26,23,0.78)] px-3.5 py-2"><span></span><span class="text-[13px] font-semibold text-white">1 photo</span></div></a></div></div></div><div id="units" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t pt-[var(--ed-section-pad)] border-[var(--ed-hairline)]"><div data-ed-reveal="true" class="flex flex-wrap items-baseline justify-between gap-x-4 gap-y-0.5 sm:flex-nowrap sm:items-end mb-2"><h2 tabindex="-1" class="ed-serif m-0 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] outline-none">Choisissez votre unité</h2><span class="whitespace-nowrap text-[14.5px] text-[var(--ed-secondary)]">1 sur 1 disponibles</span></div><div class="mb-5 text-[length:var(--ed-text-lede)] text-[var(--ed-secondary)] sm:mb-7">Sélectionnez le logement souhaité, puis cliquez sur Postuler sur sa ligne.</div><div class="mb-5 sm:mb-7"><div class="flex flex-col gap-2 sm:flex-row sm:flex-wrap sm:items-center" data-sentry-component="UnitsToolbar" data-sentry-source-file="units-toolbar.tsx"><label class="flex h-10 w-full items-center gap-2 rounded-full border border-[var(--ed-border)] bg-white pl-3.5 pr-3 transition-colors focus-within:border-[var(--ed-ink)] sm:h-9 sm:w-auto sm:min-w-[190px] sm:max-w-[260px] sm:flex-none"><span></span><input type="search" placeholder="Search homes" class="w-full min-w-0 bg-transparent text-[16px] text-[var(--ed-ink)] outline-none placeholder:text-[var(--ed-tertiary)] sm:text-[13.5px]" value=""/></label><div class="ed-scroll-rail -mx-[1.125rem] flex items-center gap-2 overflow-x-auto px-[1.125rem] sm:contents"><button type="button" data-type-chip="all" aria-pressed="true" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-transparent bg-[var(--ed-ink)] font-medium text-white">Tous les types</button><button type="button" data-type-chip="bed-3" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">3 chambres<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">1</span></button><button type="button" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Disponible maintenant</button><span class="inline-flex shrink-0 items-center gap-1.5" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Dates d&#x27;emménagement</button></span></div></div></div><div class="flex flex-col gap-6 sm:gap-8" data-sentry-component="UnitGroupsSection" data-sentry-source-file="unit-groups.tsx"><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2 sm:mb-3"><span class="ed-serif text-[var(--ed-ink)] text-[length:var(--ed-text-h3)]">3 chambres</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-thumb-w:68px] hover:bg-[var(--ed-hover-fill)] sm:px-4 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[58px] rounded-[12px] sm:h-[62px] block" href="/fr/listings/88-rue-frontenac/details/gallery?unit=d2e032ea-9800-48af-94cd-734c9d438b4c" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/IMG_2062.JPG?width=232&amp;height=168&amp;quality=80" alt="1" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">11 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">1</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>1,200 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 8 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->5</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,420</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,302</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div><a class="ed-unit-chev inline-flex h-10 items-center gap-1.5 whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-4 text-[13.5px] font-semibold text-[var(--ed-ink)] transition-colors hover:bg-[var(--ed-ink)] hover:text-white sm:h-9" href="/fr/listings/d2e032ea-9800-48af-94cd-734c9d438b4c/apply/personal" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div id="location" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t border-[var(--ed-hairline)] pt-[var(--ed-section-pad)]"><h2 data-ed-reveal="true" class="ed-serif m-0 mb-6 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] sm:mb-8">Emplacement</h2><div class="flex flex-wrap items-stretch gap-6 sm:gap-9"><!--$?--><template id="B:1"></template><!--/$--><div data-ed-reveal="true" class="relative min-h-[260px] flex-1 basis-[420px] overflow-hidden rounded-[18px] border border-[var(--ed-hairline)] bg-[#efede6] sm:min-h-[320px]" data-sentry-component="EditorialMap" data-sentry-source-file="location.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div aria-hidden="true" class="absolute left-1/2 top-[48%] -translate-x-1/2 -translate-y-full"><svg width="40" height="40" viewBox="0 0 24 24" fill="#1A1A17" stroke="#fff" stroke-width="1.4" role="presentation" data-sentry-element="svg" data-sentry-component="InkPin" data-sentry-source-file="location.tsx"><path d="M12 22s-7-7.2-7-12a7 7 0 1 1 14 0c0 4.8-7 12-7 12z" data-sentry-element="path" data-sentry-source-file="location.tsx"></path><circle cx="12" cy="10" r="2.4" fill="#fff" stroke="none" data-sentry-element="circle" data-sentry-source-file="location.tsx"></circle></svg></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div class="ed-caption ed-caption-on-map pointer-events-none absolute bottom-3.5 left-4 rounded-full bg-white/85 px-3 py-1.5 backdrop-blur-[2px]">HULL, GATINEAU</div></div></div><a href="https://www.google.com/maps/dir/?api=1&amp;destination=45.428874,-75.71665" target="_blank" rel="noopener noreferrer" class="mt-2.5 inline-block py-2.5 text-[14.5px] text-[var(--ed-secondary)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink)] sm:mt-5 sm:py-0" data-sentry-component="EditorialDirectionsLink" data-sentry-source-file="location.tsx">Obtenir l&#x27;itinéraire<!-- --> ↗</a></div></main><div aria-hidden="true" class="sticky bottom-[calc(var(--footer-height)+env(safe-area-inset-bottom))] z-40 -mx-3.5 border-t border-[var(--ed-band-line)] bg-white px-3.5 transition-[transform,visibility] duration-300 lg:bottom-0 pointer-events-none invisible translate-y-[110%]" data-sentry-component="DetailsActionBar" data-sentry-source-file="action-bar.tsx"><div class="mx-auto flex h-[var(--ed-action-bar-height)] max-w-[1320px] items-center justify-between gap-3 px-1 sm:gap-4 sm:px-[clamp(20px,4.5vw,64px)]"><div class="min-w-0 overflow-hidden"><div class="truncate"><span class="text-[16px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[18px] lg:text-[19px]">À partir de $1,302</span><span class="hidden text-[13px] text-[var(--ed-secondary)] sm:inline"> <!-- -->/ mois</span></div></div><div class="flex shrink-0 items-center gap-5"><div class="hidden lg:block"><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div><a href="#units" class="inline-flex h-11 shrink-0 items-center gap-2 whitespace-nowrap rounded-full bg-[var(--ed-ink)] px-4 text-[14px] font-semibold text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:gap-2.5 sm:px-6 sm:text-[14.5px]"><span class="sm:hidden">Postuler</span><span class="hidden sm:inline">Postulez et réservez votre logement en ligne</span><span></span></a></div></div></div><div aria-hidden="true" data-testid="units-spotlight-scrim" class="fixed inset-0 z-[45] bg-[rgba(26,26,23,0.35)] transition-opacity duration-300 motion-reduce:transition-none pointer-events-none opacity-0" data-sentry-component="UnitsSpotlightScrim" data-sentry-source-file="units-spotlight.tsx"></div></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/listing-detail.page-Bodk8trl.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",
323 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
324 + "/assets/index-DGzYOEP8.js",
325 + "/assets/Item-DuavYi1u.js",
326 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
327 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
328 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
329 + "/assets/useControlledState-C6ovzWeF.js",
330 + "/assets/useField-CBKMx-DQ.js",
331 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
332 + "/assets/chunk-M3MASYO7-COH9P04M.js",
333 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
334 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
335 + "/assets/useToggleState-DY8z2i0t.js",
336 + "/assets/index-BzZ-MzUq.js",
337 + "/assets/useToggle-QKKEqo_x.js",
338 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
339 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
340 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
341 + "/assets/use-tenant-wE0zDJ1a.js",
342 + "/assets/use-debounce-D23YJQRM.js",
343 + "/assets/use-debounced-callback-Do1iUmMt.js",
344 + "/assets/locale-switcher-kD-MOI9x.js",
345 + "/assets/use-show-profile-modal-Cgfts1ut.js",
346 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
347 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
348 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
349 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
350 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
351 + "/assets/getItemCount-BQolBIkZ.js",
352 + "/assets/useSelectableItem-Ds0Ihirs.js",
353 + "/assets/useDescription-DF6TDnVi.js",
354 + "/assets/index-D8QbWu84.js",
355 + "/assets/useMenuTriggerState-CHKcWOlC.js",
356 + "/assets/useMenuTrigger-DKFjnCNZ.js",
357 + "/assets/show-BOEsnqQk.js",
358 + "/assets/index-BxwHZyk5.js",
359 + "/assets/use-screenshot-mode-RoZeXH-d.js",
360 + "/assets/storage-image-BRiFwsnF.js",
361 + "/assets/debug-build-VZlf1Aof.js",
362 + "/assets/empty-image-DeSmMdF3.js",
363 + "/assets/storage-JzkTKPy4.js",
364 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
365 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
366 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
367 + "/assets/use-auth-D_t8q_v4.js",
368 + "/assets/OtpInput-CJhAm1Gc.js",
369 + "/assets/roles-Cde3N6LE.js",
370 + "/assets/chunk-T45N425O-CCF24x8B.js",
371 + "/assets/index-CwlnhZHs.js",
372 + "/assets/tooltip-_QqyKTfK.js",
373 + "/assets/eversa-logo-DmkjJgjq.js",
374 + "/assets/exports-mapbox-Dy-MMXYe.js",
375 + "/assets/client-CpT78rmL.js",
376 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
377 + "/assets/useProgressBar-DhWwJb16.js",
378 + "/assets/index-Cy2bmlj7.js",
379 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
380 + "/assets/std-cron-C0Hf3jWh.js",
381 + "/assets/legacy-date-D-X4tG6T.js",
382 + "/assets/use-is-iframe-DIKEri2l.js",
383 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
384 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
385 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
386 + "/assets/link-CrZmIZC6.js",
387 + "/assets/rich-text-display--Qas76Hg.js",
388 + "/assets/utils-D0p-v41w.js",
389 + "/assets/signature-block-8SMePIUg.js",
390 + "/assets/index-DqzG1Q9x.js",
391 + "/assets/client-only-BGvaz0Jn.js",
392 + "/assets/use-hydrated-nn_6IPIK.js",
393 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
394 + "/assets/settings.types-CTRD0B_j.js",
395 + "/assets/input-CkQmsiJb.js",
396 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
397 + "/assets/extends-BSSSaanF.js",
398 + "/assets/user-menu-BuoWMPG0.js",
399 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
400 + "/assets/index-CRabYQb-.js",
401 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
402 + "/assets/Section-CaP3oBph.js",
403 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
404 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
405 + "/assets/LiveAnnouncer-CnNJa9NI.js",
406 + "/assets/useUpdateEffect-DsCDOPa2.js",
407 + "/assets/index-BT5H2sjL.js",
408 + "/assets/features-animation-BCPmlPPs.js",
409 + "/assets/index-8boKsGvQ.js",
410 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
411 + "/assets/use-server-command-DJ0CxbuT.js",
412 + "/assets/create-rpc-stub-SmqOCk37.js",
413 + "/assets/index-BoeY4VQ9.js",
414 + "/assets/app-form-CRPZmLNY.js",
415 + "/assets/button-KaTnxiWj.js",
416 + "/assets/spinner-DDyy7LQF.js",
417 + "/assets/zod-CmeTJI5u.js",
418 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
419 + "/assets/form-hidden-input-DI5aJPYE.js",
420 + "/assets/form-input-C6s4itpV.js",
421 + "/assets/system-preferences-DL4TO29S.js",
422 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
423 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
424 + "/assets/use-in-view-BNnh4L6M.js",
425 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js",
426 + "/assets/should-revalidate-for-modal-BjoLrI2F.js"
427 + ],
428 + "css": [
429 + "/assets/rich-text-editor-D9Rskyfk.css#",
430 + "/assets/listing-card-CI-uxcFh.css"
431 + ]
432 + },
433 + "PublicListingDetailPage": {
434 + "id": "PublicListingDetailPage",
435 + "parentId": "PublicListingsLayoutPage",
436 + "path": ":slug/details",
437 + "hasAction": false,
438 + "hasLoader": true,
439 + "hasClientAction": false,
440 + "hasClientLoader": false,
441 + "hasClientMiddleware": false,
442 + "hasDefaultExport": true,
443 + "hasErrorBoundary": true,
444 + "module": "/assets/listing-detail.page-Bodk8trl.js",
445 + "imports": [
446 + "/assets/chunk-QUQL4437-m7Whu12z.js",
447 + "/assets/jsx-runtime-umhk6iWe.js",
448 + "/assets/runtime-MtUT-9pW.js",
449 + "/assets/instance-Dwq5XJYG.js",
450 + "/assets/locale-rlhQ6FjN.js",
451 + "/assets/i18n-CTdcZBaW.js",
452 + "/assets/use-localized-path-BMxKZwMg.js",
453 + "/assets/detail-error-boundary-C3TWahqB.js",
454 + "/assets/seo.helpers-rKbdQkhM.js",
455 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
456 + "/assets/listing-card-Cg3TPyWe.js",
457 + "/assets/types-BKXG3Vd5.js",
458 + "/assets/date-C7fQmg2U.js",
459 + "/assets/format-BKStloXP.js",
460 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
461 + "/assets/formatDistanceToNow-BvwR-I5H.js",
462 + "/assets/paths-CiQnXl4X.js",
463 + "/assets/use-tenant-wE0zDJ1a.js",
464 + "/assets/icon-D77RBjQx.js",
465 + "/assets/index-blsAimsU.js",
466 + "/assets/chunk-T45N425O-CCF24x8B.js",
467 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
468 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
469 + "/assets/preload-helper-Cer9inx8.js",
470 + "/assets/index-DmhvH8SD.js",
471 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
472 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
473 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
474 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
475 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
476 + "/assets/runtime-TD3m583z.js",
477 + "/assets/exports-mapbox-Dy-MMXYe.js",
478 + "/assets/index-DJnVLKJF.js",
479 + "/assets/use-locale-BnwvbFV-.js",
480 + "/assets/show-BOEsnqQk.js",
481 + "/assets/client-CpT78rmL.js",
482 + "/assets/index-CXP4lC37.js",
483 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
484 + "/assets/useProgressBar-DhWwJb16.js",
485 + "/assets/number-lhSI2oqU.js",
486 + "/assets/useLabel-FzyH2LZi.js",
487 + "/assets/useLabels-BL4rQGMb.js",
488 + "/assets/useNumberFormatter-DG2VO0C1.js",
489 + "/assets/context-C7uvIu_A.js",
490 + "/assets/NumberFormatter-BWU_gJyt.js",
491 + "/assets/index-Cy2bmlj7.js",
492 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
493 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
494 + "/assets/mergeRefs-C8xtGVp3.js",
495 + "/assets/useControlledState-Dl_rDvO0.js",
496 + "/assets/FocusScope-CWuTxhav.js",
497 + "/assets/useField-CBKMx-DQ.js",
498 + "/assets/useFormValidation-BlL8vXtt.js",
499 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
500 + "/assets/std-cron-C0Hf3jWh.js",
501 + "/assets/legacy-date-D-X4tG6T.js",
502 + "/assets/listingTypes-CkyCgPCr.js",
503 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
504 + "/assets/useButton-DZK-beuH.js",
505 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
506 + "/assets/useOverlayTriggerState-woQJgDxB.js",
507 + "/assets/index-B915wqUE.js",
508 + "/assets/accelerated-values-ClBEnI7v.js",
509 + "/assets/useTreeState-Dx1W0YuM.js",
510 + "/assets/SelectionManager-BmJrKgY4.js",
511 + "/assets/scrollIntoView-BWAA50rI.js",
512 + "/assets/isScrollable-Dnxj3NSq.js",
513 + "/assets/useSelectableList-BOP0KhmN.js",
514 + "/assets/DOMLayoutDelegate-Brany3qe.js",
515 + "/assets/useCollator-CbJkpXG2.js",
516 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
517 + "/assets/index-DGzYOEP8.js",
518 + "/assets/Item-DuavYi1u.js",
519 + "/assets/use-is-iframe-DIKEri2l.js",
520 + "/assets/floor-label-CGeBlKR2.js",
521 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
522 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
523 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
524 + "/assets/storage-image-BRiFwsnF.js",
525 + "/assets/debug-build-VZlf1Aof.js",
526 + "/assets/empty-image-DeSmMdF3.js",
527 + "/assets/storage-JzkTKPy4.js",
528 + "/assets/link-CrZmIZC6.js",
529 + "/assets/modal-BG3X61k6.js",
530 + "/assets/modal-root-haL454LR.js",
531 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
532 + "/assets/useDialog-Bh9KG6MB.js",
533 + "/assets/VisuallyHidden-D-Q2SU4O.js",
534 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
535 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
536 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
537 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
538 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
539 + "/assets/proxy-BlmPTkqy.js",
540 + "/assets/create-visual-element-Cc1-iv7S.js",
541 + "/assets/layout-CqatgvGE.js",
542 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
543 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
544 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
545 + "/assets/index-DuhTrrt1.js",
546 + "/assets/useModal-C3khzgYn.js",
547 + "/assets/index-BxwHZyk5.js",
548 + "/assets/rich-text-display--Qas76Hg.js",
549 + "/assets/utils-D0p-v41w.js",
550 + "/assets/signature-block-8SMePIUg.js",
551 + "/assets/index-DqzG1Q9x.js",
552 + "/assets/client-only-BGvaz0Jn.js",
553 + "/assets/use-hydrated-nn_6IPIK.js",
554 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
555 + "/assets/chunk-M3MASYO7-COH9P04M.js",
556 + "/assets/settings.types-CTRD0B_j.js",
557 + "/assets/use-show-profile-modal-Cgfts1ut.js",
558 + "/assets/input-CkQmsiJb.js",
559 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
560 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
561 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
562 + "/assets/useControlledState-C6ovzWeF.js",
563 + "/assets/extends-BSSSaanF.js",
564 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
565 + "/assets/use-debounce-D23YJQRM.js",
566 + "/assets/use-debounced-callback-Do1iUmMt.js",
567 + "/assets/use-auth-D_t8q_v4.js",
568 + "/assets/OtpInput-CJhAm1Gc.js",
569 + "/assets/roles-Cde3N6LE.js",
570 + "/assets/index-CwlnhZHs.js",
571 + "/assets/index-BzZ-MzUq.js",
572 + "/assets/powered-by-eversa-BF980dJS.js",
573 + "/assets/tooltip-_QqyKTfK.js",
574 + "/assets/eversa-logo-DmkjJgjq.js",
575 + "/assets/use-screenshot-mode-RoZeXH-d.js",
576 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
577 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
578 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
579 + "/assets/getItemCount-BQolBIkZ.js",
580 + "/assets/useSelectableItem-Ds0Ihirs.js",
581 + "/assets/useDescription-DF6TDnVi.js",
582 + "/assets/index-D8QbWu84.js",
583 + "/assets/useMenuTriggerState-CHKcWOlC.js",
584 + "/assets/useMenuTrigger-DKFjnCNZ.js",
585 + "/assets/user-menu-BuoWMPG0.js",
586 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
587 + "/assets/index-CRabYQb-.js",
588 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
589 + "/assets/Section-CaP3oBph.js",
590 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
591 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
592 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
593 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
594 + "/assets/LiveAnnouncer-CnNJa9NI.js",
595 + "/assets/useUpdateEffect-DsCDOPa2.js",
596 + "/assets/index-BT5H2sjL.js",
597 + "/assets/features-animation-BCPmlPPs.js",
598 + "/assets/index-8boKsGvQ.js",
599 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
600 + "/assets/use-server-command-DJ0CxbuT.js",
601 + "/assets/create-rpc-stub-SmqOCk37.js",
602 + "/assets/index-BoeY4VQ9.js",
603 + "/assets/app-form-CRPZmLNY.js",
604 + "/assets/button-KaTnxiWj.js",
605 + "/assets/spinner-DDyy7LQF.js",
606 + "/assets/zod-CmeTJI5u.js",
607 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
608 + "/assets/form-hidden-input-DI5aJPYE.js",
609 + "/assets/form-input-C6s4itpV.js",
610 + "/assets/system-preferences-DL4TO29S.js",
611 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
612 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
613 + "/assets/use-in-view-BNnh4L6M.js",
614 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
615 + ],
616 + "css": [
617 + "/assets/rich-text-editor-D9Rskyfk.css#",
618 + "/assets/listing-card-CI-uxcFh.css"
619 + ]
620 + },
621 + "PublicHomePage": {
622 + "id": "PublicHomePage",
623 + "parentId": "public-language",
624 + "path": "",
625 + "hasAction": false,
626 + "hasLoader": true,
627 + "hasClientAction": false,
628 + "hasClientLoader": false,
629 + "hasClientMiddleware": false,
630 + "hasDefaultExport": true,
631 + "hasErrorBoundary": false,
632 + "module": "/assets/home.page-CEey5s8m.js",
633 + "imports": [
634 + "/assets/chunk-QUQL4437-m7Whu12z.js",
635 + "/assets/jsx-runtime-umhk6iWe.js",
636 + "/assets/runtime-MtUT-9pW.js",
637 + "/assets/facebook-pixel-B5MxbSaJ.js",
638 + "/assets/google-analytics-D-bO2gMa.js",
639 + "/assets/lead-capture-config.helpers-DpZ6az3C.js",
640 + "/assets/global-progress-CjDASA7T.js",
641 + "/assets/header-BBMyfPB0.js",
642 + "/assets/footer-Byz07yjl.js",
643 + "/assets/listing-card-Cg3TPyWe.js",
644 + "/assets/seo.helpers-rKbdQkhM.js",
645 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
646 + "/assets/types-BKXG3Vd5.js",
647 + "/assets/index-CXP4lC37.js",
648 + "/assets/use-locale-BnwvbFV-.js",
649 + "/assets/instance-Dwq5XJYG.js",
650 + "/assets/locale-rlhQ6FjN.js",
651 + "/assets/lead-capture-layout-D9cSW77z.js",
652 + "/assets/locale-switcher-kD-MOI9x.js",
653 + "/assets/use-show-profile-modal-Cgfts1ut.js",
654 + "/assets/i18n-CTdcZBaW.js",
655 + "/assets/date-C7fQmg2U.js",
656 + "/assets/format-BKStloXP.js",
657 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
658 + "/assets/formatDistanceToNow-BvwR-I5H.js",
659 + "/assets/paths-CiQnXl4X.js",
660 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
661 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
662 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
663 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
664 + "/assets/preload-helper-Cer9inx8.js",
665 + "/assets/index-DmhvH8SD.js",
666 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
667 + "/assets/Item-DuavYi1u.js",
668 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
669 + "/assets/useDialog-Bh9KG6MB.js",
670 + "/assets/VisuallyHidden-D-Q2SU4O.js",
671 + "/assets/isScrollable-Dnxj3NSq.js",
672 + "/assets/useLabels-BL4rQGMb.js",
673 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
674 + "/assets/context-C7uvIu_A.js",
675 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
676 + "/assets/FocusScope-CWuTxhav.js",
677 + "/assets/index-DJnVLKJF.js",
678 + "/assets/useOverlayTriggerState-woQJgDxB.js",
679 + "/assets/useControlledState-Dl_rDvO0.js",
680 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
681 + "/assets/number-lhSI2oqU.js",
682 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
683 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
684 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
685 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
686 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
687 + "/assets/index-DuhTrrt1.js",
688 + "/assets/mergeRefs-C8xtGVp3.js",
689 + "/assets/getItemCount-BQolBIkZ.js",
690 + "/assets/SelectionManager-BmJrKgY4.js",
691 + "/assets/scrollIntoView-BWAA50rI.js",
692 + "/assets/useSelectableItem-Ds0Ihirs.js",
693 + "/assets/useDescription-DF6TDnVi.js",
694 + "/assets/index-D8QbWu84.js",
695 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
696 + "/assets/useSelectableList-BOP0KhmN.js",
697 + "/assets/DOMLayoutDelegate-Brany3qe.js",
698 + "/assets/useCollator-CbJkpXG2.js",
699 + "/assets/useTreeState-Dx1W0YuM.js",
700 + "/assets/useMenuTriggerState-CHKcWOlC.js",
701 + "/assets/useMenuTrigger-DKFjnCNZ.js",
702 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
703 + "/assets/index-blsAimsU.js",
704 + "/assets/storage-image-BRiFwsnF.js",
705 + "/assets/icon-D77RBjQx.js",
706 + "/assets/debug-build-VZlf1Aof.js",
707 + "/assets/empty-image-DeSmMdF3.js",
708 + "/assets/storage-JzkTKPy4.js",
709 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
710 + "/assets/use-tenant-wE0zDJ1a.js",
711 + "/assets/use-localized-path-BMxKZwMg.js",
712 + "/assets/modal-BG3X61k6.js",
713 + "/assets/runtime-TD3m583z.js",
714 + "/assets/modal-root-haL454LR.js",
715 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
716 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
717 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
718 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
719 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
720 + "/assets/proxy-BlmPTkqy.js",
721 + "/assets/create-visual-element-Cc1-iv7S.js",
722 + "/assets/accelerated-values-ClBEnI7v.js",
723 + "/assets/layout-CqatgvGE.js",
724 + "/assets/listingTypes-CkyCgPCr.js",
725 + "/assets/floor-label-CGeBlKR2.js",
726 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
727 + "/assets/useFormValidation-BlL8vXtt.js",
728 + "/assets/useLabel-FzyH2LZi.js",
729 + "/assets/useNumberFormatter-DG2VO0C1.js",
730 + "/assets/NumberFormatter-BWU_gJyt.js",
731 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
732 + "/assets/useModal-C3khzgYn.js",
733 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
734 + "/assets/useButton-DZK-beuH.js",
735 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
736 + "/assets/index-B915wqUE.js",
737 + "/assets/index-DGzYOEP8.js",
738 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
739 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
740 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
741 + "/assets/useControlledState-C6ovzWeF.js",
742 + "/assets/useField-CBKMx-DQ.js",
743 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
744 + "/assets/chunk-M3MASYO7-COH9P04M.js",
745 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
746 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
747 + "/assets/useToggleState-DY8z2i0t.js",
748 + "/assets/index-BzZ-MzUq.js",
749 + "/assets/useToggle-QKKEqo_x.js",
750 + "/assets/use-debounce-D23YJQRM.js",
751 + "/assets/use-debounced-callback-Do1iUmMt.js",
752 + "/assets/show-BOEsnqQk.js",
753 + "/assets/index-BxwHZyk5.js",
754 + "/assets/use-screenshot-mode-RoZeXH-d.js",
755 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
756 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
757 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
758 + "/assets/powered-by-eversa-BF980dJS.js",
759 + "/assets/tooltip-_QqyKTfK.js",
760 + "/assets/eversa-logo-DmkjJgjq.js",
761 + "/assets/use-auth-D_t8q_v4.js",
762 + "/assets/OtpInput-CJhAm1Gc.js",
763 + "/assets/roles-Cde3N6LE.js",
764 + "/assets/chunk-T45N425O-CCF24x8B.js",
765 + "/assets/index-CwlnhZHs.js",
766 + "/assets/exports-mapbox-Dy-MMXYe.js",
767 + "/assets/client-CpT78rmL.js",
768 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
769 + "/assets/useProgressBar-DhWwJb16.js",
770 + "/assets/index-Cy2bmlj7.js",
771 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
772 + "/assets/std-cron-C0Hf3jWh.js",
773 + "/assets/legacy-date-D-X4tG6T.js",
774 + "/assets/use-is-iframe-DIKEri2l.js",
775 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
776 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
777 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
778 + "/assets/link-CrZmIZC6.js",
779 + "/assets/rich-text-display--Qas76Hg.js",
780 + "/assets/utils-D0p-v41w.js",
781 + "/assets/signature-block-8SMePIUg.js",
782 + "/assets/index-DqzG1Q9x.js",
783 + "/assets/client-only-BGvaz0Jn.js",
784 + "/assets/use-hydrated-nn_6IPIK.js",
785 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
786 + "/assets/settings.types-CTRD0B_j.js",
787 + "/assets/input-CkQmsiJb.js",
788 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
789 + "/assets/extends-BSSSaanF.js",
790 + "/assets/user-menu-BuoWMPG0.js",
791 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
792 + "/assets/index-CRabYQb-.js",
793 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
794 + "/assets/Section-CaP3oBph.js",
795 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
796 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
797 + "/assets/LiveAnnouncer-CnNJa9NI.js",
798 + "/assets/useUpdateEffect-DsCDOPa2.js",
799 + "/assets/index-BT5H2sjL.js",
800 + "/assets/features-animation-BCPmlPPs.js",
801 + "/assets/index-8boKsGvQ.js",
802 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
803 + "/assets/use-server-command-DJ0CxbuT.js",
804 + "/assets/create-rpc-stub-SmqOCk37.js",
805 + "/assets/index-BoeY4VQ9.js",
806 + "/assets/app-form-CRPZmLNY.js",
807 + "/assets/button-KaTnxiWj.js",
808 + "/assets/spinner-DDyy7LQF.js",
809 + "/assets/zod-CmeTJI5u.js",
810 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
811 + "/assets/form-hidden-input-DI5aJPYE.js",
812 + "/assets/form-input-C6s4itpV.js",
813 + "/assets/system-preferences-DL4TO29S.js",
814 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
815 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
816 + "/assets/use-in-view-BNnh4L6M.js",
817 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
818 + ],
819 + "css": [
820 + "/assets/rich-text-editor-D9Rskyfk.css#",
821 + "/assets/listing-card-CI-uxcFh.css"
822 + ]
823 + },
824 + "root.not-found": {
825 + "id": "root.not-found",
826 + "parentId": "root",
827 + "path": "*",
828 + "hasAction": false,
829 + "hasLoader": false,
830 + "hasClientAction": false,
831 + "hasClientLoader": false,
832 + "hasClientMiddleware": false,
833 + "hasDefaultExport": true,
834 + "hasErrorBoundary": false,
835 + "module": "/assets/root.not-found-D01c4GbZ.js",
836 + "imports": [
837 + "/assets/root.not-found-DP5tZm2i.js",
838 + "/assets/chunk-QUQL4437-m7Whu12z.js",
839 + "/assets/jsx-runtime-umhk6iWe.js",
840 + "/assets/icon-D77RBjQx.js",
841 + "/assets/index-blsAimsU.js",
842 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
843 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
844 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
845 + "/assets/preload-helper-Cer9inx8.js",
846 + "/assets/index-DmhvH8SD.js",
847 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
848 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
849 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
850 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
851 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js"
852 + ],
853 + "css": []
854 + },
855 + "PublicListingsIndexPage": {
856 + "id": "PublicListingsIndexPage",
857 + "parentId": "PublicListingsLayoutPage",
858 + "path": "",
859 + "hasAction": false,
860 + "hasLoader": false,
861 + "hasClientAction": false,
862 + "hasClientLoader": false,
863 + "hasClientMiddleware": false,
864 + "hasDefaultExport": true,
865 + "hasErrorBoundary": false,
866 + "module": "/assets/listings-index.page-DjplF3AX.js",
867 + "imports": [
868 + "/assets/chunk-QUQL4437-m7Whu12z.js",
869 + "/assets/jsx-runtime-umhk6iWe.js",
870 + "/assets/runtime-MtUT-9pW.js",
871 + "/assets/instance-Dwq5XJYG.js",
872 + "/assets/locale-rlhQ6FjN.js",
873 + "/assets/use-localized-path-BMxKZwMg.js",
874 + "/assets/listing-card-Cg3TPyWe.js",
875 + "/assets/types-BKXG3Vd5.js",
876 + "/assets/i18n-CTdcZBaW.js",
877 + "/assets/date-C7fQmg2U.js",
878 + "/assets/format-BKStloXP.js",
879 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
880 + "/assets/formatDistanceToNow-BvwR-I5H.js",
881 + "/assets/paths-CiQnXl4X.js",
882 + "/assets/use-tenant-wE0zDJ1a.js",
883 + "/assets/runtime-TD3m583z.js",
884 + "/assets/exports-mapbox-Dy-MMXYe.js",
885 + "/assets/index-DJnVLKJF.js",
886 + "/assets/use-locale-BnwvbFV-.js",
887 + "/assets/icon-D77RBjQx.js",
888 + "/assets/show-BOEsnqQk.js",
889 + "/assets/client-CpT78rmL.js",
890 + "/assets/index-CXP4lC37.js",
891 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
892 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
893 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
894 + "/assets/useProgressBar-DhWwJb16.js",
895 + "/assets/preload-helper-Cer9inx8.js",
896 + "/assets/index-DmhvH8SD.js",
897 + "/assets/number-lhSI2oqU.js",
898 + "/assets/useLabel-FzyH2LZi.js",
899 + "/assets/useLabels-BL4rQGMb.js",
900 + "/assets/useNumberFormatter-DG2VO0C1.js",
901 + "/assets/context-C7uvIu_A.js",
902 + "/assets/NumberFormatter-BWU_gJyt.js",
903 + "/assets/index-Cy2bmlj7.js",
904 + "/assets/index-blsAimsU.js",
905 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
906 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
907 + "/assets/mergeRefs-C8xtGVp3.js",
908 + "/assets/useControlledState-Dl_rDvO0.js",
909 + "/assets/FocusScope-CWuTxhav.js",
910 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
911 + "/assets/useField-CBKMx-DQ.js",
912 + "/assets/useFormValidation-BlL8vXtt.js",
913 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
914 + "/assets/std-cron-C0Hf3jWh.js",
915 + "/assets/legacy-date-D-X4tG6T.js",
916 + "/assets/listingTypes-CkyCgPCr.js",
917 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
918 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
919 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
920 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
921 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
922 + "/assets/useButton-DZK-beuH.js",
923 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
924 + "/assets/useOverlayTriggerState-woQJgDxB.js",
925 + "/assets/index-B915wqUE.js",
926 + "/assets/accelerated-values-ClBEnI7v.js",
927 + "/assets/useTreeState-Dx1W0YuM.js",
928 + "/assets/SelectionManager-BmJrKgY4.js",
929 + "/assets/scrollIntoView-BWAA50rI.js",
930 + "/assets/isScrollable-Dnxj3NSq.js",
931 + "/assets/useSelectableList-BOP0KhmN.js",
932 + "/assets/DOMLayoutDelegate-Brany3qe.js",
933 + "/assets/useCollator-CbJkpXG2.js",
934 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
935 + "/assets/index-DGzYOEP8.js",
936 + "/assets/Item-DuavYi1u.js",
937 + "/assets/use-is-iframe-DIKEri2l.js",
938 + "/assets/floor-label-CGeBlKR2.js",
939 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
940 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
941 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
942 + "/assets/storage-image-BRiFwsnF.js",
943 + "/assets/debug-build-VZlf1Aof.js",
944 + "/assets/empty-image-DeSmMdF3.js",
945 + "/assets/storage-JzkTKPy4.js",
946 + "/assets/link-CrZmIZC6.js",
947 + "/assets/chunk-T45N425O-CCF24x8B.js",
948 + "/assets/modal-BG3X61k6.js",
949 + "/assets/modal-root-haL454LR.js",
950 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
951 + "/assets/useDialog-Bh9KG6MB.js",
952 + "/assets/VisuallyHidden-D-Q2SU4O.js",
953 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
954 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
955 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
956 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
957 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
958 + "/assets/proxy-BlmPTkqy.js",
959 + "/assets/create-visual-element-Cc1-iv7S.js",
960 + "/assets/layout-CqatgvGE.js",
961 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
962 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
963 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
964 + "/assets/index-DuhTrrt1.js",
965 + "/assets/useModal-C3khzgYn.js",
966 + "/assets/index-BxwHZyk5.js",
967 + "/assets/rich-text-display--Qas76Hg.js",
968 + "/assets/utils-D0p-v41w.js",
969 + "/assets/signature-block-8SMePIUg.js",
970 + "/assets/index-DqzG1Q9x.js",
971 + "/assets/client-only-BGvaz0Jn.js",
972 + "/assets/use-hydrated-nn_6IPIK.js",
973 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
974 + "/assets/chunk-M3MASYO7-COH9P04M.js",
975 + "/assets/settings.types-CTRD0B_j.js",
976 + "/assets/use-show-profile-modal-Cgfts1ut.js",
977 + "/assets/input-CkQmsiJb.js",
978 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
979 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
980 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
981 + "/assets/useControlledState-C6ovzWeF.js",
982 + "/assets/extends-BSSSaanF.js",
983 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
984 + "/assets/use-debounce-D23YJQRM.js",
985 + "/assets/use-debounced-callback-Do1iUmMt.js",
986 + "/assets/use-auth-D_t8q_v4.js",
987 + "/assets/OtpInput-CJhAm1Gc.js",
988 + "/assets/roles-Cde3N6LE.js",
989 + "/assets/index-CwlnhZHs.js",
990 + "/assets/index-BzZ-MzUq.js",
991 + "/assets/powered-by-eversa-BF980dJS.js",
992 + "/assets/tooltip-_QqyKTfK.js",
993 + "/assets/eversa-logo-DmkjJgjq.js",
994 + "/assets/use-screenshot-mode-RoZeXH-d.js",
995 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
996 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
997 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
998 + "/assets/getItemCount-BQolBIkZ.js",
999 + "/assets/useSelectableItem-Ds0Ihirs.js",
1000 + "/assets/useDescription-DF6TDnVi.js",
1001 + "/assets/index-D8QbWu84.js",
1002 + "/assets/useMenuTriggerState-CHKcWOlC.js",
1003 + "/assets/useMenuTrigger-DKFjnCNZ.js",
1004 + "/assets/user-menu-BuoWMPG0.js",
1005 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
1006 + "/assets/index-CRabYQb-.js",
1007 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
1008 + "/assets/Section-CaP3oBph.js",
1009 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
1010 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
1011 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
1012 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
1013 + "/assets/LiveAnnouncer-CnNJa9NI.js",
1014 + "/assets/useUpdateEffect-DsCDOPa2.js",
1015 + "/assets/index-BT5H2sjL.js",
1016 + "/assets/features-animation-BCPmlPPs.js",
1017 + "/assets/index-8boKsGvQ.js",
1018 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
1019 + "/assets/use-server-command-DJ0CxbuT.js",
1020 + "/assets/create-rpc-stub-SmqOCk37.js",
1021 + "/assets/index-BoeY4VQ9.js",
1022 + "/assets/app-form-CRPZmLNY.js",
1023 + "/assets/button-KaTnxiWj.js",
1024 + "/assets/spinner-DDyy7LQF.js",
1025 + "/assets/zod-CmeTJI5u.js",
1026 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
1027 + "/assets/form-hidden-input-DI5aJPYE.js",
1028 + "/assets/form-input-C6s4itpV.js",
1029 + "/assets/system-preferences-DL4TO29S.js",
1030 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
1031 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
1032 + "/assets/use-in-view-BNnh4L6M.js",
1033 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
1034 + ],
1035 + "css": [
1036 + "/assets/rich-text-editor-D9Rskyfk.css#",
1037 + "/assets/listing-card-CI-uxcFh.css"
1038 + ]
1039 + }
1040 + },
1041 + "url": "/assets/manifest-2b2cda1e.js",
1042 + "version": "2b2cda1e"
1043 +};
1044 + window.__reactRouterRouteModules = {"root":route0,"public-language":route1,"PublicListingsLayoutPage":route2,"PublicListingDetailPage":route3};
1045 +
1046 +import("/assets/entry.client-BIJa3TY3.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":-5,\"_8\":9,\"_10\":11},\"actionData\",\"errors\",\"root\",{\"_601\":-5,\"_602\":-7,\"_603\":604,\"_605\":606,\"_20\":21,\"_18\":607,\"_608\":-5,\"_609\":610,\"_254\":255,\"_611\":-5,\"_612\":-5},\"public-language\",\"PublicListingsLayoutPage\",{\"_18\":241,\"_242\":243,\"_244\":245,\"_246\":25,\"_247\":248,\"_249\":60,\"_250\":251,\"_252\":253,\"_254\":255,\"_256\":25,\"_257\":25,\"_258\":25},\"PublicListingDetailPage\",{\"_12\":13,\"_14\":15,\"_16\":17,\"_18\":19,\"_20\":21,\"_22\":23,\"_24\":25},\"listing\",{\"_46\":126,\"_127\":128,\"_96\":129,\"_130\":129,\"_84\":103,\"_131\":132,\"_133\":134,\"_115\":135,\"_118\":136,\"_116\":137,\"_36\":138,\"_139\":140,\"_141\":142,\"_143\":-5,\"_144\":-5,\"_145\":146,\"_147\":60,\"_148\":149,\"_150\":151},\"auth\",{\"_124\":60,\"_125\":25},\"walkScore\",[\"P\",17],\"tenant\",{\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":40,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"lang\",\"fr\",\"pageUrl\",\"https://www.halfred.ca/fr/listings/88-rue-frontenac/details\",\"noindex\",false,\"address\",{\"_96\":114,\"_84\":103,\"_115\":79,\"_116\":117,\"_118\":119,\"_120\":101,\"_121\":87,\"_90\":98,\"_122\":123},\"analytics\",{\"_108\":109,\"_110\":111,\"_112\":113},\"colors\",{\"_104\":105,\"_106\":107},\"contact\",{\"_69\":70,\"_71\":72,\"_26\":73},\"customDomains\",[62,63],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_58\":25,\"_59\":60,\"_61\":25},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{\"_54\":55,\"_56\":57},\"templateId\",\"editorial\",\"title\",\"Halfred | Apartment rentals\",\"showcase\",{},\"listingSortOrder\",\"smart\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_64\":68},{\"_64\":65,\"_66\":67},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_74\":75,\"_76\":77,\"_78\":79,\"_80\":81,\"_82\":83,\"_84\":85,\"_86\":87,\"_88\":89,\"_90\":91,\"_92\":93,\"_94\":95,\"_96\":79},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_97\":103,\"_99\":103},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_97\":101,\"_99\":102},\"country\",{\"_97\":98,\"_99\":100},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"loggedIn\",\"isStaff\",\"88-rue-frontenac\",\"area\",1200,\"88 Rue Frontenac\",\"name\",\"buildingId\",\"66be23b5-06e7-4c15-9a2d-a1da53a37290\",\"availabilty\",[\"D\",1782864000000],\"Hull\",-75.71665,45.428874,{\"_207\":239,\"_21\":240},\"images\",[238],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[197,198,199,200,201,202,203,204],\"listed\",\"units\",[167],\"cardData\",{\"_46\":126,\"_96\":129,\"_84\":103,\"_115\":135,\"_116\":137,\"_118\":136,\"_152\":153,\"_154\":155,\"_156\":157,\"_127\":158,\"_159\":160,\"_161\":162},\"unitId\",\"d2e032ea-9800-48af-94cd-734c9d438b4c\",\"bedrooms\",[166],\"bathrooms\",[165],[128],\"price\",[164],\"availability\",[163],\"2026-07-01T00:00:00.000Z\",1420,1,3,{\"_46\":153,\"_127\":128,\"_168\":-5,\"_159\":164,\"_154\":166,\"_156\":165,\"_169\":170,\"_139\":171,\"_147\":60,\"_172\":173,\"_174\":175,\"_176\":177,\"_161\":178,\"_179\":-5,\"_180\":-5,\"_181\":182,\"_39\":183},\"floor\",\"alias\",\"1\",[186,187,188,189,190,191,192,193,194,195,196],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1782864000000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_159\":184,\"_36\":185},[],1302,\"*** Promotion pour les 12 premiers mois ***\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/IMG_2062.JPG\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/IMG_2064.JPG\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/88frontenac-1.jpg\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/88frontenac-2.jpg\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/88frontenac-3.jpg\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/88frontenac-4.jpg\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/88frontenac-5.jpg\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/88frontenac-6.jpg\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/IMG_2038.JPG\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/IMG_2039.JPG\",\"/storage/v1/object/public/halfred/units/d2e032ea-9800-48af-94cd-734c9d438b4c/IMG_2035.JPG\",{\"_97\":234,\"_41\":235},{\"_97\":230,\"_41\":231},{\"_97\":226,\"_41\":227},{\"_97\":222,\"_41\":223},{\"_97\":218,\"_41\":219},{\"_97\":214,\"_41\":215},{\"_97\":210,\"_41\":211},{\"_97\":205,\"_41\":206},{\"_207\":208,\"_21\":209},\"lucide:warehouse\",\"en\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",{\"_207\":212,\"_21\":213},\"lucide:car\",\"Parking\",\"Stationnement\",{\"_207\":216,\"_21\":217},\"lucide:droplet\",\"Water\",\"Eau\",{\"_207\":220,\"_21\":221},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_207\":224,\"_21\":225},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_207\":228,\"_21\":229},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",{\"_207\":232,\"_21\":233},\"lucide:soup\",\"Stove\",\"Cuisinière\",{\"_207\":236,\"_21\":237},\"lucide:paw-print\",\"Cats Allowed\",\"Chats autorisés\",\"/storage/v1/object/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Spacious 3-Bedroom Apartment for Rent – Old Hull!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover this spacious 3-bedroom apartment ideally located in the heart of \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Old Hull\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! Enjoy living just steps away from essential services, restaurants, parks, museums, government buildings, and much more.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Prime location:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌆 Located in the vibrant Old Hull area\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🍽️ Close to restaurants, cafés, and shops\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 Near parks and green spaces\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏛️ Minutes from museums and government offices\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What this unit offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🍽️ Stove included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🧊 Refrigerator included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📦 Outdoor storage shed included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ Spacious and functional living space\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Enjoy the convenience of downtown living while benefiting from a comfortable and well-located apartment.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 No parking included, but parking may be available for $100/month (subject to availability)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❌ 🐶 No dogs allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"⚡ Not heated / not electricity included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📋 Credit check required\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📸 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"italic\\\"}],\\\"text\\\":\\\"Photos are from a model unit and may vary from the available apartment.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" for more information or to schedule your visit!\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Spacieux appartement 3 chambres à louer – Vieux-Hull!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ce grand appartement de 3 chambres idéalement situé au cœur du \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Vieux-Hull\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! Profitez d’un emplacement exceptionnel à quelques pas des services essentiels, restaurants, parcs, musées, édifices gouvernementaux et bien plus encore.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Emplacement idéal :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌆 Situé dans le secteur dynamique du Vieux-Hull\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🍽️ Près des restaurants, cafés et commerces\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 À proximité des parcs et espaces verts\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏛️ À quelques minutes des musées et édifices gouvernementaux\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce que vous offre le logement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🍽️ Cuisinière incluse\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🧊 Réfrigérateur inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📦 Remise extérieure incluse\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ Grand espace de vie confortable et fonctionnel\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’aimer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Profitez de tous les avantages de la vie urbaine tout en bénéficiant d’un logement spacieux et bien situé.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 Aucun stationnement inclus, mais possibilité d’en louer un pour 100$/mois (selon disponibilité)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❌ 🐶 Chiens non acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"⚡ Non chauffé / non éclairé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📋 Enquête de crédit obligatoire\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📸 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"italic\\\"}],\\\"text\\\":\\\"Les photos sont prises d’un logement modèle et peuvent différer de l’unité disponible.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour plus d’informations ou pour planifier votre visite!\\\"}]}]}\",{\"_26\":27,\"_28\":599,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":600,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"listings\",[],\"listingsByView\",{\"_594\":243,\"_595\":596,\"_597\":598},\"explodeProjects\",\"initialFilters\",{\"_159\":372,\"_373\":374,\"_375\":376,\"_127\":377,\"_168\":378,\"_379\":60,\"_156\":380,\"_154\":381,\"_382\":25,\"_383\":60,\"_384\":385,\"_386\":387},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_259\":260,\"_261\":262,\"_263\":264,\"_265\":266,\"_267\":260,\"_268\":269,\"_270\":271},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[353],\"analysisProductsPrice\",{\"_353\":354,\"_355\":356,\"_357\":358,\"_359\":360,\"_361\":362,\"_363\":364,\"_365\":366,\"_367\":366,\"_368\":369,\"_370\":364,\"_371\":362},\"notifications\",{\"_330\":331},\"form\",{\"_323\":60,\"_324\":25,\"_325\":60,\"_326\":60,\"_327\":25,\"_328\":25,\"_329\":25},\"enabledSkus\",\"submissions\",{\"_273\":274,\"_275\":276,\"_277\":278,\"_279\":280,\"_30\":281,\"_282\":-5},\"agent\",{\"_272\":25},\"hideAgentNewSubmissionBtn\",\"all\",[309,310,311,312,313,314,315,319,320,321,322],\"steps\",[309,310,311,312,313,314,315],\"badges\",[299,300,301,302,303,304],\"statuses\",[293,283,285,287,289,291,294,295,296,297,298],{\"_283\":284,\"_285\":286,\"_287\":288,\"_289\":290,\"_291\":292},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_305\":283,\"_307\":284},{\"_305\":285,\"_307\":286},{\"_305\":287,\"_307\":288},{\"_305\":289,\"_307\":290},{\"_305\":291,\"_307\":292},{\"_305\":306,\"_307\":308},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_305\":293,\"_307\":-5,\"_316\":25},{\"_305\":283,\"_307\":284,\"_316\":60,\"_317\":25,\"_318\":25},{\"_305\":285,\"_307\":286,\"_316\":60,\"_317\":25,\"_318\":25},{\"_305\":287,\"_307\":288,\"_316\":60,\"_317\":25,\"_318\":25},{\"_305\":289,\"_307\":290,\"_316\":60,\"_317\":25,\"_318\":25},{\"_305\":291,\"_307\":292,\"_316\":60,\"_317\":25,\"_318\":25},{\"_305\":294,\"_307\":-5,\"_316\":60},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_305\":295,\"_307\":-5,\"_316\":25},{\"_305\":296,\"_307\":-5,\"_316\":25},{\"_305\":297,\"_307\":-5,\"_316\":25},{\"_305\":298,\"_307\":-5,\"_316\":25},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_270\":332,\"_333\":334,\"_18\":335,\"_336\":337},[345,346,347,348,349,350,340,341,351,352],\"manager\",[],[339,340,341,342,343,344],\"admin\",[338],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"agent-submission-snoozed\",\"agent-submission-snoozed-reminder\",\"agent-submission-snoozed-expired\",\"application-deadline-reminder\",\"application-deadline-expired\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1299,\"qc_citizen_criminal_plumitif_municipal_check\",699,\"qc_citizen_rental_board_check\",799,\"on_citizen_rental_board_check\",999,\"ca_citizen_workplace_reference_verification\",1499,\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",\"qc_citizen_rental_board_extended_check\",[165,593],\"pricePerMonth\",[165,593],\"pricePerSqft\",[251,251],[251,592],[590,591],\"hasFloor\",[251,411],[251,166],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461],\"availableNeighborhoods\",[388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404],{\"_130\":427,\"_250\":165},{\"_130\":425,\"_250\":426},{\"_130\":424,\"_250\":411},{\"_130\":423,\"_250\":411},{\"_130\":422,\"_250\":166},{\"_130\":103,\"_250\":421},{\"_130\":135,\"_250\":420},{\"_130\":419,\"_250\":165},{\"_130\":418,\"_250\":411},{\"_130\":417,\"_250\":165},{\"_130\":415,\"_250\":416},{\"_130\":414,\"_250\":165},{\"_130\":412,\"_250\":413},{\"_130\":410,\"_250\":411},{\"_130\":409,\"_250\":165},{\"_130\":407,\"_250\":408},{\"_130\":405,\"_250\":406},\"Touraine\",7,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",2,\"Pointe-Gatineau\",8,\"Plateau \",\"Plateau\",30,\"plateau\",\"Old Gatineau\",\"Masson\",21,38,\"East Templeton\",\"East Buckingham\",\"Buckingham\",\"Aylmer\",20,\"angers\",{\"_46\":588,\"_130\":589,\"_41\":211},{\"_46\":586,\"_130\":587,\"_41\":206},{\"_46\":582,\"_130\":583,\"_41\":223},{\"_46\":578,\"_130\":579,\"_41\":506},{\"_46\":574,\"_130\":575,\"_41\":223},{\"_46\":570,\"_130\":571,\"_41\":482},{\"_46\":566,\"_130\":567,\"_41\":501},{\"_46\":564,\"_130\":565,\"_41\":231},{\"_46\":560,\"_130\":561,\"_41\":501},{\"_46\":558,\"_130\":559,\"_41\":227},{\"_46\":553,\"_130\":554,\"_41\":555},{\"_46\":549,\"_130\":550,\"_41\":517},{\"_46\":545,\"_130\":546,\"_41\":468},{\"_46\":541,\"_130\":542,\"_41\":482},{\"_46\":537,\"_130\":538,\"_41\":539},{\"_46\":535,\"_130\":536,\"_41\":235},{\"_46\":531,\"_130\":532,\"_41\":506},{\"_46\":527,\"_130\":528,\"_41\":468},{\"_46\":525,\"_130\":526,\"_41\":215},{\"_46\":520,\"_130\":521,\"_41\":522},{\"_46\":515,\"_130\":516,\"_41\":517},{\"_46\":513,\"_130\":514,\"_41\":223},{\"_46\":509,\"_130\":510,\"_41\":211},{\"_46\":504,\"_130\":505,\"_41\":506},{\"_46\":499,\"_130\":500,\"_41\":501},{\"_46\":497,\"_130\":498,\"_41\":219},{\"_46\":493,\"_130\":494,\"_41\":235},{\"_46\":489,\"_130\":490,\"_41\":235},{\"_46\":485,\"_130\":486,\"_41\":211},{\"_46\":480,\"_130\":481,\"_41\":482},{\"_46\":475,\"_130\":476,\"_41\":477},{\"_46\":471,\"_130\":472,\"_41\":473},{\"_46\":466,\"_130\":467,\"_41\":468},{\"_46\":462,\"_130\":463,\"_41\":223},\"counter-type\",{\"_207\":464,\"_21\":465},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_207\":469,\"_21\":470},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_207\":474,\"_21\":474},\"lucide:armchair\",\"Commodes\",\"disabled-access\",{\"_207\":478,\"_21\":479},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"gas-heating\",{\"_207\":483,\"_21\":484},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"underground-garage\",{\"_207\":487,\"_21\":488},\"Underground Garage\",\"Garage souterrain\",\"small-dogs-allowed\",{\"_207\":491,\"_21\":492},\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_207\":495,\"_21\":496},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"washer-dryer-outlet\",{\"_207\":220,\"_21\":221},\"cable-internet\",{\"_207\":502,\"_21\":503},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"laundry-room\",{\"_207\":507,\"_21\":508},\"lucide:washing-machine\",\"Laundry Room\",\"Buanderie\",\"garage-parking\",{\"_207\":511,\"_21\":512},\"Garage Parking\",\"Parking garage\",\"water-tank\",{\"_207\":224,\"_21\":225},\"microwave\",{\"_207\":518,\"_21\":519},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"blinds\",{\"_207\":523,\"_21\":524},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water\",{\"_207\":216,\"_21\":217},\"building-terrace\",{\"_207\":529,\"_21\":530},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_207\":533,\"_21\":534},\"Dryer\",\"Sèche-linge\",\"cats-allowed\",{\"_207\":236,\"_21\":237},\"gym\",{\"_207\":540,\"_21\":540},\"lucide:dumbbell\",\"Gym\",\"electric-heating\",{\"_207\":543,\"_21\":544},\"Electric Heating\",\"Chauffage Électrique\",\"balcony\",{\"_207\":547,\"_21\":548},\"Balcony\",\"Balcon\",\"oven\",{\"_207\":551,\"_21\":552},\"Oven\",\"Four\",\"electricity\",{\"_207\":556,\"_21\":557},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"refrigerator\",{\"_207\":228,\"_21\":229},\"cable\",{\"_207\":562,\"_21\":563},\"Cable\",\"Câble\",\"stove\",{\"_207\":232,\"_21\":233},\"fiber-internet\",{\"_207\":568,\"_21\":569},\"Fiber Internet\",\"Internet fibre\",\"central-air-conditioning\",{\"_207\":572,\"_21\":573},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_207\":576,\"_21\":577},\"Dishwasher\",\"Lave-vaisselle\",\"washer\",{\"_207\":580,\"_21\":581},\"Washer\",\"Laveuse\",\"elevator\",{\"_207\":584,\"_21\":585},\"Elevator\",\"Ascenseur\",\"locker-storage-space\",{\"_207\":208,\"_21\":209},\"parking\",{\"_207\":212,\"_21\":213},-1,6,2063,3050,\"list\",\"map\",[],\"explode\",[],{\"_108\":109,\"_110\":111,\"_112\":113},{\"_58\":25,\"_59\":60,\"_61\":25},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_305\":627,\"_46\":47,\"_628\":629,\"_52\":53,\"_36\":37,\"_30\":31,\"_630\":631,\"_26\":27,\"_32\":33,\"_261\":632,\"_633\":634,\"_635\":636,\"_637\":638,\"_43\":44,\"_639\":640,\"_641\":642,\"_45\":-5,\"_643\":-5,\"_644\":-5,\"_645\":-5,\"_50\":51,\"_48\":49,\"_34\":35,\"_646\":-5,\"_647\":-5,\"_254\":255,\"_648\":649,\"_650\":651,\"_652\":653,\"_41\":42,\"_654\":655,\"_38\":-7,\"_656\":657,\"_39\":658,\"_659\":660,\"_661\":-7,\"_662\":663,\"_28\":664,\"_259\":665,\"_666\":667,\"_668\":669},\"toast\",\"user\",{\"_613\":25,\"_614\":-5,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5,\"_619\":-5,\"_620\":-5,\"_621\":-5,\"_622\":-5,\"_69\":-5,\"_71\":-5,\"_623\":-5,\"_125\":25,\"_624\":25,\"_625\":-5,\"_626\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_41\":757},\"social\",{\"_754\":755,\"_756\":79},{\"_353\":354,\"_355\":356,\"_357\":358,\"_359\":360,\"_361\":362,\"_363\":364,\"_365\":366,\"_367\":366,\"_368\":369,\"_370\":364,\"_371\":362},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_751\":-5,\"_291\":60,\"_752\":25,\"_753\":707},\"plan\",{\"_130\":731,\"_732\":79,\"_733\":734,\"_735\":736,\"_737\":738,\"_739\":740,\"_741\":251,\"_742\":743,\"_744\":251,\"_745\":746,\"_747\":748,\"_749\":750},\"metadata\",{\"_28\":664},\"consentConditionsText\",\"consentConditionsEn\",\"consentConditionsFr\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_724\":725,\"_633\":634,\"_726\":727,\"_43\":44,\"_728\":729,\"_74\":730},\"bucket\",{\"_721\":47,\"_722\":723},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_606\":718,\"_719\":720},\"tosHistory\",[707],{\"_678\":60,\"_679\":-7,\"_59\":60,\"_680\":25,\"_681\":25,\"_682\":60,\"_683\":60,\"_684\":25,\"_685\":-7,\"_686\":25,\"_687\":-7,\"_688\":25,\"_689\":25,\"_690\":25,\"_691\":692,\"_693\":25,\"_272\":25,\"_694\":-7,\"_695\":-7,\"_696\":-7,\"_697\":25,\"_58\":25,\"_698\":25,\"_61\":25,\"_699\":700,\"_701\":60,\"_702\":25,\"_703\":25,\"_704\":25,\"_705\":25,\"_706\":25},\"disabledModules\",[],\"rolePermissions\",\"banner\",{\"_207\":676,\"_21\":677},{\"_110\":111,\"_674\":675,\"_108\":109,\"_112\":113},[353],\"payments\",{\"_670\":60,\"_671\":60,\"_672\":25,\"_673\":25},\"version\",\"prod-20260917-9ad1803\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"hasAddressVariants\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"hopemIntegrationEnabled\",\"voltixIntegrationEnabled\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_708\":709,\"_710\":711,\"_668\":712,\"_291\":60,\"_289\":713,\"_714\":715,\"_716\":717},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",39,\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_758\":759},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("P17:[{\"_761\":165,\"_762\":763,\"_36\":764,\"_765\":766,\"_767\":768,\"_769\":770,\"_771\":772,\"_773\":774,\"_775\":772,\"_776\":777,\"_778\":779,\"_780\":781,\"_782\":783},\"status\",\"walkscore\",98,\"Walker's Paradise\",\"updated\",\"2026-08-30 07:14:05.811995\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/88Rue-Frontenac/lat=45.428874/lng=-75.71665/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.429,\"snapped_lon\",-75.717,\"transit\",{\"_36\":-5,\"_787\":-5,\"_785\":-5},\"bike\",{\"_36\":784,\"_785\":786},\"Very Bikeable\",\"score\",85,\"summary\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--><!--/$--><script id="_R_">requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Walk Score®<!-- --> <!-- -->98</a><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Bike Score®<!-- --> <!-- -->85</a><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Cats Allowed</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Stove</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Refrigerator</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water Tank</span></div></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
1047 +$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><div hidden id="S:1"><div class="flex min-w-[240px] flex-1 basis-[280px] flex-col gap-4 sm:gap-6" data-sentry-component="EditorialScores" data-sentry-source-file="location.tsx"><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Walk Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">98</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:98%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Walker&#x27;s Paradise</div></div><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Bike Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">85</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:85%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Very Bikeable</div></div></div></div><script>$RC("B:1","S:1")</script></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/04ca762927b4d9c67c5b.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png?width=1200&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/1.jpg?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 311 Avenue De Buckingham, Buckingham</title><meta description="🔥 Spacious Apartment for Rent – Buckingham Area! 🔥 Discover this beautiful and spacious apartment located in the Buckingham area , clos..."/><meta property="og:title" content="Halfred | Apartment rentals | Appartement à louer 311 Avenue De Buckingham, Buckingham"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content="🔥 Spacious Apartment for Rent – Buckingham Area! 🔥 Discover this beautiful and spacious apartment located in the Buckingham area , clos..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png"/><meta property="og:url" content="www.halfred.ca/listings/311-avenue-de-buckingham/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/listing-detail.page-D34BzzZ7.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="84efbc70a33d6ad60a2bd65b12d2a977-f019b7004cc11b1e-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=84efbc70a33d6ad60a2bd65b12d2a977,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.5491352772466093,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/311-avenue-de-buckingham/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png?width=800&amp;height=600&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce unité de 2 chambres à Buckingham" class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->1</div></div></div><div class="hidden sm:block"><div class="relative overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-96" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/311-avenue-de-buckingham/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png?width=1200&amp;height=600&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce unité de 2 chambres à Buckingham" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">311 Avenue De Buckingham</h1><p class="text-sm text-foreground-600">Buckingham</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p><b>1238$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 décembre 2025</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_eiiiuatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description de l&#x27;annonce</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Grand appartement à louer – Secteur Buckingham!</strong> 🔥</p><p>Découvrez ce superbe appartement spacieux situé dans le secteur <strong>Buckingham</strong>, à proximité des <strong>épiceries, écoles, de l’hôpital de Papineau et de tous les services essentiels</strong>. Un logement parfait pour ceux qui recherchent un environnement calme tout en restant près des commodités.</p><p>🏡 <strong>Ce que vous offre le logement :</strong><br>• 🚗 1 espace de stationnement inclus<br>• 🛠️ Cabanon pratique pour rangement supplémentaire<br>• 🧺 Prises laveuse/sécheuse dans le logement<br>• Grandes pièces offrant confort et fonctionnalité</p><p>💡 <strong>Pourquoi vous allez l’aimer :</strong><br>Profitez d’un quartier paisible avec un accès rapide aux commerces, services et transports.</p><p>📌 <strong>Informations importantes :</strong><br>• ⚡ Non chauffé / non éclairé<br>• ❌ Chiens non acceptés<br>• 📸 Les photos sont prises du logement modèle et peuvent différer de l’unité disponible<br>• 📋 Enquête de crédit obligatoire</p><p>📞 Contactez <strong>Halfred</strong> dès maintenant au <strong>819-593-3304</strong> pour plus d’informations ou pour planifier votre visite!</p></div></div></div></div><div class="border-b-[1px] pt-8 pb-8"><div class="space-y-3" data-sentry-component="UnitsSection" data-sentry-source-file="units-section.tsx"><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/311-avenue-de-buckingham/details/gallery?unit=b7aba5c6-ad42-4310-99ad-45e49e48691a" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/1.jpg?width=96&amp;height=72&amp;quality=80" alt="Location Buckingham: maison 2 chambres à louer par Halfred | Apartment rentals" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">11 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->3</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1000<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1238<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1350<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/b7aba5c6-ad42-4310-99ad-45e49e48691a/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="pr-8"><div class="flex justify-center space-x-8 pb-4 lg:justify-start" data-sentry-component="WalkScore" data-sentry-source-file="walk-score.tsx"><div class="flex flex-col items-center space-y-2 "><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de mobilité</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3b8uatij5_" aria-label="Walk score of 68" aria-valuenow="68" aria-valuemin="0" aria-valuemax="100" aria-valuetext="68" role="progressbar" data-sentry-element="CircularProgress" data-sentry-source-file="walk-score.tsx"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-default-400 w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">68</span></div></div></div><div class="flex flex-col items-center space-y-2"><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de vélo</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3j8uatij5_" aria-label="Bike score of 59" aria-valuenow="59" aria-valuemin="0" aria-valuemax="100" aria-valuetext="59" role="progressbar"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-default-400 w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">59</span></div></div></div></div></div><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">311 Avenue De Buckingham</h1><p class="text-sm text-foreground-600">Buckingham</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p><b>1238$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 décembre 2025</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_1qabeatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/listing-detail.page-D34BzzZ7.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicListingDetailPage": {
338 − "id": "PublicListingDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/:slug/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/listing-detail.page-D34BzzZ7.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/index-C5vezUBD.js",
354 − "/assets/seo.helpers-DUWcGrSj.js",
355 − "/assets/should-revalidate-for-modal-CqioTNup.js",
356 − "/assets/listing-card-vLpuwroq.js",
357 − "/assets/types-BlrrbiGM.js",
358 − "/assets/use-tenant-BWWCVgWC.js",
359 − "/assets/index-DoORTE4j.js",
360 − "/assets/icon-ChitaFhd.js",
361 − "/assets/chunk-T45N425O-C34bNx0L.js",
362 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
363 − "/assets/preload-helper-Djj1Qpxo.js",
364 − "/assets/index-yaZ7Ke31.js",
365 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
366 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
367 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
368 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
369 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
370 − "/assets/settings.types-DE5bLdHg.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicListingDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_595\":-5,\"_596\":-7,\"_597\":598,\"_599\":600,\"_19\":20,\"_17\":601,\"_602\":-5,\"_603\":604,\"_246\":247,\"_605\":-5,\"_606\":-5},\"PublicListingsLayoutPage\",{\"_17\":236,\"_237\":238,\"_239\":240,\"_241\":53,\"_242\":243,\"_244\":245,\"_246\":247,\"_248\":51,\"_249\":51,\"_250\":51},\"PublicListingDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":147,\"_148\":149,\"_89\":150,\"_151\":150,\"_77\":152,\"_153\":154,\"_155\":156,\"_108\":72,\"_111\":157,\"_109\":158,\"_33\":159,\"_160\":161,\"_162\":163,\"_164\":-5,\"_165\":-5,\"_166\":167,\"_168\":53,\"_169\":170,\"_171\":172},\"auth\",{\"_145\":53,\"_146\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136,\"_137\":138,\"_139\":140},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/311-avenue-de-buckingham/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",68,\"Somewhat Walkable\",\"updated\",\"2026-02-20 16:54:24.190835\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/311Avenue-De-Buckingham/lat=45.59215/lng=-75.417959/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.5925,\"snapped_lon\",-75.4185,\"transit\",{\"_33\":-5,\"_144\":-5,\"_142\":-5},\"bike\",{\"_33\":141,\"_142\":143},\"Bikeable\",\"score\",59,\"summary\",\"loggedIn\",\"isStaff\",\"311-avenue-de-buckingham\",\"area\",1000,\"311 Avenue De Buckingham\",\"name\",\"Buckingham\",\"buildingId\",\"9c171536-1529-40f6-8c15-3bfe8cbe8ca4\",\"availabilty\",[\"D\",1764547200000],-75.417959,45.59215,{\"_222\":234,\"_20\":235},\"images\",[233],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[217,218,219],\"listed\",\"units\",[187],\"cardData\",{\"_43\":147,\"_89\":150,\"_77\":152,\"_108\":72,\"_109\":158,\"_111\":157,\"_173\":174,\"_175\":176,\"_177\":178,\"_148\":179,\"_180\":181,\"_182\":183},\"unitId\",\"b7aba5c6-ad42-4310-99ad-45e49e48691a\",\"bedrooms\",[186],\"bathrooms\",[118],[149],\"price\",[185],\"availability\",[184],\"2025-12-01T00:00:00.000Z\",1350,2,{\"_43\":174,\"_148\":149,\"_188\":118,\"_180\":185,\"_175\":186,\"_177\":118,\"_189\":190,\"_160\":191,\"_168\":53,\"_192\":193,\"_194\":195,\"_196\":197,\"_182\":198,\"_199\":-5,\"_200\":-5,\"_201\":202,\"_36\":203},\"floor\",\"alias\",\"3\",[206,207,208,209,210,211,212,213,214,215,216],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1764547200000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_180\":204,\"_33\":205},[],1238,\"*** Prix promotionnelle pour un bail de 12 mois ***\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/1.jpg?version=0bbf131c-4b6e-44a8-b41a-077e5550005c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/10.jpg?version=947d4600-c91a-4d96-bad8-c34e73c1a9ae\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/11.jpg?version=bad284e0-343a-497a-8494-883c0f8d65d7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/2.jpg?version=e2b715e7-aeea-4119-ae1b-21cf3475f109\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/3.jpg?version=9150a8b6-6efa-4535-9a40-27f77692cd2f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/4.jpg?version=7bdb4937-6541-48c8-bc73-11e7ea1d35ff\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/5.jpg?version=be5d9d7f-a47b-43f7-801d-8bea594bca3d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/6.jpg?version=b731f149-eb74-41de-8c32-3c45f6e62f5d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/7.jpg?version=59c3cfab-b149-4817-a437-b9ad41d4227c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/8.jpg?version=a7479707-2627-4c82-8382-54bf7d333460\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/b7aba5c6-ad42-4310-99ad-45e49e48691a/9.jpg?version=f89e0495-cfaa-4576-a009-aa1d605cc270\",{\"_90\":229,\"_38\":230},{\"_90\":225,\"_38\":226},{\"_90\":220,\"_38\":221},{\"_222\":223,\"_20\":224},\"lucide:warehouse\",\"en\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",{\"_222\":227,\"_20\":228},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_222\":231,\"_20\":232},\"lucide:car\",\"Parking\",\"Stationnement\",\"/storage/v1/object/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Spacious Apartment for Rent – Buckingham Area!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover this beautiful and spacious apartment located in the \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Buckingham area\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", close to \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"grocery stores, schools, Papineau Hospital, and all essential services\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\". The perfect home for anyone looking for a peaceful environment while staying close to everyday conveniences.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What this unit offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 parking space included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🛠️ Outdoor storage shed for extra space\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Washer/dryer hookups in the unit\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Large and functional living spaces designed for comfort\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Enjoy a quiet neighborhood with quick access to shops, services, and transportation.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Not heated / not electricity included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ No dogs allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📸 Photos are from a model unit and may vary from the available apartment\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Credit check required\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" for more information or to schedule your visit!\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Grand appartement à louer – Secteur Buckingham!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ce superbe appartement spacieux situé dans le secteur \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Buckingham\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", à proximité des \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"épiceries, écoles, de l’hôpital de Papineau et de tous les services essentiels\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\". Un logement parfait pour ceux qui recherchent un environnement calme tout en restant près des commodités.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce que vous offre le logement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 espace de stationnement inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🛠️ Cabanon pratique pour rangement supplémentaire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Prises laveuse/sécheuse dans le logement\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Grandes pièces offrant confort et fonctionnalité\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’aimer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Profitez d’un quartier paisible avec un accès rapide aux commerces, services et transports.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Non chauffé / non éclairé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ Chiens non acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📸 Les photos sont prises du logement modèle et peuvent différer de l’unité disponible\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Enquête de crédit obligatoire\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dès maintenant au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour plus d’informations ou pour planifier votre visite!\\\"}]}]}\",{\"_23\":24,\"_25\":593,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":594,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_180\":354,\"_355\":356,\"_357\":358,\"_148\":359,\"_188\":360,\"_361\":53,\"_177\":362,\"_175\":363,\"_364\":51,\"_365\":53,\"_366\":367,\"_368\":369},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_251\":252,\"_253\":254,\"_255\":256,\"_257\":258,\"_259\":252,\"_260\":261,\"_262\":263},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[340],\"analysisProductsPrice\",{\"_340\":341,\"_342\":343,\"_344\":345,\"_346\":347,\"_348\":345,\"_349\":345,\"_350\":351,\"_352\":353},\"notifications\",{\"_322\":323},\"form\",{\"_315\":53,\"_316\":51,\"_317\":53,\"_318\":53,\"_319\":51,\"_320\":51,\"_321\":51},\"enabledSkus\",\"submissions\",{\"_265\":266,\"_267\":268,\"_269\":270,\"_271\":272,\"_27\":273,\"_274\":-5},\"agent\",{\"_264\":51},\"hideAgentNewSubmissionBtn\",\"all\",[301,302,303,304,305,306,307,311,312,313,314],\"steps\",[301,302,303,304,305,306,307],\"badges\",[291,292,293,294,295,296],\"statuses\",[285,275,277,279,281,283,286,287,288,289,290],{\"_275\":276,\"_277\":278,\"_279\":280,\"_281\":282,\"_283\":284},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_297\":275,\"_299\":276},{\"_297\":277,\"_299\":278},{\"_297\":279,\"_299\":280},{\"_297\":281,\"_299\":282},{\"_297\":283,\"_299\":284},{\"_297\":298,\"_299\":300},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_297\":285,\"_299\":-5,\"_308\":51},{\"_297\":275,\"_299\":276,\"_308\":53,\"_309\":51,\"_310\":51},{\"_297\":277,\"_299\":278,\"_308\":53,\"_309\":51,\"_310\":51},{\"_297\":279,\"_299\":280,\"_308\":53,\"_309\":51,\"_310\":51},{\"_297\":281,\"_299\":282,\"_308\":53,\"_309\":51,\"_310\":51},{\"_297\":283,\"_299\":284,\"_308\":53,\"_309\":51,\"_310\":51},{\"_297\":286,\"_299\":-5,\"_308\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_297\":287,\"_299\":-5,\"_308\":51},{\"_297\":288,\"_299\":-5,\"_308\":51},{\"_297\":289,\"_299\":-5,\"_308\":51},{\"_297\":290,\"_299\":-5,\"_308\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_262\":324,\"_325\":326,\"_17\":327,\"_328\":329},[337,338,339],\"manager\",[],[331,332,333,334,335,336],\"admin\",[330],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,[118,592],\"pricePerMonth\",[118,592],\"pricePerSqft\",[243,243],[243,591],[590,389],\"hasFloor\",[243,186],[243,589],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445],\"availableNeighborhoods\",[370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387],{\"_151\":411,\"_242\":118},{\"_151\":410,\"_242\":118},{\"_151\":409,\"_242\":118},{\"_151\":407,\"_242\":408},{\"_151\":152,\"_242\":118},{\"_151\":406,\"_242\":186},{\"_151\":404,\"_242\":405},{\"_151\":96,\"_242\":403},{\"_151\":401,\"_242\":402},{\"_151\":400,\"_242\":186},{\"_151\":399,\"_242\":118},{\"_151\":397,\"_242\":398},{\"_151\":396,\"_242\":118},{\"_151\":394,\"_242\":395},{\"_151\":393,\"_242\":186},{\"_151\":392,\"_242\":118},{\"_151\":390,\"_242\":391},{\"_151\":388,\"_242\":389},\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",5,\"Plateau \",\"Plateau\",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,39,\"East Templeton\",3,\"East Buckingham\",\"Aylmer\",18,\"angers\",\"2\",\"1\",{\"_43\":587,\"_151\":588,\"_38\":230},{\"_43\":582,\"_151\":583,\"_38\":584},{\"_43\":578,\"_151\":579,\"_38\":448},{\"_43\":574,\"_151\":575,\"_38\":462},{\"_43\":572,\"_151\":573,\"_38\":226},{\"_43\":568,\"_151\":569,\"_38\":448},{\"_43\":563,\"_151\":564,\"_38\":565},{\"_43\":559,\"_151\":560,\"_38\":507},{\"_43\":555,\"_151\":556,\"_38\":462},{\"_43\":550,\"_151\":551,\"_38\":552},{\"_43\":546,\"_151\":547,\"_38\":453},{\"_43\":542,\"_151\":543,\"_38\":448},{\"_43\":538,\"_151\":539,\"_38\":494},{\"_43\":534,\"_151\":535,\"_38\":476},{\"_43\":529,\"_151\":530,\"_38\":531},{\"_43\":525,\"_151\":526,\"_38\":476},{\"_43\":520,\"_151\":521,\"_38\":522},{\"_43\":516,\"_151\":517,\"_38\":481},{\"_43\":514,\"_151\":515,\"_38\":221},{\"_43\":510,\"_151\":511,\"_38\":507},{\"_43\":505,\"_151\":506,\"_38\":507},{\"_43\":501,\"_151\":502,\"_38\":494},{\"_43\":497,\"_151\":498,\"_38\":499},{\"_43\":492,\"_151\":493,\"_38\":494},{\"_43\":488,\"_151\":489,\"_38\":453},{\"_43\":484,\"_151\":485,\"_38\":230},{\"_43\":479,\"_151\":480,\"_38\":481},{\"_43\":474,\"_151\":475,\"_38\":476},{\"_43\":469,\"_151\":470,\"_38\":471},{\"_43\":465,\"_151\":466,\"_38\":230},{\"_43\":460,\"_151\":461,\"_38\":462},{\"_43\":456,\"_151\":457,\"_38\":458},{\"_43\":451,\"_151\":452,\"_38\":453},{\"_43\":446,\"_151\":447,\"_38\":448},\"counter-type\",{\"_222\":449,\"_20\":450},\"lucide:check\",\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_222\":454,\"_20\":455},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_222\":459,\"_20\":459},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_222\":463,\"_20\":464},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_222\":467,\"_20\":468},\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_222\":472,\"_20\":473},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_222\":477,\"_20\":478},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_222\":482,\"_20\":483},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_222\":486,\"_20\":487},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_222\":490,\"_20\":491},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_222\":495,\"_20\":496},\"lucide:washing-machine\",\"Dryer\",\"Sèche-linge\",\"gym\",{\"_222\":500,\"_20\":500},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_222\":503,\"_20\":504},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_222\":508,\"_20\":509},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_222\":512,\"_20\":513},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_222\":223,\"_20\":224},\"oven\",{\"_222\":518,\"_20\":519},\"Oven\",\"Four\",\"refrigerator\",{\"_222\":523,\"_20\":524},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_222\":527,\"_20\":528},\"Cable\",\"Câble\",\"stove\",{\"_222\":532,\"_20\":533},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_222\":536,\"_20\":537},\"Fiber Internet\",\"Internet fibre\",\"washer\",{\"_222\":540,\"_20\":541},\"Washer\",\"Laveuse\",\"elevator\",{\"_222\":544,\"_20\":545},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_222\":548,\"_20\":549},\"Balcony\",\"Balcon\",\"electricity\",{\"_222\":553,\"_20\":554},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"electric-heating\",{\"_222\":557,\"_20\":558},\"Electric Heating\",\"Chauffage Électrique\",\"cats-allowed\",{\"_222\":561,\"_20\":562},\"Cats Allowed\",\"Chats autorisés\",\"blinds\",{\"_222\":566,\"_20\":567},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_222\":570,\"_20\":571},\"Water Tank\",\"Réservoir d'eau\",\"washer-dryer-outlet\",{\"_222\":227,\"_20\":228},\"central-air-conditioning\",{\"_222\":576,\"_20\":577},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_222\":580,\"_20\":581},\"Dishwasher\",\"Lave-vaisselle\",\"water\",{\"_222\":585,\"_20\":586},\"lucide:droplet\",\"Water\",\"Eau\",\"parking\",{\"_222\":231,\"_20\":232},4,-1,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_297\":621,\"_43\":44,\"_622\":623,\"_48\":49,\"_33\":34,\"_27\":28,\"_624\":625,\"_23\":24,\"_29\":30,\"_253\":626,\"_627\":628,\"_629\":630,\"_631\":632,\"_40\":41,\"_633\":634,\"_635\":636,\"_42\":-5,\"_637\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_638\":-5,\"_639\":-5,\"_246\":247,\"_640\":641,\"_642\":643,\"_644\":645,\"_38\":39,\"_646\":647,\"_35\":-7,\"_648\":649,\"_36\":650,\"_651\":652,\"_653\":654,\"_25\":655,\"_251\":656,\"_657\":658,\"_659\":660},\"toast\",\"user\",{\"_607\":51,\"_608\":-5,\"_609\":-5,\"_610\":-5,\"_611\":-5,\"_612\":-5,\"_613\":-5,\"_614\":-5,\"_615\":-5,\"_616\":-5,\"_62\":-5,\"_64\":-5,\"_617\":-5,\"_146\":51,\"_618\":51,\"_619\":-5,\"_620\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":744},\"social\",{\"_741\":742,\"_743\":72},{\"_340\":341,\"_342\":343,\"_344\":345,\"_346\":347,\"_348\":345,\"_349\":345,\"_350\":351,\"_352\":353},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_738\":700,\"_283\":53,\"_739\":51,\"_740\":695},\"plan\",{\"_151\":719,\"_720\":72,\"_721\":722,\"_723\":724,\"_725\":726,\"_727\":728,\"_729\":243,\"_730\":731,\"_732\":243,\"_733\":734,\"_735\":403,\"_736\":737},\"metadata\",{\"_25\":655},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_712\":713,\"_627\":628,\"_714\":715,\"_40\":41,\"_716\":717,\"_67\":718},\"bucket\",{\"_709\":44,\"_710\":711},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_600\":706,\"_707\":708},\"tosHistory\",[695],{\"_669\":53,\"_670\":-7,\"_52\":53,\"_671\":51,\"_672\":51,\"_673\":53,\"_674\":53,\"_675\":51,\"_676\":51,\"_677\":-7,\"_678\":51,\"_679\":51,\"_680\":51,\"_681\":682,\"_683\":51,\"_264\":51,\"_684\":-7,\"_685\":-7,\"_686\":-7,\"_687\":51,\"_50\":51,\"_688\":51,\"_54\":51,\"_689\":690,\"_691\":53,\"_692\":51,\"_693\":51,\"_694\":51},\"disabledModules\",[],\"banner\",{\"_222\":667,\"_20\":668},{\"_103\":104,\"_665\":666,\"_101\":102,\"_105\":106},[340],\"payments\",{\"_661\":53,\"_662\":53,\"_663\":51,\"_664\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_696\":697,\"_698\":699,\"_659\":700,\"_283\":53,\"_281\":701,\"_702\":703,\"_704\":705},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_745\":746},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
added tests/fixtures/halfred/05900554dcb11783d447.html +1047 −0
@@ -0,0 +1,1047 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png?width=1024&amp;height=1280&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132256.jpg?width=232&amp;height=168&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 30 Rue De Matapédia, Gatineau</title><meta name="description" content="🔥 À LOUER – Beau logement au 30 rue Matapédia, Gatineau! 🔥 Découvrez ce logement idéalement situé dans un secteur pratique et recherché de Gatineau, parf..."/><meta property="og:title" content="Halfred | Apartment rentals | 30 Rue De Matapédia, Gatineau"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="🔥 À LOUER – Beau logement au 30 rue Matapédia, Gatineau! 🔥 Découvrez ce logement idéalement situé dans un secteur pratique et recherché de Gatineau, parf..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png"/><meta property="og:url" content="https://www.halfred.ca/fr/listings/30-rue-de-matapedia/details"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/30-rue-de-matapedia/details"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/30-rue-de-matapedia/details"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/30-rue-de-matapedia/details"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/30-rue-de-matapedia/details"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/listing-detail.page-Bodk8trl.js"/><link rel="modulepreload" href="/assets/detail-error-boundary-C3TWahqB.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="e2a607b9550e7b2af2eb448a0c5f6957-1ce93c2722bbc97e-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=e2a607b9550e7b2af2eb448a0c5f6957,sentry-org_id=476518,sentry-transaction=GET%20%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.7531619362915405,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="max-lg:hidden order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex"><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Retour à la liste</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="px-3.5" data-sentry-component="EditorialDetailsPage" data-sentry-source-file="details.tsx"><main class="mx-auto max-w-[1320px] px-1 pb-10 pt-3 sm:px-[clamp(20px,4.5vw,64px)] sm:pb-[clamp(48px,5.5vw,84px)] sm:pt-[clamp(24px,3.2vw,44px)]"><div class="flex flex-wrap items-start gap-x-[clamp(40px,5vw,72px)] gap-y-7 sm:gap-y-14 lg:flex-nowrap"><div class="order-2 min-w-0 max-w-[660px] flex-[1_1_440px] lg:order-1"><div data-ed-rise="true" class="ed-kicker mb-2 sm:mb-3">Pointe-Gatineau · Gatineau</div><h1 class="ed-serif m-0 mb-5 overflow-hidden pb-[0.05em] text-[length:var(--ed-text-h1)] font-medium leading-[1.12] tracking-[-0.012em] text-[var(--ed-ink)] sm:mb-6"><span data-ed-mask="true" class="block">30 Rue De Matapédia</span></h1><div data-ed-rise="4" class="mb-8 sm:mb-10" id="details-cta"><div data-sentry-component="ConversionRail" data-sentry-source-file="conversion-rail.tsx"><div class="flex flex-col items-stretch gap-2.5 sm:flex-row sm:flex-wrap sm:items-center sm:gap-3"><a href="#units" class="inline-flex w-full min-h-12 items-center justify-center gap-2.5 rounded-full bg-[var(--ed-ink)] px-7 py-1 shadow-[0_8px_20px_rgba(26,26,23,0.16)] transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto"><span class="text-[14px] font-semibold leading-snug text-white"><span class="whitespace-nowrap">Postuler en ligne</span></span><span></span></a><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div></div></div><div data-ed-rise="5"><div data-sentry-component="HomeTypeRows" data-sentry-source-file="home-types.tsx"><div class="ed-kicker mb-2 text-[10.5px] tracking-[0.13em]">Logements disponibles</div><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">2 chambres</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">1 disponible</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,300<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a></div></div><div data-ed-rise="9" class="mt-8 sm:mt-10"><div class="text-[length:var(--ed-text-copy)] leading-[var(--ed-copy-leading)] text-[var(--ed-body)] [&amp;_p:empty]:hidden [&amp;_p:has(&gt;br:only-child)]:hidden line-clamp-4"><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>FOR RENT – Beautiful Apartment at 30 Matapédia Street, Gatineau!</strong> 🔥</p><p>Discover this well-located apartment in a convenient and desirable area of Gatineau, perfect for students, young professionals, or small families looking for a comfortable and practical living space.</p><p>📍 <strong>Prime location:</strong><br>• Close to Vérendrye and Gréber streets<br>• Quick access to Highway 50<br>• 🚗 Only 5 minutes from Cégep de l’Outaouais (Félix-Leclerc campus)<br>• 🛍️ Less than 5 minutes from Les Promenades Gatineau</p><p>🏡 <strong>What this unit offers:</strong><br>• 🚗 1 parking space included<br>• 🧺 Laundry facilities in the building<br>• Comfortable and practical living space</p><p>💡 <strong>Why you’ll love it:</strong><br>A perfect location close to shops, restaurants, services, and public transportation for easy everyday living.</p><p>📌 <strong>Important details:</strong><br>• ⚡ Not heated / not electricity included<br>• ❌ No pets allowed<br>• 📋 Credit check required</p><p>📞 Contact <strong>Halfred</strong> today at <strong>819-593-3304</strong> for more information or to schedule your visit!</p></div></div></div></div></div><!--$?--><template id="B:0"></template><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Laundry Room</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span></div><!--/$--><div data-ed-rise="9" class="mt-6 sm:mt-8"><div data-sentry-component="ContactPanel" data-sentry-source-file="conversion-rail.tsx"><div class="rounded-[18px] border border-[var(--ed-hairline)] bg-[var(--ed-card-alt)] p-4 sm:p-5" data-sentry-component="ContactActions" data-sentry-source-file="conversion-rail.tsx"><div class="mb-4 flex items-center gap-3"><span class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-chip)] text-[13px] font-semibold tracking-[0.02em] text-[var(--ed-strong)]">H|</span><span class="min-w-0"><span class="block truncate text-[15px] font-semibold text-[var(--ed-ink)]">Halfred | Apartment rentals</span><span class="block text-[12.5px] text-[var(--ed-secondary)]">Gestionnaire immobilier</span></span></div><div class="flex flex-wrap gap-2"><a href="mailto:info@halfred.ca" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full bg-[var(--ed-ink)] px-4 text-[13.5px] font-medium text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto sm:flex-1"><span></span>Message</a><a href="tel:(819) 593-3304" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[13.5px] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)] sm:w-auto sm:flex-1"><span></span><span class="truncate">Appeler (819) 593-3304</span></a></div><form class="mt-2.5 flex items-center gap-2" data-sentry-component="QuickQuestion" data-sentry-source-file="conversion-rail.tsx"><input type="text" placeholder="Or ask a quick question…" class="h-10 min-w-0 flex-1 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[16px] text-[var(--ed-ink)] outline-none transition-colors placeholder:text-[var(--ed-tertiary)] focus:border-[var(--ed-ink)] sm:text-[13.5px]" value=""/><button type="submit" aria-label="Send your question" class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form></div><div class="mt-6 border-t border-[var(--ed-hairline)]" data-sentry-component="FeesDisclosure" data-sentry-source-file="conversion-rail.tsx"><button type="button" aria-expanded="false" class="flex w-full items-center justify-between gap-3 py-3.5 text-left"><span class="text-[15px] font-medium text-[var(--ed-ink)]">Frais et politiques</span><span></span></button></div></div></div><div data-ed-rise="10" id="amenities" class="mt-8 scroll-mt-[calc(var(--ed-header-h,0px)+16px)] sm:mt-10"><div class="ed-kicker mb-5">Commodités</div><div class="grid grid-cols-1 gap-x-8 gap-y-3 text-[15px] text-[var(--ed-strong)] sm:grid-cols-2 sm:gap-y-4 sm:text-[15.5px]"><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Parking</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Laundry Room</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water</div></div></div></div><div class="order-1 min-w-0 flex-[1.15_1_480px] lg:sticky lg:top-[92px] lg:order-2 lg:self-start" data-sentry-component="GalleryCollage" data-sentry-source-file="gallery-collage.tsx"><div class="-mx-[1.125rem] flex snap-x snap-mandatory gap-3 overflow-x-auto px-[1.125rem] pb-1 sm:hidden"><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-full" href="/fr/listings/30-rue-de-matapedia/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png?width=800&amp;height=520&amp;quality=80" alt="30 Rue De Matapédia" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="hidden sm:block"><a data-ed-img="true" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[20px]" style="aspect-ratio:4/5" data-sentry-element="RemixLink" data-sentry-source-file="gallery-collage.tsx" href="/fr/listings/30-rue-de-matapedia/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png?width=1024&amp;height=1280&amp;quality=80" alt="30 Rue De Matapédia" data-ed-imgzoom="true" class="absolute inset-0 h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/><div class="absolute bottom-3.5 right-3.5 flex items-center gap-2 rounded-full bg-[rgba(26,26,23,0.78)] px-3.5 py-2"><span></span><span class="text-[13px] font-semibold text-white">1 photo</span></div></a></div></div></div><div id="units" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t pt-[var(--ed-section-pad)] border-[var(--ed-hairline)]"><div data-ed-reveal="true" class="flex flex-wrap items-baseline justify-between gap-x-4 gap-y-0.5 sm:flex-nowrap sm:items-end mb-2"><h2 tabindex="-1" class="ed-serif m-0 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] outline-none">Choisissez votre unité</h2><span class="whitespace-nowrap text-[14.5px] text-[var(--ed-secondary)]">1 sur 1 disponibles</span></div><div class="mb-5 text-[length:var(--ed-text-lede)] text-[var(--ed-secondary)] sm:mb-7">Sélectionnez le logement souhaité, puis cliquez sur Postuler sur sa ligne.</div><div class="mb-5 sm:mb-7"><div class="flex flex-col gap-2 sm:flex-row sm:flex-wrap sm:items-center" data-sentry-component="UnitsToolbar" data-sentry-source-file="units-toolbar.tsx"><label class="flex h-10 w-full items-center gap-2 rounded-full border border-[var(--ed-border)] bg-white pl-3.5 pr-3 transition-colors focus-within:border-[var(--ed-ink)] sm:h-9 sm:w-auto sm:min-w-[190px] sm:max-w-[260px] sm:flex-none"><span></span><input type="search" placeholder="Search homes" class="w-full min-w-0 bg-transparent text-[16px] text-[var(--ed-ink)] outline-none placeholder:text-[var(--ed-tertiary)] sm:text-[13.5px]" value=""/></label><div class="ed-scroll-rail -mx-[1.125rem] flex items-center gap-2 overflow-x-auto px-[1.125rem] sm:contents"><button type="button" data-type-chip="all" aria-pressed="true" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-transparent bg-[var(--ed-ink)] font-medium text-white">Tous les types</button><button type="button" data-type-chip="bed-2" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">2 chambres<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">1</span></button><button type="button" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Disponible maintenant</button><span class="inline-flex shrink-0 items-center gap-1.5" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Dates d&#x27;emménagement</button></span></div></div></div><div class="flex flex-col gap-6 sm:gap-8" data-sentry-component="UnitGroupsSection" data-sentry-source-file="unit-groups.tsx"><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2 sm:mb-3"><span class="ed-serif text-[var(--ed-ink)] text-[length:var(--ed-text-h3)]">2 chambres</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-thumb-w:68px] hover:bg-[var(--ed-hover-fill)] sm:px-4 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[58px] rounded-[12px] sm:h-[62px] block" href="/fr/listings/30-rue-de-matapedia/details/gallery?unit=95bceef3-5084-4d61-908f-e898b4a40499" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132256.jpg?width=232&amp;height=168&amp;quality=80" alt="6" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">9 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">6</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>Étage 2</span><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>800 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,400</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,300</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div><a class="ed-unit-chev inline-flex h-10 items-center gap-1.5 whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-4 text-[13.5px] font-semibold text-[var(--ed-ink)] transition-colors hover:bg-[var(--ed-ink)] hover:text-white sm:h-9" href="/fr/listings/95bceef3-5084-4d61-908f-e898b4a40499/apply/personal" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div id="location" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t border-[var(--ed-hairline)] pt-[var(--ed-section-pad)]"><h2 data-ed-reveal="true" class="ed-serif m-0 mb-6 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] sm:mb-8">Emplacement</h2><div class="flex flex-wrap items-stretch gap-6 sm:gap-9"><!--$?--><template id="B:1"></template><!--/$--><div data-ed-reveal="true" class="relative min-h-[260px] flex-1 basis-[420px] overflow-hidden rounded-[18px] border border-[var(--ed-hairline)] bg-[#efede6] sm:min-h-[320px]" data-sentry-component="EditorialMap" data-sentry-source-file="location.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div aria-hidden="true" class="absolute left-1/2 top-[48%] -translate-x-1/2 -translate-y-full"><svg width="40" height="40" viewBox="0 0 24 24" fill="#1A1A17" stroke="#fff" stroke-width="1.4" role="presentation" data-sentry-element="svg" data-sentry-component="InkPin" data-sentry-source-file="location.tsx"><path d="M12 22s-7-7.2-7-12a7 7 0 1 1 14 0c0 4.8-7 12-7 12z" data-sentry-element="path" data-sentry-source-file="location.tsx"></path><circle cx="12" cy="10" r="2.4" fill="#fff" stroke="none" data-sentry-element="circle" data-sentry-source-file="location.tsx"></circle></svg></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div class="ed-caption ed-caption-on-map pointer-events-none absolute bottom-3.5 left-4 rounded-full bg-white/85 px-3 py-1.5 backdrop-blur-[2px]">POINTE-GATINEAU, GATINEAU</div></div></div><a href="https://www.google.com/maps/dir/?api=1&amp;destination=45.483178,-75.704054" target="_blank" rel="noopener noreferrer" class="mt-2.5 inline-block py-2.5 text-[14.5px] text-[var(--ed-secondary)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink)] sm:mt-5 sm:py-0" data-sentry-component="EditorialDirectionsLink" data-sentry-source-file="location.tsx">Obtenir l&#x27;itinéraire<!-- --> ↗</a></div></main><div aria-hidden="true" class="sticky bottom-[calc(var(--footer-height)+env(safe-area-inset-bottom))] z-40 -mx-3.5 border-t border-[var(--ed-band-line)] bg-white px-3.5 transition-[transform,visibility] duration-300 lg:bottom-0 pointer-events-none invisible translate-y-[110%]" data-sentry-component="DetailsActionBar" data-sentry-source-file="action-bar.tsx"><div class="mx-auto flex h-[var(--ed-action-bar-height)] max-w-[1320px] items-center justify-between gap-3 px-1 sm:gap-4 sm:px-[clamp(20px,4.5vw,64px)]"><div class="min-w-0 overflow-hidden"><div class="truncate"><span class="text-[16px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[18px] lg:text-[19px]">À partir de $1,300</span><span class="hidden text-[13px] text-[var(--ed-secondary)] sm:inline"> <!-- -->/ mois</span></div></div><div class="flex shrink-0 items-center gap-5"><div class="hidden lg:block"><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div><a href="#units" class="inline-flex h-11 shrink-0 items-center gap-2 whitespace-nowrap rounded-full bg-[var(--ed-ink)] px-4 text-[14px] font-semibold text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:gap-2.5 sm:px-6 sm:text-[14.5px]"><span class="sm:hidden">Postuler</span><span class="hidden sm:inline">Postulez et réservez votre logement en ligne</span><span></span></a></div></div></div><div aria-hidden="true" data-testid="units-spotlight-scrim" class="fixed inset-0 z-[45] bg-[rgba(26,26,23,0.35)] transition-opacity duration-300 motion-reduce:transition-none pointer-events-none opacity-0" data-sentry-component="UnitsSpotlightScrim" data-sentry-source-file="units-spotlight.tsx"></div></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/listing-detail.page-Bodk8trl.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",
323 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
324 + "/assets/index-DGzYOEP8.js",
325 + "/assets/Item-DuavYi1u.js",
326 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
327 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
328 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
329 + "/assets/useControlledState-C6ovzWeF.js",
330 + "/assets/useField-CBKMx-DQ.js",
331 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
332 + "/assets/chunk-M3MASYO7-COH9P04M.js",
333 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
334 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
335 + "/assets/useToggleState-DY8z2i0t.js",
336 + "/assets/index-BzZ-MzUq.js",
337 + "/assets/useToggle-QKKEqo_x.js",
338 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
339 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
340 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
341 + "/assets/use-tenant-wE0zDJ1a.js",
342 + "/assets/use-debounce-D23YJQRM.js",
343 + "/assets/use-debounced-callback-Do1iUmMt.js",
344 + "/assets/locale-switcher-kD-MOI9x.js",
345 + "/assets/use-show-profile-modal-Cgfts1ut.js",
346 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
347 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
348 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
349 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
350 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
351 + "/assets/getItemCount-BQolBIkZ.js",
352 + "/assets/useSelectableItem-Ds0Ihirs.js",
353 + "/assets/useDescription-DF6TDnVi.js",
354 + "/assets/index-D8QbWu84.js",
355 + "/assets/useMenuTriggerState-CHKcWOlC.js",
356 + "/assets/useMenuTrigger-DKFjnCNZ.js",
357 + "/assets/show-BOEsnqQk.js",
358 + "/assets/index-BxwHZyk5.js",
359 + "/assets/use-screenshot-mode-RoZeXH-d.js",
360 + "/assets/storage-image-BRiFwsnF.js",
361 + "/assets/debug-build-VZlf1Aof.js",
362 + "/assets/empty-image-DeSmMdF3.js",
363 + "/assets/storage-JzkTKPy4.js",
364 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
365 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
366 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
367 + "/assets/use-auth-D_t8q_v4.js",
368 + "/assets/OtpInput-CJhAm1Gc.js",
369 + "/assets/roles-Cde3N6LE.js",
370 + "/assets/chunk-T45N425O-CCF24x8B.js",
371 + "/assets/index-CwlnhZHs.js",
372 + "/assets/tooltip-_QqyKTfK.js",
373 + "/assets/eversa-logo-DmkjJgjq.js",
374 + "/assets/exports-mapbox-Dy-MMXYe.js",
375 + "/assets/client-CpT78rmL.js",
376 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
377 + "/assets/useProgressBar-DhWwJb16.js",
378 + "/assets/index-Cy2bmlj7.js",
379 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
380 + "/assets/std-cron-C0Hf3jWh.js",
381 + "/assets/legacy-date-D-X4tG6T.js",
382 + "/assets/use-is-iframe-DIKEri2l.js",
383 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
384 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
385 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
386 + "/assets/link-CrZmIZC6.js",
387 + "/assets/rich-text-display--Qas76Hg.js",
388 + "/assets/utils-D0p-v41w.js",
389 + "/assets/signature-block-8SMePIUg.js",
390 + "/assets/index-DqzG1Q9x.js",
391 + "/assets/client-only-BGvaz0Jn.js",
392 + "/assets/use-hydrated-nn_6IPIK.js",
393 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
394 + "/assets/settings.types-CTRD0B_j.js",
395 + "/assets/input-CkQmsiJb.js",
396 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
397 + "/assets/extends-BSSSaanF.js",
398 + "/assets/user-menu-BuoWMPG0.js",
399 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
400 + "/assets/index-CRabYQb-.js",
401 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
402 + "/assets/Section-CaP3oBph.js",
403 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
404 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
405 + "/assets/LiveAnnouncer-CnNJa9NI.js",
406 + "/assets/useUpdateEffect-DsCDOPa2.js",
407 + "/assets/index-BT5H2sjL.js",
408 + "/assets/features-animation-BCPmlPPs.js",
409 + "/assets/index-8boKsGvQ.js",
410 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
411 + "/assets/use-server-command-DJ0CxbuT.js",
412 + "/assets/create-rpc-stub-SmqOCk37.js",
413 + "/assets/index-BoeY4VQ9.js",
414 + "/assets/app-form-CRPZmLNY.js",
415 + "/assets/button-KaTnxiWj.js",
416 + "/assets/spinner-DDyy7LQF.js",
417 + "/assets/zod-CmeTJI5u.js",
418 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
419 + "/assets/form-hidden-input-DI5aJPYE.js",
420 + "/assets/form-input-C6s4itpV.js",
421 + "/assets/system-preferences-DL4TO29S.js",
422 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
423 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
424 + "/assets/use-in-view-BNnh4L6M.js",
425 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js",
426 + "/assets/should-revalidate-for-modal-BjoLrI2F.js"
427 + ],
428 + "css": [
429 + "/assets/rich-text-editor-D9Rskyfk.css#",
430 + "/assets/listing-card-CI-uxcFh.css"
431 + ]
432 + },
433 + "PublicListingDetailPage": {
434 + "id": "PublicListingDetailPage",
435 + "parentId": "PublicListingsLayoutPage",
436 + "path": ":slug/details",
437 + "hasAction": false,
438 + "hasLoader": true,
439 + "hasClientAction": false,
440 + "hasClientLoader": false,
441 + "hasClientMiddleware": false,
442 + "hasDefaultExport": true,
443 + "hasErrorBoundary": true,
444 + "module": "/assets/listing-detail.page-Bodk8trl.js",
445 + "imports": [
446 + "/assets/chunk-QUQL4437-m7Whu12z.js",
447 + "/assets/jsx-runtime-umhk6iWe.js",
448 + "/assets/runtime-MtUT-9pW.js",
449 + "/assets/instance-Dwq5XJYG.js",
450 + "/assets/locale-rlhQ6FjN.js",
451 + "/assets/i18n-CTdcZBaW.js",
452 + "/assets/use-localized-path-BMxKZwMg.js",
453 + "/assets/detail-error-boundary-C3TWahqB.js",
454 + "/assets/seo.helpers-rKbdQkhM.js",
455 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
456 + "/assets/listing-card-Cg3TPyWe.js",
457 + "/assets/types-BKXG3Vd5.js",
458 + "/assets/date-C7fQmg2U.js",
459 + "/assets/format-BKStloXP.js",
460 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
461 + "/assets/formatDistanceToNow-BvwR-I5H.js",
462 + "/assets/paths-CiQnXl4X.js",
463 + "/assets/use-tenant-wE0zDJ1a.js",
464 + "/assets/icon-D77RBjQx.js",
465 + "/assets/index-blsAimsU.js",
466 + "/assets/chunk-T45N425O-CCF24x8B.js",
467 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
468 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
469 + "/assets/preload-helper-Cer9inx8.js",
470 + "/assets/index-DmhvH8SD.js",
471 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
472 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
473 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
474 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
475 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
476 + "/assets/runtime-TD3m583z.js",
477 + "/assets/exports-mapbox-Dy-MMXYe.js",
478 + "/assets/index-DJnVLKJF.js",
479 + "/assets/use-locale-BnwvbFV-.js",
480 + "/assets/show-BOEsnqQk.js",
481 + "/assets/client-CpT78rmL.js",
482 + "/assets/index-CXP4lC37.js",
483 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
484 + "/assets/useProgressBar-DhWwJb16.js",
485 + "/assets/number-lhSI2oqU.js",
486 + "/assets/useLabel-FzyH2LZi.js",
487 + "/assets/useLabels-BL4rQGMb.js",
488 + "/assets/useNumberFormatter-DG2VO0C1.js",
489 + "/assets/context-C7uvIu_A.js",
490 + "/assets/NumberFormatter-BWU_gJyt.js",
491 + "/assets/index-Cy2bmlj7.js",
492 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
493 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
494 + "/assets/mergeRefs-C8xtGVp3.js",
495 + "/assets/useControlledState-Dl_rDvO0.js",
496 + "/assets/FocusScope-CWuTxhav.js",
497 + "/assets/useField-CBKMx-DQ.js",
498 + "/assets/useFormValidation-BlL8vXtt.js",
499 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
500 + "/assets/std-cron-C0Hf3jWh.js",
501 + "/assets/legacy-date-D-X4tG6T.js",
502 + "/assets/listingTypes-CkyCgPCr.js",
503 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
504 + "/assets/useButton-DZK-beuH.js",
505 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
506 + "/assets/useOverlayTriggerState-woQJgDxB.js",
507 + "/assets/index-B915wqUE.js",
508 + "/assets/accelerated-values-ClBEnI7v.js",
509 + "/assets/useTreeState-Dx1W0YuM.js",
510 + "/assets/SelectionManager-BmJrKgY4.js",
511 + "/assets/scrollIntoView-BWAA50rI.js",
512 + "/assets/isScrollable-Dnxj3NSq.js",
513 + "/assets/useSelectableList-BOP0KhmN.js",
514 + "/assets/DOMLayoutDelegate-Brany3qe.js",
515 + "/assets/useCollator-CbJkpXG2.js",
516 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
517 + "/assets/index-DGzYOEP8.js",
518 + "/assets/Item-DuavYi1u.js",
519 + "/assets/use-is-iframe-DIKEri2l.js",
520 + "/assets/floor-label-CGeBlKR2.js",
521 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
522 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
523 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
524 + "/assets/storage-image-BRiFwsnF.js",
525 + "/assets/debug-build-VZlf1Aof.js",
526 + "/assets/empty-image-DeSmMdF3.js",
527 + "/assets/storage-JzkTKPy4.js",
528 + "/assets/link-CrZmIZC6.js",
529 + "/assets/modal-BG3X61k6.js",
530 + "/assets/modal-root-haL454LR.js",
531 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
532 + "/assets/useDialog-Bh9KG6MB.js",
533 + "/assets/VisuallyHidden-D-Q2SU4O.js",
534 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
535 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
536 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
537 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
538 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
539 + "/assets/proxy-BlmPTkqy.js",
540 + "/assets/create-visual-element-Cc1-iv7S.js",
541 + "/assets/layout-CqatgvGE.js",
542 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
543 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
544 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
545 + "/assets/index-DuhTrrt1.js",
546 + "/assets/useModal-C3khzgYn.js",
547 + "/assets/index-BxwHZyk5.js",
548 + "/assets/rich-text-display--Qas76Hg.js",
549 + "/assets/utils-D0p-v41w.js",
550 + "/assets/signature-block-8SMePIUg.js",
551 + "/assets/index-DqzG1Q9x.js",
552 + "/assets/client-only-BGvaz0Jn.js",
553 + "/assets/use-hydrated-nn_6IPIK.js",
554 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
555 + "/assets/chunk-M3MASYO7-COH9P04M.js",
556 + "/assets/settings.types-CTRD0B_j.js",
557 + "/assets/use-show-profile-modal-Cgfts1ut.js",
558 + "/assets/input-CkQmsiJb.js",
559 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
560 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
561 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
562 + "/assets/useControlledState-C6ovzWeF.js",
563 + "/assets/extends-BSSSaanF.js",
564 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
565 + "/assets/use-debounce-D23YJQRM.js",
566 + "/assets/use-debounced-callback-Do1iUmMt.js",
567 + "/assets/use-auth-D_t8q_v4.js",
568 + "/assets/OtpInput-CJhAm1Gc.js",
569 + "/assets/roles-Cde3N6LE.js",
570 + "/assets/index-CwlnhZHs.js",
571 + "/assets/index-BzZ-MzUq.js",
572 + "/assets/powered-by-eversa-BF980dJS.js",
573 + "/assets/tooltip-_QqyKTfK.js",
574 + "/assets/eversa-logo-DmkjJgjq.js",
575 + "/assets/use-screenshot-mode-RoZeXH-d.js",
576 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
577 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
578 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
579 + "/assets/getItemCount-BQolBIkZ.js",
580 + "/assets/useSelectableItem-Ds0Ihirs.js",
581 + "/assets/useDescription-DF6TDnVi.js",
582 + "/assets/index-D8QbWu84.js",
583 + "/assets/useMenuTriggerState-CHKcWOlC.js",
584 + "/assets/useMenuTrigger-DKFjnCNZ.js",
585 + "/assets/user-menu-BuoWMPG0.js",
586 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
587 + "/assets/index-CRabYQb-.js",
588 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
589 + "/assets/Section-CaP3oBph.js",
590 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
591 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
592 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
593 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
594 + "/assets/LiveAnnouncer-CnNJa9NI.js",
595 + "/assets/useUpdateEffect-DsCDOPa2.js",
596 + "/assets/index-BT5H2sjL.js",
597 + "/assets/features-animation-BCPmlPPs.js",
598 + "/assets/index-8boKsGvQ.js",
599 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
600 + "/assets/use-server-command-DJ0CxbuT.js",
601 + "/assets/create-rpc-stub-SmqOCk37.js",
602 + "/assets/index-BoeY4VQ9.js",
603 + "/assets/app-form-CRPZmLNY.js",
604 + "/assets/button-KaTnxiWj.js",
605 + "/assets/spinner-DDyy7LQF.js",
606 + "/assets/zod-CmeTJI5u.js",
607 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
608 + "/assets/form-hidden-input-DI5aJPYE.js",
609 + "/assets/form-input-C6s4itpV.js",
610 + "/assets/system-preferences-DL4TO29S.js",
611 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
612 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
613 + "/assets/use-in-view-BNnh4L6M.js",
614 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
615 + ],
616 + "css": [
617 + "/assets/rich-text-editor-D9Rskyfk.css#",
618 + "/assets/listing-card-CI-uxcFh.css"
619 + ]
620 + },
621 + "PublicHomePage": {
622 + "id": "PublicHomePage",
623 + "parentId": "public-language",
624 + "path": "",
625 + "hasAction": false,
626 + "hasLoader": true,
627 + "hasClientAction": false,
628 + "hasClientLoader": false,
629 + "hasClientMiddleware": false,
630 + "hasDefaultExport": true,
631 + "hasErrorBoundary": false,
632 + "module": "/assets/home.page-CEey5s8m.js",
633 + "imports": [
634 + "/assets/chunk-QUQL4437-m7Whu12z.js",
635 + "/assets/jsx-runtime-umhk6iWe.js",
636 + "/assets/runtime-MtUT-9pW.js",
637 + "/assets/facebook-pixel-B5MxbSaJ.js",
638 + "/assets/google-analytics-D-bO2gMa.js",
639 + "/assets/lead-capture-config.helpers-DpZ6az3C.js",
640 + "/assets/global-progress-CjDASA7T.js",
641 + "/assets/header-BBMyfPB0.js",
642 + "/assets/footer-Byz07yjl.js",
643 + "/assets/listing-card-Cg3TPyWe.js",
644 + "/assets/seo.helpers-rKbdQkhM.js",
645 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
646 + "/assets/types-BKXG3Vd5.js",
647 + "/assets/index-CXP4lC37.js",
648 + "/assets/use-locale-BnwvbFV-.js",
649 + "/assets/instance-Dwq5XJYG.js",
650 + "/assets/locale-rlhQ6FjN.js",
651 + "/assets/lead-capture-layout-D9cSW77z.js",
652 + "/assets/locale-switcher-kD-MOI9x.js",
653 + "/assets/use-show-profile-modal-Cgfts1ut.js",
654 + "/assets/i18n-CTdcZBaW.js",
655 + "/assets/date-C7fQmg2U.js",
656 + "/assets/format-BKStloXP.js",
657 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
658 + "/assets/formatDistanceToNow-BvwR-I5H.js",
659 + "/assets/paths-CiQnXl4X.js",
660 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
661 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
662 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
663 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
664 + "/assets/preload-helper-Cer9inx8.js",
665 + "/assets/index-DmhvH8SD.js",
666 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
667 + "/assets/Item-DuavYi1u.js",
668 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
669 + "/assets/useDialog-Bh9KG6MB.js",
670 + "/assets/VisuallyHidden-D-Q2SU4O.js",
671 + "/assets/isScrollable-Dnxj3NSq.js",
672 + "/assets/useLabels-BL4rQGMb.js",
673 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
674 + "/assets/context-C7uvIu_A.js",
675 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
676 + "/assets/FocusScope-CWuTxhav.js",
677 + "/assets/index-DJnVLKJF.js",
678 + "/assets/useOverlayTriggerState-woQJgDxB.js",
679 + "/assets/useControlledState-Dl_rDvO0.js",
680 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
681 + "/assets/number-lhSI2oqU.js",
682 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
683 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
684 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
685 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
686 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
687 + "/assets/index-DuhTrrt1.js",
688 + "/assets/mergeRefs-C8xtGVp3.js",
689 + "/assets/getItemCount-BQolBIkZ.js",
690 + "/assets/SelectionManager-BmJrKgY4.js",
691 + "/assets/scrollIntoView-BWAA50rI.js",
692 + "/assets/useSelectableItem-Ds0Ihirs.js",
693 + "/assets/useDescription-DF6TDnVi.js",
694 + "/assets/index-D8QbWu84.js",
695 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
696 + "/assets/useSelectableList-BOP0KhmN.js",
697 + "/assets/DOMLayoutDelegate-Brany3qe.js",
698 + "/assets/useCollator-CbJkpXG2.js",
699 + "/assets/useTreeState-Dx1W0YuM.js",
700 + "/assets/useMenuTriggerState-CHKcWOlC.js",
701 + "/assets/useMenuTrigger-DKFjnCNZ.js",
702 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
703 + "/assets/index-blsAimsU.js",
704 + "/assets/storage-image-BRiFwsnF.js",
705 + "/assets/icon-D77RBjQx.js",
706 + "/assets/debug-build-VZlf1Aof.js",
707 + "/assets/empty-image-DeSmMdF3.js",
708 + "/assets/storage-JzkTKPy4.js",
709 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
710 + "/assets/use-tenant-wE0zDJ1a.js",
711 + "/assets/use-localized-path-BMxKZwMg.js",
712 + "/assets/modal-BG3X61k6.js",
713 + "/assets/runtime-TD3m583z.js",
714 + "/assets/modal-root-haL454LR.js",
715 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
716 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
717 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
718 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
719 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
720 + "/assets/proxy-BlmPTkqy.js",
721 + "/assets/create-visual-element-Cc1-iv7S.js",
722 + "/assets/accelerated-values-ClBEnI7v.js",
723 + "/assets/layout-CqatgvGE.js",
724 + "/assets/listingTypes-CkyCgPCr.js",
725 + "/assets/floor-label-CGeBlKR2.js",
726 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
727 + "/assets/useFormValidation-BlL8vXtt.js",
728 + "/assets/useLabel-FzyH2LZi.js",
729 + "/assets/useNumberFormatter-DG2VO0C1.js",
730 + "/assets/NumberFormatter-BWU_gJyt.js",
731 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
732 + "/assets/useModal-C3khzgYn.js",
733 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
734 + "/assets/useButton-DZK-beuH.js",
735 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
736 + "/assets/index-B915wqUE.js",
737 + "/assets/index-DGzYOEP8.js",
738 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
739 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
740 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
741 + "/assets/useControlledState-C6ovzWeF.js",
742 + "/assets/useField-CBKMx-DQ.js",
743 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
744 + "/assets/chunk-M3MASYO7-COH9P04M.js",
745 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
746 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
747 + "/assets/useToggleState-DY8z2i0t.js",
748 + "/assets/index-BzZ-MzUq.js",
749 + "/assets/useToggle-QKKEqo_x.js",
750 + "/assets/use-debounce-D23YJQRM.js",
751 + "/assets/use-debounced-callback-Do1iUmMt.js",
752 + "/assets/show-BOEsnqQk.js",
753 + "/assets/index-BxwHZyk5.js",
754 + "/assets/use-screenshot-mode-RoZeXH-d.js",
755 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
756 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
757 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
758 + "/assets/powered-by-eversa-BF980dJS.js",
759 + "/assets/tooltip-_QqyKTfK.js",
760 + "/assets/eversa-logo-DmkjJgjq.js",
761 + "/assets/use-auth-D_t8q_v4.js",
762 + "/assets/OtpInput-CJhAm1Gc.js",
763 + "/assets/roles-Cde3N6LE.js",
764 + "/assets/chunk-T45N425O-CCF24x8B.js",
765 + "/assets/index-CwlnhZHs.js",
766 + "/assets/exports-mapbox-Dy-MMXYe.js",
767 + "/assets/client-CpT78rmL.js",
768 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
769 + "/assets/useProgressBar-DhWwJb16.js",
770 + "/assets/index-Cy2bmlj7.js",
771 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
772 + "/assets/std-cron-C0Hf3jWh.js",
773 + "/assets/legacy-date-D-X4tG6T.js",
774 + "/assets/use-is-iframe-DIKEri2l.js",
775 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
776 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
777 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
778 + "/assets/link-CrZmIZC6.js",
779 + "/assets/rich-text-display--Qas76Hg.js",
780 + "/assets/utils-D0p-v41w.js",
781 + "/assets/signature-block-8SMePIUg.js",
782 + "/assets/index-DqzG1Q9x.js",
783 + "/assets/client-only-BGvaz0Jn.js",
784 + "/assets/use-hydrated-nn_6IPIK.js",
785 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
786 + "/assets/settings.types-CTRD0B_j.js",
787 + "/assets/input-CkQmsiJb.js",
788 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
789 + "/assets/extends-BSSSaanF.js",
790 + "/assets/user-menu-BuoWMPG0.js",
791 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
792 + "/assets/index-CRabYQb-.js",
793 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
794 + "/assets/Section-CaP3oBph.js",
795 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
796 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
797 + "/assets/LiveAnnouncer-CnNJa9NI.js",
798 + "/assets/useUpdateEffect-DsCDOPa2.js",
799 + "/assets/index-BT5H2sjL.js",
800 + "/assets/features-animation-BCPmlPPs.js",
801 + "/assets/index-8boKsGvQ.js",
802 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
803 + "/assets/use-server-command-DJ0CxbuT.js",
804 + "/assets/create-rpc-stub-SmqOCk37.js",
805 + "/assets/index-BoeY4VQ9.js",
806 + "/assets/app-form-CRPZmLNY.js",
807 + "/assets/button-KaTnxiWj.js",
808 + "/assets/spinner-DDyy7LQF.js",
809 + "/assets/zod-CmeTJI5u.js",
810 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
811 + "/assets/form-hidden-input-DI5aJPYE.js",
812 + "/assets/form-input-C6s4itpV.js",
813 + "/assets/system-preferences-DL4TO29S.js",
814 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
815 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
816 + "/assets/use-in-view-BNnh4L6M.js",
817 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
818 + ],
819 + "css": [
820 + "/assets/rich-text-editor-D9Rskyfk.css#",
821 + "/assets/listing-card-CI-uxcFh.css"
822 + ]
823 + },
824 + "root.not-found": {
825 + "id": "root.not-found",
826 + "parentId": "root",
827 + "path": "*",
828 + "hasAction": false,
829 + "hasLoader": false,
830 + "hasClientAction": false,
831 + "hasClientLoader": false,
832 + "hasClientMiddleware": false,
833 + "hasDefaultExport": true,
834 + "hasErrorBoundary": false,
835 + "module": "/assets/root.not-found-D01c4GbZ.js",
836 + "imports": [
837 + "/assets/root.not-found-DP5tZm2i.js",
838 + "/assets/chunk-QUQL4437-m7Whu12z.js",
839 + "/assets/jsx-runtime-umhk6iWe.js",
840 + "/assets/icon-D77RBjQx.js",
841 + "/assets/index-blsAimsU.js",
842 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
843 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
844 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
845 + "/assets/preload-helper-Cer9inx8.js",
846 + "/assets/index-DmhvH8SD.js",
847 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
848 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
849 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
850 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
851 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js"
852 + ],
853 + "css": []
854 + },
855 + "PublicListingsIndexPage": {
856 + "id": "PublicListingsIndexPage",
857 + "parentId": "PublicListingsLayoutPage",
858 + "path": "",
859 + "hasAction": false,
860 + "hasLoader": false,
861 + "hasClientAction": false,
862 + "hasClientLoader": false,
863 + "hasClientMiddleware": false,
864 + "hasDefaultExport": true,
865 + "hasErrorBoundary": false,
866 + "module": "/assets/listings-index.page-DjplF3AX.js",
867 + "imports": [
868 + "/assets/chunk-QUQL4437-m7Whu12z.js",
869 + "/assets/jsx-runtime-umhk6iWe.js",
870 + "/assets/runtime-MtUT-9pW.js",
871 + "/assets/instance-Dwq5XJYG.js",
872 + "/assets/locale-rlhQ6FjN.js",
873 + "/assets/use-localized-path-BMxKZwMg.js",
874 + "/assets/listing-card-Cg3TPyWe.js",
875 + "/assets/types-BKXG3Vd5.js",
876 + "/assets/i18n-CTdcZBaW.js",
877 + "/assets/date-C7fQmg2U.js",
878 + "/assets/format-BKStloXP.js",
879 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
880 + "/assets/formatDistanceToNow-BvwR-I5H.js",
881 + "/assets/paths-CiQnXl4X.js",
882 + "/assets/use-tenant-wE0zDJ1a.js",
883 + "/assets/runtime-TD3m583z.js",
884 + "/assets/exports-mapbox-Dy-MMXYe.js",
885 + "/assets/index-DJnVLKJF.js",
886 + "/assets/use-locale-BnwvbFV-.js",
887 + "/assets/icon-D77RBjQx.js",
888 + "/assets/show-BOEsnqQk.js",
889 + "/assets/client-CpT78rmL.js",
890 + "/assets/index-CXP4lC37.js",
891 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
892 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
893 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
894 + "/assets/useProgressBar-DhWwJb16.js",
895 + "/assets/preload-helper-Cer9inx8.js",
896 + "/assets/index-DmhvH8SD.js",
897 + "/assets/number-lhSI2oqU.js",
898 + "/assets/useLabel-FzyH2LZi.js",
899 + "/assets/useLabels-BL4rQGMb.js",
900 + "/assets/useNumberFormatter-DG2VO0C1.js",
901 + "/assets/context-C7uvIu_A.js",
902 + "/assets/NumberFormatter-BWU_gJyt.js",
903 + "/assets/index-Cy2bmlj7.js",
904 + "/assets/index-blsAimsU.js",
905 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
906 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
907 + "/assets/mergeRefs-C8xtGVp3.js",
908 + "/assets/useControlledState-Dl_rDvO0.js",
909 + "/assets/FocusScope-CWuTxhav.js",
910 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
911 + "/assets/useField-CBKMx-DQ.js",
912 + "/assets/useFormValidation-BlL8vXtt.js",
913 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
914 + "/assets/std-cron-C0Hf3jWh.js",
915 + "/assets/legacy-date-D-X4tG6T.js",
916 + "/assets/listingTypes-CkyCgPCr.js",
917 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
918 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
919 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
920 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
921 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
922 + "/assets/useButton-DZK-beuH.js",
923 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
924 + "/assets/useOverlayTriggerState-woQJgDxB.js",
925 + "/assets/index-B915wqUE.js",
926 + "/assets/accelerated-values-ClBEnI7v.js",
927 + "/assets/useTreeState-Dx1W0YuM.js",
928 + "/assets/SelectionManager-BmJrKgY4.js",
929 + "/assets/scrollIntoView-BWAA50rI.js",
930 + "/assets/isScrollable-Dnxj3NSq.js",
931 + "/assets/useSelectableList-BOP0KhmN.js",
932 + "/assets/DOMLayoutDelegate-Brany3qe.js",
933 + "/assets/useCollator-CbJkpXG2.js",
934 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
935 + "/assets/index-DGzYOEP8.js",
936 + "/assets/Item-DuavYi1u.js",
937 + "/assets/use-is-iframe-DIKEri2l.js",
938 + "/assets/floor-label-CGeBlKR2.js",
939 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
940 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
941 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
942 + "/assets/storage-image-BRiFwsnF.js",
943 + "/assets/debug-build-VZlf1Aof.js",
944 + "/assets/empty-image-DeSmMdF3.js",
945 + "/assets/storage-JzkTKPy4.js",
946 + "/assets/link-CrZmIZC6.js",
947 + "/assets/chunk-T45N425O-CCF24x8B.js",
948 + "/assets/modal-BG3X61k6.js",
949 + "/assets/modal-root-haL454LR.js",
950 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
951 + "/assets/useDialog-Bh9KG6MB.js",
952 + "/assets/VisuallyHidden-D-Q2SU4O.js",
953 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
954 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
955 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
956 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
957 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
958 + "/assets/proxy-BlmPTkqy.js",
959 + "/assets/create-visual-element-Cc1-iv7S.js",
960 + "/assets/layout-CqatgvGE.js",
961 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
962 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
963 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
964 + "/assets/index-DuhTrrt1.js",
965 + "/assets/useModal-C3khzgYn.js",
966 + "/assets/index-BxwHZyk5.js",
967 + "/assets/rich-text-display--Qas76Hg.js",
968 + "/assets/utils-D0p-v41w.js",
969 + "/assets/signature-block-8SMePIUg.js",
970 + "/assets/index-DqzG1Q9x.js",
971 + "/assets/client-only-BGvaz0Jn.js",
972 + "/assets/use-hydrated-nn_6IPIK.js",
973 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
974 + "/assets/chunk-M3MASYO7-COH9P04M.js",
975 + "/assets/settings.types-CTRD0B_j.js",
976 + "/assets/use-show-profile-modal-Cgfts1ut.js",
977 + "/assets/input-CkQmsiJb.js",
978 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
979 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
980 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
981 + "/assets/useControlledState-C6ovzWeF.js",
982 + "/assets/extends-BSSSaanF.js",
983 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
984 + "/assets/use-debounce-D23YJQRM.js",
985 + "/assets/use-debounced-callback-Do1iUmMt.js",
986 + "/assets/use-auth-D_t8q_v4.js",
987 + "/assets/OtpInput-CJhAm1Gc.js",
988 + "/assets/roles-Cde3N6LE.js",
989 + "/assets/index-CwlnhZHs.js",
990 + "/assets/index-BzZ-MzUq.js",
991 + "/assets/powered-by-eversa-BF980dJS.js",
992 + "/assets/tooltip-_QqyKTfK.js",
993 + "/assets/eversa-logo-DmkjJgjq.js",
994 + "/assets/use-screenshot-mode-RoZeXH-d.js",
995 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
996 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
997 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
998 + "/assets/getItemCount-BQolBIkZ.js",
999 + "/assets/useSelectableItem-Ds0Ihirs.js",
1000 + "/assets/useDescription-DF6TDnVi.js",
1001 + "/assets/index-D8QbWu84.js",
1002 + "/assets/useMenuTriggerState-CHKcWOlC.js",
1003 + "/assets/useMenuTrigger-DKFjnCNZ.js",
1004 + "/assets/user-menu-BuoWMPG0.js",
1005 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
1006 + "/assets/index-CRabYQb-.js",
1007 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
1008 + "/assets/Section-CaP3oBph.js",
1009 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
1010 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
1011 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
1012 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
1013 + "/assets/LiveAnnouncer-CnNJa9NI.js",
1014 + "/assets/useUpdateEffect-DsCDOPa2.js",
1015 + "/assets/index-BT5H2sjL.js",
1016 + "/assets/features-animation-BCPmlPPs.js",
1017 + "/assets/index-8boKsGvQ.js",
1018 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
1019 + "/assets/use-server-command-DJ0CxbuT.js",
1020 + "/assets/create-rpc-stub-SmqOCk37.js",
1021 + "/assets/index-BoeY4VQ9.js",
1022 + "/assets/app-form-CRPZmLNY.js",
1023 + "/assets/button-KaTnxiWj.js",
1024 + "/assets/spinner-DDyy7LQF.js",
1025 + "/assets/zod-CmeTJI5u.js",
1026 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
1027 + "/assets/form-hidden-input-DI5aJPYE.js",
1028 + "/assets/form-input-C6s4itpV.js",
1029 + "/assets/system-preferences-DL4TO29S.js",
1030 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
1031 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
1032 + "/assets/use-in-view-BNnh4L6M.js",
1033 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
1034 + ],
1035 + "css": [
1036 + "/assets/rich-text-editor-D9Rskyfk.css#",
1037 + "/assets/listing-card-CI-uxcFh.css"
1038 + ]
1039 + }
1040 + },
1041 + "url": "/assets/manifest-2b2cda1e.js",
1042 + "version": "2b2cda1e"
1043 +};
1044 + window.__reactRouterRouteModules = {"root":route0,"public-language":route1,"PublicListingsLayoutPage":route2,"PublicListingDetailPage":route3};
1045 +
1046 +import("/assets/entry.client-BIJa3TY3.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":-5,\"_8\":9,\"_10\":11},\"actionData\",\"errors\",\"root\",{\"_589\":-5,\"_590\":-7,\"_591\":592,\"_593\":594,\"_20\":21,\"_18\":595,\"_596\":-5,\"_597\":598,\"_227\":228,\"_599\":-5,\"_600\":-5},\"public-language\",\"PublicListingsLayoutPage\",{\"_18\":214,\"_215\":216,\"_217\":218,\"_219\":25,\"_220\":221,\"_222\":60,\"_223\":224,\"_225\":226,\"_227\":228,\"_229\":25,\"_230\":25,\"_231\":25},\"PublicListingDetailPage\",{\"_12\":13,\"_14\":15,\"_16\":17,\"_18\":19,\"_20\":21,\"_22\":23,\"_24\":25},\"listing\",{\"_46\":126,\"_127\":128,\"_96\":129,\"_130\":129,\"_84\":103,\"_131\":132,\"_133\":134,\"_115\":135,\"_118\":136,\"_116\":137,\"_36\":138,\"_139\":140,\"_141\":142,\"_143\":-5,\"_144\":-5,\"_145\":146,\"_147\":60,\"_148\":149,\"_150\":151},\"auth\",{\"_124\":60,\"_125\":25},\"walkScore\",[\"P\",17],\"tenant\",{\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":40,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"lang\",\"fr\",\"pageUrl\",\"https://www.halfred.ca/fr/listings/30-rue-de-matapedia/details\",\"noindex\",false,\"address\",{\"_96\":114,\"_84\":103,\"_115\":79,\"_116\":117,\"_118\":119,\"_120\":101,\"_121\":87,\"_90\":98,\"_122\":123},\"analytics\",{\"_108\":109,\"_110\":111,\"_112\":113},\"colors\",{\"_104\":105,\"_106\":107},\"contact\",{\"_69\":70,\"_71\":72,\"_26\":73},\"customDomains\",[62,63],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_58\":25,\"_59\":60,\"_61\":25},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{\"_54\":55,\"_56\":57},\"templateId\",\"editorial\",\"title\",\"Halfred | Apartment rentals\",\"showcase\",{},\"listingSortOrder\",\"smart\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_64\":68},{\"_64\":65,\"_66\":67},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_74\":75,\"_76\":77,\"_78\":79,\"_80\":81,\"_82\":83,\"_84\":85,\"_86\":87,\"_88\":89,\"_90\":91,\"_92\":93,\"_94\":95,\"_96\":79},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_97\":103,\"_99\":103},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_97\":101,\"_99\":102},\"country\",{\"_97\":98,\"_99\":100},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"loggedIn\",\"isStaff\",\"30-rue-de-matapedia\",\"area\",800,\"30 Rue De Matapédia\",\"name\",\"buildingId\",\"37dee97a-cb92-4205-afc4-12b81c8d4218\",\"availabilty\",[\"D\",1788220800000],\"Pointe-Gatineau\",-75.704054,45.483178,{\"_200\":212,\"_21\":213},\"images\",[211],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[195,196,197],\"listed\",\"units\",[167],\"cardData\",{\"_46\":126,\"_96\":129,\"_84\":103,\"_115\":135,\"_116\":137,\"_118\":136,\"_152\":153,\"_154\":155,\"_156\":157,\"_127\":158,\"_159\":160,\"_161\":162},\"unitId\",\"95bceef3-5084-4d61-908f-e898b4a40499\",\"bedrooms\",[166],\"bathrooms\",[165],[128],\"price\",[164],\"availability\",[163],\"2026-09-01T00:00:00.000Z\",1400,1,2,{\"_46\":153,\"_127\":128,\"_168\":166,\"_159\":164,\"_154\":166,\"_156\":165,\"_169\":170,\"_139\":171,\"_147\":60,\"_172\":173,\"_174\":175,\"_176\":177,\"_161\":178,\"_179\":-5,\"_180\":-5,\"_181\":182,\"_39\":183},\"floor\",\"alias\",\"6\",[186,187,188,189,190,191,192,193,194],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1788220800000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_159\":184,\"_36\":185},[],1300,\"***Promotion sur le loyer pour les 12 premiers mois***\",\"/storage/v1/object/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132256.jpg\",\"/storage/v1/object/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132214.jpg\",\"/storage/v1/object/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132119.jpg\",\"/storage/v1/object/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132146.jpg\",\"/storage/v1/object/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132429.jpg\",\"/storage/v1/object/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132437.jpg\",\"/storage/v1/object/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132454.jpg\",\"/storage/v1/object/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132512.jpg\",\"/storage/v1/object/public/halfred/units/95bceef3-5084-4d61-908f-e898b4a40499/20241014_132318.jpg\",{\"_97\":207,\"_41\":208},{\"_97\":203,\"_41\":204},{\"_97\":198,\"_41\":199},{\"_200\":201,\"_21\":202},\"lucide:droplet\",\"en\",\"Water\",\"Eau\",{\"_200\":205,\"_21\":206},\"lucide:washing-machine\",\"Laundry Room\",\"Buanderie\",{\"_200\":209,\"_21\":210},\"lucide:car\",\"Parking\",\"Stationnement\",\"/storage/v1/object/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"FOR RENT – Beautiful Apartment at 30 Matapédia Street, Gatineau!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover this well-located apartment in a convenient and desirable area of Gatineau, perfect for students, young professionals, or small families looking for a comfortable and practical living space.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Prime location:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Close to Vérendrye and Gréber streets\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Quick access to Highway 50\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 Only 5 minutes from Cégep de l’Outaouais (Félix-Leclerc campus)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🛍️ Less than 5 minutes from Les Promenades Gatineau\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What this unit offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 parking space included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Laundry facilities in the building\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Comfortable and practical living space\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"A perfect location close to shops, restaurants, services, and public transportation for easy everyday living.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Not heated / not electricity included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ No pets allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Credit check required\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" for more information or to schedule your visit!\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"À LOUER – Beau logement au 30 rue Matapédia, Gatineau!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ce logement idéalement situé dans un secteur pratique et recherché de Gatineau, parfait pour les étudiants, jeunes professionnels ou petites familles à la recherche d’un espace confortable et bien localisé.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Emplacement stratégique :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Près des rues Vérendrye et Gréber\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Accès rapide à l’autoroute 50\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 À seulement 5 minutes du Cégep de l’Outaouais (pavillon Félix-Leclerc)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🛍️ Moins de 5 minutes des Promenades Gatineau\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce que vous offre le logement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 espace de stationnement inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Buanderie dans l’immeuble\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Espace de vie pratique et confortable\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’aimer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Un emplacement idéal près des services, commerces, restaurants et transports pour un quotidien simple et agréable.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Non chauffé / non éclairé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ Animaux non acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Enquête de crédit obligatoire\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dès maintenant au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour plus d’informations ou pour planifier une visite!\\\"}]}]}\",{\"_26\":27,\"_28\":587,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":588,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"listings\",[],\"listingsByView\",{\"_582\":216,\"_583\":584,\"_585\":586},\"explodeProjects\",\"initialFilters\",{\"_159\":345,\"_346\":347,\"_348\":349,\"_127\":350,\"_168\":351,\"_352\":60,\"_156\":353,\"_154\":354,\"_355\":25,\"_356\":60,\"_357\":358,\"_359\":360},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_232\":233,\"_234\":235,\"_236\":237,\"_238\":239,\"_240\":233,\"_241\":242,\"_243\":244},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[326],\"analysisProductsPrice\",{\"_326\":327,\"_328\":329,\"_330\":331,\"_332\":333,\"_334\":335,\"_336\":337,\"_338\":339,\"_340\":339,\"_341\":342,\"_343\":337,\"_344\":335},\"notifications\",{\"_303\":304},\"form\",{\"_296\":60,\"_297\":25,\"_298\":60,\"_299\":60,\"_300\":25,\"_301\":25,\"_302\":25},\"enabledSkus\",\"submissions\",{\"_246\":247,\"_248\":249,\"_250\":251,\"_252\":253,\"_30\":254,\"_255\":-5},\"agent\",{\"_245\":25},\"hideAgentNewSubmissionBtn\",\"all\",[282,283,284,285,286,287,288,292,293,294,295],\"steps\",[282,283,284,285,286,287,288],\"badges\",[272,273,274,275,276,277],\"statuses\",[266,256,258,260,262,264,267,268,269,270,271],{\"_256\":257,\"_258\":259,\"_260\":261,\"_262\":263,\"_264\":265},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_278\":256,\"_280\":257},{\"_278\":258,\"_280\":259},{\"_278\":260,\"_280\":261},{\"_278\":262,\"_280\":263},{\"_278\":264,\"_280\":265},{\"_278\":279,\"_280\":281},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_278\":266,\"_280\":-5,\"_289\":25},{\"_278\":256,\"_280\":257,\"_289\":60,\"_290\":25,\"_291\":25},{\"_278\":258,\"_280\":259,\"_289\":60,\"_290\":25,\"_291\":25},{\"_278\":260,\"_280\":261,\"_289\":60,\"_290\":25,\"_291\":25},{\"_278\":262,\"_280\":263,\"_289\":60,\"_290\":25,\"_291\":25},{\"_278\":264,\"_280\":265,\"_289\":60,\"_290\":25,\"_291\":25},{\"_278\":267,\"_280\":-5,\"_289\":60},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_278\":268,\"_280\":-5,\"_289\":25},{\"_278\":269,\"_280\":-5,\"_289\":25},{\"_278\":270,\"_280\":-5,\"_289\":25},{\"_278\":271,\"_280\":-5,\"_289\":25},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_243\":305,\"_306\":307,\"_18\":308,\"_309\":310},[318,319,320,321,322,323,313,314,324,325],\"manager\",[],[312,313,314,315,316,317],\"admin\",[311],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"agent-submission-snoozed\",\"agent-submission-snoozed-reminder\",\"agent-submission-snoozed-expired\",\"application-deadline-reminder\",\"application-deadline-expired\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1299,\"qc_citizen_criminal_plumitif_municipal_check\",699,\"qc_citizen_rental_board_check\",799,\"on_citizen_rental_board_check\",999,\"ca_citizen_workplace_reference_verification\",1499,\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",\"qc_citizen_rental_board_extended_check\",[165,581],\"pricePerMonth\",[165,581],\"pricePerSqft\",[224,224],[224,580],[578,579],\"hasFloor\",[224,166],[224,395],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434],\"availableNeighborhoods\",[361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],{\"_130\":400,\"_223\":165},{\"_130\":398,\"_223\":399},{\"_130\":397,\"_223\":166},{\"_130\":396,\"_223\":166},{\"_130\":394,\"_223\":395},{\"_130\":103,\"_223\":393},{\"_130\":391,\"_223\":392},{\"_130\":390,\"_223\":165},{\"_130\":389,\"_223\":166},{\"_130\":388,\"_223\":165},{\"_130\":386,\"_223\":387},{\"_130\":385,\"_223\":165},{\"_130\":135,\"_223\":384},{\"_130\":383,\"_223\":166},{\"_130\":382,\"_223\":165},{\"_130\":380,\"_223\":381},{\"_130\":378,\"_223\":379},\"Touraine\",7,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",8,\"Plateau \",\"Plateau\",30,\"plateau\",\"Old Gatineau\",\"Masson\",\"Hull\",21,37,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",20,\"angers\",{\"_46\":576,\"_130\":577,\"_41\":208},{\"_46\":571,\"_130\":572,\"_41\":573},{\"_46\":567,\"_130\":568,\"_41\":437},{\"_46\":563,\"_130\":564,\"_41\":204},{\"_46\":559,\"_130\":560,\"_41\":437},{\"_46\":555,\"_130\":556,\"_41\":456},{\"_46\":551,\"_130\":552,\"_41\":479},{\"_46\":546,\"_130\":547,\"_41\":548},{\"_46\":542,\"_130\":543,\"_41\":479},{\"_46\":537,\"_130\":538,\"_41\":539},{\"_46\":532,\"_130\":533,\"_41\":534},{\"_46\":528,\"_130\":529,\"_41\":494},{\"_46\":524,\"_130\":525,\"_41\":442},{\"_46\":520,\"_130\":521,\"_41\":456},{\"_46\":516,\"_130\":517,\"_41\":518},{\"_46\":512,\"_130\":513,\"_41\":465},{\"_46\":508,\"_130\":509,\"_41\":204},{\"_46\":504,\"_130\":505,\"_41\":442},{\"_46\":502,\"_130\":503,\"_41\":199},{\"_46\":497,\"_130\":498,\"_41\":499},{\"_46\":492,\"_130\":493,\"_41\":494},{\"_46\":488,\"_130\":489,\"_41\":437},{\"_46\":484,\"_130\":485,\"_41\":208},{\"_46\":482,\"_130\":483,\"_41\":204},{\"_46\":477,\"_130\":478,\"_41\":479},{\"_46\":472,\"_130\":473,\"_41\":474},{\"_46\":468,\"_130\":469,\"_41\":465},{\"_46\":463,\"_130\":464,\"_41\":465},{\"_46\":459,\"_130\":460,\"_41\":208},{\"_46\":454,\"_130\":455,\"_41\":456},{\"_46\":449,\"_130\":450,\"_41\":451},{\"_46\":445,\"_130\":446,\"_41\":447},{\"_46\":440,\"_130\":441,\"_41\":442},{\"_46\":435,\"_130\":436,\"_41\":437},\"counter-type\",{\"_200\":438,\"_21\":439},\"lucide:check\",\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_200\":443,\"_21\":444},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_200\":448,\"_21\":448},\"lucide:armchair\",\"Commodes\",\"disabled-access\",{\"_200\":452,\"_21\":453},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"gas-heating\",{\"_200\":457,\"_21\":458},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"underground-garage\",{\"_200\":461,\"_21\":462},\"Underground Garage\",\"Garage souterrain\",\"small-dogs-allowed\",{\"_200\":466,\"_21\":467},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_200\":470,\"_21\":471},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"washer-dryer-outlet\",{\"_200\":475,\"_21\":476},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"cable-internet\",{\"_200\":480,\"_21\":481},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"laundry-room\",{\"_200\":205,\"_21\":206},\"garage-parking\",{\"_200\":486,\"_21\":487},\"Garage Parking\",\"Parking garage\",\"water-tank\",{\"_200\":490,\"_21\":491},\"Water Tank\",\"Réservoir d'eau\",\"microwave\",{\"_200\":495,\"_21\":496},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"blinds\",{\"_200\":500,\"_21\":501},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water\",{\"_200\":201,\"_21\":202},\"building-terrace\",{\"_200\":506,\"_21\":507},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_200\":510,\"_21\":511},\"Dryer\",\"Sèche-linge\",\"cats-allowed\",{\"_200\":514,\"_21\":515},\"Cats Allowed\",\"Chats autorisés\",\"gym\",{\"_200\":519,\"_21\":519},\"lucide:dumbbell\",\"Gym\",\"electric-heating\",{\"_200\":522,\"_21\":523},\"Electric Heating\",\"Chauffage Électrique\",\"balcony\",{\"_200\":526,\"_21\":527},\"Balcony\",\"Balcon\",\"oven\",{\"_200\":530,\"_21\":531},\"Oven\",\"Four\",\"electricity\",{\"_200\":535,\"_21\":536},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"refrigerator\",{\"_200\":540,\"_21\":541},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_200\":544,\"_21\":545},\"Cable\",\"Câble\",\"stove\",{\"_200\":549,\"_21\":550},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_200\":553,\"_21\":554},\"Fiber Internet\",\"Internet fibre\",\"central-air-conditioning\",{\"_200\":557,\"_21\":558},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_200\":561,\"_21\":562},\"Dishwasher\",\"Lave-vaisselle\",\"washer\",{\"_200\":565,\"_21\":566},\"Washer\",\"Laveuse\",\"elevator\",{\"_200\":569,\"_21\":570},\"Elevator\",\"Ascenseur\",\"locker-storage-space\",{\"_200\":574,\"_21\":575},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"parking\",{\"_200\":209,\"_21\":210},-1,6,2063,3050,\"list\",\"map\",[],\"explode\",[],{\"_108\":109,\"_110\":111,\"_112\":113},{\"_58\":25,\"_59\":60,\"_61\":25},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_278\":615,\"_46\":47,\"_616\":617,\"_52\":53,\"_36\":37,\"_30\":31,\"_618\":619,\"_26\":27,\"_32\":33,\"_234\":620,\"_621\":622,\"_623\":624,\"_625\":626,\"_43\":44,\"_627\":628,\"_629\":630,\"_45\":-5,\"_631\":-5,\"_632\":-5,\"_633\":-5,\"_50\":51,\"_48\":49,\"_34\":35,\"_634\":-5,\"_635\":-5,\"_227\":228,\"_636\":637,\"_638\":639,\"_640\":641,\"_41\":42,\"_642\":643,\"_38\":-7,\"_644\":645,\"_39\":646,\"_647\":648,\"_649\":-7,\"_650\":651,\"_28\":652,\"_232\":653,\"_654\":655,\"_656\":657},\"toast\",\"user\",{\"_601\":25,\"_602\":-5,\"_603\":-5,\"_604\":-5,\"_605\":-5,\"_606\":-5,\"_607\":-5,\"_608\":-5,\"_609\":-5,\"_610\":-5,\"_69\":-5,\"_71\":-5,\"_611\":-5,\"_125\":25,\"_612\":25,\"_613\":-5,\"_614\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_41\":745},\"social\",{\"_742\":743,\"_744\":79},{\"_326\":327,\"_328\":329,\"_330\":331,\"_332\":333,\"_334\":335,\"_336\":337,\"_338\":339,\"_340\":339,\"_341\":342,\"_343\":337,\"_344\":335},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_739\":-5,\"_264\":60,\"_740\":25,\"_741\":695},\"plan\",{\"_130\":719,\"_720\":79,\"_721\":722,\"_723\":724,\"_725\":726,\"_727\":728,\"_729\":224,\"_730\":731,\"_732\":224,\"_733\":734,\"_735\":736,\"_737\":738},\"metadata\",{\"_28\":652},\"consentConditionsText\",\"consentConditionsEn\",\"consentConditionsFr\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_712\":713,\"_621\":622,\"_714\":715,\"_43\":44,\"_716\":717,\"_74\":718},\"bucket\",{\"_709\":47,\"_710\":711},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_594\":706,\"_707\":708},\"tosHistory\",[695],{\"_666\":60,\"_667\":-7,\"_59\":60,\"_668\":25,\"_669\":25,\"_670\":60,\"_671\":60,\"_672\":25,\"_673\":-7,\"_674\":25,\"_675\":-7,\"_676\":25,\"_677\":25,\"_678\":25,\"_679\":680,\"_681\":25,\"_245\":25,\"_682\":-7,\"_683\":-7,\"_684\":-7,\"_685\":25,\"_58\":25,\"_686\":25,\"_61\":25,\"_687\":688,\"_689\":60,\"_690\":25,\"_691\":25,\"_692\":25,\"_693\":25,\"_694\":25},\"disabledModules\",[],\"rolePermissions\",\"banner\",{\"_200\":664,\"_21\":665},{\"_110\":111,\"_662\":663,\"_108\":109,\"_112\":113},[326],\"payments\",{\"_658\":60,\"_659\":60,\"_660\":25,\"_661\":25},\"version\",\"prod-20260917-9ad1803\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"hasAddressVariants\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"hopemIntegrationEnabled\",\"voltixIntegrationEnabled\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_696\":697,\"_698\":699,\"_656\":700,\"_264\":60,\"_262\":701,\"_702\":703,\"_704\":705},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",39,\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_746\":747},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("P17:[{\"_749\":165,\"_750\":751,\"_36\":752,\"_753\":754,\"_755\":756,\"_757\":758,\"_759\":760,\"_761\":762,\"_763\":760,\"_764\":765,\"_766\":767,\"_768\":769,\"_770\":771},\"status\",\"walkscore\",78,\"Very Walkable\",\"updated\",\"2026-08-22 16:13:05.395452\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/30Rue-De-Matap%C3%A9dia/lat=45.483178/lng=-75.704054/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.483,\"snapped_lon\",-75.7035,\"transit\",{\"_36\":-5,\"_775\":-5,\"_773\":-5},\"bike\",{\"_36\":772,\"_773\":774},\"Very Bikeable\",\"score\",79,\"summary\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--><!--/$--><script id="_R_">requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Walk Score®<!-- --> <!-- -->78</a><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Bike Score®<!-- --> <!-- -->79</a><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Laundry Room</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span></div></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
1047 +$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><div hidden id="S:1"><div class="flex min-w-[240px] flex-1 basis-[280px] flex-col gap-4 sm:gap-6" data-sentry-component="EditorialScores" data-sentry-source-file="location.tsx"><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Walk Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">78</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:78%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Very Walkable</div></div><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Bike Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">79</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:79%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Very Bikeable</div></div></div></div><script>$RC("B:1","S:1")</script></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/14bd184c74bea67a62b0.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/eversa.png"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/listing-detail.page-D34BzzZ7.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="551c2a4cf6ddf97e96eebe6ae211e304-6f855c7b1cf402ba-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=551c2a4cf6ddf97e96eebe6ae211e304,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.6300998729154692,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="flex flex-1 items-center justify-center bg-gradient-to-br from-primary-50 via-sky-50 to-emerald-50/50 px-4 py-16 dark:from-indigo-950 dark:via-sky-950 dark:to-emerald-950/50" data-sentry-component="DetailErrorBoundary" data-sentry-source-file="detail-error-boundary.tsx"><div class="w-full max-w-lg rounded-2xl border border-slate-200/30 bg-white/90 p-8 shadow-lg backdrop-blur-sm dark:border-slate-700/30 dark:bg-slate-900/90 md:p-12"><div class="flex flex-col items-center"><div class="rounded-full bg-primary-50/50 p-6 ring-8 ring-primary-50/20 dark:bg-primary-900/50 dark:ring-primary-900/20"><span></span></div><div class="mt-8 space-y-3 text-center"><h1 class="text-3xl font-bold text-slate-900 dark:text-slate-100">Annonce non trouvée</h1><p class="mx-auto max-w-md text-large text-slate-600 dark:text-slate-400">Oops ! L&#x27;annonce que vous cherchez n&#x27;existe pas ou a été déplacée.</p></div><div class="mt-10 flex w-full gap-3"><button type="button" data-sentry-element="Button" data-sentry-source-file="detail-error-boundary.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-6 min-w-24 h-12 text-medium gap-3 rounded-large [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-default/40 text-default-700 data-[hover=true]:opacity-hover flex-1"><span></span>Retour</button><a role="button" tabindex="0" href="/listings/list" data-sentry-element="Button" data-sentry-source-file="detail-error-boundary.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-6 min-w-24 h-12 text-medium gap-3 rounded-large [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover flex-1" data-discover="true"><span></span>Rechercher des annonces</a></div><div class="mt-10 w-full border-t pt-8 text-center"><p class="text-sm text-slate-600 dark:text-slate-400">Besoin d&#x27;aide ? Envoyez un email à notre équipe de support à <a class="relative inline-flex items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-medium text-primary no-underline hover:opacity-80 active:opacity-disabled transition-opacity" href="mailto:info@halfred.ca" tabindex="0" role="link">info@halfred.ca</a> pour obtenir de l&#x27;aide.</p></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/listing-detail.page-D34BzzZ7.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicListingDetailPage": {
338 − "id": "PublicListingDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/:slug/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/listing-detail.page-D34BzzZ7.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/index-C5vezUBD.js",
354 − "/assets/seo.helpers-DUWcGrSj.js",
355 − "/assets/should-revalidate-for-modal-CqioTNup.js",
356 − "/assets/listing-card-vLpuwroq.js",
357 − "/assets/types-BlrrbiGM.js",
358 − "/assets/use-tenant-BWWCVgWC.js",
359 − "/assets/index-DoORTE4j.js",
360 − "/assets/icon-ChitaFhd.js",
361 − "/assets/chunk-T45N425O-C34bNx0L.js",
362 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
363 − "/assets/preload-helper-Djj1Qpxo.js",
364 − "/assets/index-yaZ7Ke31.js",
365 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
366 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
367 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
368 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
369 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
370 − "/assets/settings.types-DE5bLdHg.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicListingDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":5},\"loaderData\",{\"_18\":19,\"_20\":21},\"actionData\",\"errors\",{\"_6\":7},\"PublicListingDetailPage\",{\"_8\":9,\"_10\":11,\"_12\":13,\"_14\":15,\"_16\":17},\"status\",404,\"statusText\",\"\",\"internal\",false,\"data\",\"Not found\",\"__type\",\"RouteErrorResponse\",\"root\",{\"_492\":-5,\"_493\":-7,\"_494\":495,\"_496\":497,\"_498\":252,\"_22\":499,\"_500\":-5,\"_501\":502,\"_34\":35,\"_503\":-5,\"_504\":-5},\"PublicListingsLayoutPage\",{\"_22\":23,\"_24\":25,\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":13,\"_37\":13,\"_38\":13},\"tenant\",{\"_405\":406,\"_407\":408,\"_61\":409,\"_410\":411,\"_412\":413,\"_414\":415,\"_416\":-7,\"_417\":418,\"_248\":419,\"_420\":421,\"_422\":-5,\"_245\":423,\"_424\":425,\"_426\":-5,\"_427\":428},\"listings\",[],\"initialFilters\",{\"_143\":144,\"_145\":146,\"_147\":148,\"_149\":150,\"_151\":152,\"_153\":29,\"_154\":155,\"_156\":157,\"_158\":13,\"_159\":29,\"_160\":161,\"_162\":163},\"defaultView\",true,\"count\",0,\"filters\",{},\"configs\",{\"_39\":40,\"_41\":42,\"_43\":44,\"_45\":46,\"_47\":40,\"_48\":49,\"_50\":51},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[129],\"analysisProductsPrice\",{\"_129\":130,\"_131\":132,\"_133\":134,\"_135\":136,\"_137\":134,\"_138\":134,\"_139\":140,\"_141\":142},\"notifications\",{\"_111\":112},\"form\",{\"_104\":29,\"_105\":13,\"_106\":29,\"_107\":29,\"_108\":13,\"_109\":13,\"_110\":13},\"enabledSkus\",\"submissions\",{\"_53\":54,\"_55\":56,\"_57\":58,\"_59\":60,\"_61\":62,\"_63\":-5},\"agent\",{\"_52\":13},\"hideAgentNewSubmissionBtn\",\"all\",[90,91,92,93,94,95,96,100,101,102,103],\"steps\",[90,91,92,93,94,95,96],\"badges\",[80,81,82,83,84,85],\"statuses\",[74,64,66,68,70,72,75,76,77,78,79],\"colors\",{\"_64\":65,\"_66\":67,\"_68\":69,\"_70\":71,\"_72\":73},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_86\":64,\"_88\":65},{\"_86\":66,\"_88\":67},{\"_86\":68,\"_88\":69},{\"_86\":70,\"_88\":71},{\"_86\":72,\"_88\":73},{\"_86\":87,\"_88\":89},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_86\":74,\"_88\":-5,\"_97\":13},{\"_86\":64,\"_88\":65,\"_97\":29,\"_98\":13,\"_99\":13},{\"_86\":66,\"_88\":67,\"_97\":29,\"_98\":13,\"_99\":13},{\"_86\":68,\"_88\":69,\"_97\":29,\"_98\":13,\"_99\":13},{\"_86\":70,\"_88\":71,\"_97\":29,\"_98\":13,\"_99\":13},{\"_86\":72,\"_88\":73,\"_97\":29,\"_98\":13,\"_99\":13},{\"_86\":75,\"_88\":-5,\"_97\":29},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_86\":76,\"_88\":-5,\"_97\":13},{\"_86\":77,\"_88\":-5,\"_97\":13},{\"_86\":78,\"_88\":-5,\"_97\":13},{\"_86\":79,\"_88\":-5,\"_97\":13},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_50\":113,\"_114\":115,\"_22\":116,\"_117\":118},[126,127,128],\"manager\",[],[120,121,122,123,124,125],\"admin\",[119],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,\"price\",[188,404],\"pricePerMonth\",[188,404],\"pricePerSqft\",[31,31],\"area\",[31,403],\"floor\",[402,184],\"hasFloor\",\"bathrooms\",[31,190],\"bedrooms\",[31,401],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],\"availableNeighborhoods\",[164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],{\"_182\":210,\"_30\":188},{\"_182\":209,\"_30\":188},{\"_182\":208,\"_30\":188},{\"_182\":206,\"_30\":207},{\"_182\":205,\"_30\":188},{\"_182\":204,\"_30\":190},{\"_182\":202,\"_30\":203},{\"_182\":200,\"_30\":201},{\"_182\":198,\"_30\":199},{\"_182\":197,\"_30\":190},{\"_182\":196,\"_30\":188},{\"_182\":194,\"_30\":195},{\"_182\":193,\"_30\":188},{\"_182\":191,\"_30\":192},{\"_182\":189,\"_30\":190},{\"_182\":187,\"_30\":188},{\"_182\":185,\"_30\":186},{\"_182\":183,\"_30\":184},\"name\",\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",1,\"Québec\",2,\"Pointe-Gatineau\",5,\"Plateau \",\"Plateau\",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,\"Gatineau\",39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"2\",\"1\",{\"_245\":397,\"_182\":398,\"_248\":270},{\"_245\":392,\"_182\":393,\"_248\":394},{\"_245\":388,\"_182\":389,\"_248\":249},{\"_245\":384,\"_182\":385,\"_248\":265},{\"_245\":379,\"_182\":380,\"_248\":381},{\"_245\":375,\"_182\":376,\"_248\":249},{\"_245\":370,\"_182\":371,\"_248\":372},{\"_245\":366,\"_182\":367,\"_248\":311},{\"_245\":362,\"_182\":363,\"_248\":265},{\"_245\":357,\"_182\":358,\"_248\":359},{\"_245\":353,\"_182\":354,\"_248\":256},{\"_245\":349,\"_182\":350,\"_248\":249},{\"_245\":345,\"_182\":346,\"_248\":298},{\"_245\":341,\"_182\":342,\"_248\":280},{\"_245\":336,\"_182\":337,\"_248\":338},{\"_245\":332,\"_182\":333,\"_248\":280},{\"_245\":327,\"_182\":328,\"_248\":329},{\"_245\":323,\"_182\":324,\"_248\":285},{\"_245\":318,\"_182\":319,\"_248\":320},{\"_245\":314,\"_182\":315,\"_248\":311},{\"_245\":309,\"_182\":310,\"_248\":311},{\"_245\":305,\"_182\":306,\"_248\":298},{\"_245\":301,\"_182\":302,\"_248\":303},{\"_245\":296,\"_182\":297,\"_248\":298},{\"_245\":292,\"_182\":293,\"_248\":256},{\"_245\":288,\"_182\":289,\"_248\":270},{\"_245\":283,\"_182\":284,\"_248\":285},{\"_245\":278,\"_182\":279,\"_248\":280},{\"_245\":273,\"_182\":274,\"_248\":275},{\"_245\":268,\"_182\":269,\"_248\":270},{\"_245\":263,\"_182\":264,\"_248\":265},{\"_245\":259,\"_182\":260,\"_248\":261},{\"_245\":254,\"_182\":255,\"_248\":256},{\"_245\":246,\"_182\":247,\"_248\":249},\"slug\",\"counter-type\",{\"_250\":251,\"_252\":253},\"icon\",\"lucide:check\",\"en\",\"Counter Type\",\"fr\",\"Type de comptoir\",\"yard-access\",{\"_250\":257,\"_252\":258},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_250\":262,\"_252\":262},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_250\":266,\"_252\":267},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_250\":271,\"_252\":272},\"lucide:car\",\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_250\":276,\"_252\":277},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_250\":281,\"_252\":282},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_250\":286,\"_252\":287},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_250\":290,\"_252\":291},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_250\":294,\"_252\":295},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_250\":299,\"_252\":300},\"lucide:washing-machine\",\"Dryer\",\"Sèche-linge\",\"gym\",{\"_250\":304,\"_252\":304},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_250\":307,\"_252\":308},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_250\":312,\"_252\":313},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_250\":316,\"_252\":317},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_250\":321,\"_252\":322},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_250\":325,\"_252\":326},\"Oven\",\"Four\",\"refrigerator\",{\"_250\":330,\"_252\":331},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_250\":334,\"_252\":335},\"Cable\",\"Câble\",\"stove\",{\"_250\":339,\"_252\":340},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_250\":343,\"_252\":344},\"Fiber Internet\",\"Internet fibre\",\"washer\",{\"_250\":347,\"_252\":348},\"Washer\",\"Laveuse\",\"elevator\",{\"_250\":351,\"_252\":352},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_250\":355,\"_252\":356},\"Balcony\",\"Balcon\",\"electricity\",{\"_250\":360,\"_252\":361},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"electric-heating\",{\"_250\":364,\"_252\":365},\"Electric Heating\",\"Chauffage Électrique\",\"cats-allowed\",{\"_250\":368,\"_252\":369},\"Cats Allowed\",\"Chats autorisés\",\"blinds\",{\"_250\":373,\"_252\":374},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_250\":377,\"_252\":378},\"Water Tank\",\"Réservoir d'eau\",\"washer-dryer-outlet\",{\"_250\":382,\"_252\":383},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"central-air-conditioning\",{\"_250\":386,\"_252\":387},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_250\":390,\"_252\":391},\"Dishwasher\",\"Lave-vaisselle\",\"water\",{\"_250\":395,\"_252\":396},\"lucide:droplet\",\"Water\",\"Eau\",\"parking\",{\"_250\":399,\"_252\":400},\"Parking\",\"Stationnement\",4,-1,2063,3050,\"address\",{\"_465\":482,\"_453\":200,\"_483\":11,\"_484\":485,\"_486\":487,\"_488\":470,\"_489\":456,\"_459\":467,\"_490\":491},\"analytics\",{\"_476\":477,\"_478\":479,\"_480\":481},{\"_472\":473,\"_474\":475},\"contact\",{\"_439\":440,\"_441\":442,\"_405\":443},\"customDomains\",[432,433],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_429\":13,\"_430\":29,\"_431\":13},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",\"showUnitAvailability\",{\"_434\":438},{\"_434\":435,\"_436\":437},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_444\":445,\"_446\":447,\"_448\":11,\"_449\":450,\"_451\":452,\"_453\":454,\"_455\":456,\"_457\":458,\"_459\":460,\"_461\":462,\"_463\":464,\"_465\":11},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_466\":200,\"_468\":200},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_466\":470,\"_468\":471},\"country\",{\"_466\":467,\"_468\":469},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",\"lang\",{\"_86\":520,\"_245\":423,\"_521\":522,\"_427\":428,\"_414\":415,\"_61\":409,\"_523\":524,\"_405\":406,\"_410\":411,\"_41\":525,\"_526\":527,\"_528\":529,\"_530\":531,\"_420\":421,\"_532\":533,\"_534\":535,\"_422\":-5,\"_536\":-5,\"_426\":-5,\"_424\":425,\"_412\":413,\"_537\":-5,\"_538\":-5,\"_34\":35,\"_539\":540,\"_541\":542,\"_543\":544,\"_248\":419,\"_545\":546,\"_416\":-7,\"_547\":548,\"_417\":549,\"_550\":551,\"_552\":553,\"_407\":554,\"_39\":555,\"_556\":557,\"_558\":559},\"toast\",\"user\",{\"_505\":13,\"_506\":-5,\"_507\":-5,\"_508\":-5,\"_509\":-5,\"_510\":-5,\"_511\":-5,\"_512\":-5,\"_513\":-5,\"_514\":-5,\"_439\":-5,\"_441\":-5,\"_515\":-5,\"_516\":13,\"_517\":13,\"_518\":-5,\"_519\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isStaff\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_248\":643},\"social\",{\"_640\":641,\"_642\":11},{\"_129\":130,\"_131\":132,\"_133\":134,\"_135\":136,\"_137\":134,\"_138\":134,\"_139\":140,\"_141\":142},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_637\":599,\"_72\":29,\"_638\":13,\"_639\":594},\"plan\",{\"_182\":618,\"_619\":11,\"_620\":621,\"_622\":623,\"_624\":625,\"_626\":627,\"_628\":31,\"_629\":630,\"_631\":31,\"_632\":633,\"_634\":201,\"_635\":636},\"metadata\",{\"_407\":554},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_611\":612,\"_526\":527,\"_613\":614,\"_420\":421,\"_615\":616,\"_444\":617},\"bucket\",{\"_608\":423,\"_609\":610},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_497\":605,\"_606\":607},\"tosHistory\",[594],{\"_568\":29,\"_569\":-7,\"_430\":29,\"_570\":13,\"_571\":13,\"_572\":29,\"_573\":29,\"_574\":13,\"_575\":13,\"_576\":-7,\"_577\":13,\"_578\":13,\"_579\":13,\"_580\":581,\"_582\":13,\"_52\":13,\"_583\":-7,\"_584\":-7,\"_585\":-7,\"_586\":13,\"_429\":13,\"_587\":13,\"_431\":13,\"_588\":589,\"_590\":29,\"_591\":13,\"_592\":13,\"_593\":13},\"disabledModules\",[],\"banner\",{\"_250\":566,\"_252\":567},{\"_478\":479,\"_564\":565,\"_476\":477,\"_480\":481},[129],\"payments\",{\"_560\":29,\"_561\":29,\"_562\":13,\"_563\":13},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_595\":596,\"_597\":598,\"_558\":599,\"_72\":29,\"_70\":600,\"_601\":602,\"_603\":604},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_644\":645},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
added tests/fixtures/halfred/27ea189a64dd09a37678.html +1047 −0
@@ -0,0 +1,1047 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png?width=1024&amp;height=1280&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/898855af-f8eb-4d68-9422-924d9feb14e1/kp-1-200918-026.webp?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/2f5ab2fb-cb68-41d4-8f74-2343a402d6c8/kp-1-200918-020.jpg?width=232&amp;height=168&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 90 Rue Du Campagnard, Gatineau</title><meta name="description" content="🔥 Superbe logement style condo à louer! 🔥 Découvrez ce magnifique logement de style condo situé dans un quartier résidentiel calme et recherché, parfait ..."/><meta property="og:title" content="Halfred | Apartment rentals | 90 Rue Du Campagnard, Gatineau"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="🔥 Superbe logement style condo à louer! 🔥 Découvrez ce magnifique logement de style condo situé dans un quartier résidentiel calme et recherché, parfait ..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png"/><meta property="og:url" content="https://www.halfred.ca/fr/listings/90-rue-du-campagnard/details"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/90-rue-du-campagnard/details"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/90-rue-du-campagnard/details"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/90-rue-du-campagnard/details"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/90-rue-du-campagnard/details"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/listing-detail.page-Bodk8trl.js"/><link rel="modulepreload" href="/assets/detail-error-boundary-C3TWahqB.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="ef7590aac25057f5f01f55ba10fd0845-6dfbe74fd7d2f3d2-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=ef7590aac25057f5f01f55ba10fd0845,sentry-org_id=476518,sentry-transaction=GET%20%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.30335577451220397,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="max-lg:hidden order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex"><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Retour à la liste</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="px-3.5" data-sentry-component="EditorialDetailsPage" data-sentry-source-file="details.tsx"><main class="mx-auto max-w-[1320px] px-1 pb-10 pt-3 sm:px-[clamp(20px,4.5vw,64px)] sm:pb-[clamp(48px,5.5vw,84px)] sm:pt-[clamp(24px,3.2vw,44px)]"><div class="flex flex-wrap items-start gap-x-[clamp(40px,5vw,72px)] gap-y-7 sm:gap-y-14 lg:flex-nowrap"><div class="order-2 min-w-0 max-w-[660px] flex-[1_1_440px] lg:order-1"><div data-ed-rise="true" class="ed-kicker mb-2 sm:mb-3">Templeton · Gatineau</div><h1 class="ed-serif m-0 mb-5 overflow-hidden pb-[0.05em] text-[length:var(--ed-text-h1)] font-medium leading-[1.12] tracking-[-0.012em] text-[var(--ed-ink)] sm:mb-6"><span data-ed-mask="true" class="block">90 Rue Du Campagnard</span></h1><div data-ed-rise="4" class="mb-8 sm:mb-10" id="details-cta"><div data-sentry-component="ConversionRail" data-sentry-source-file="conversion-rail.tsx"><div class="flex flex-col items-stretch gap-2.5 sm:flex-row sm:flex-wrap sm:items-center sm:gap-3"><a href="#units" class="inline-flex w-full min-h-12 items-center justify-center gap-2.5 rounded-full bg-[var(--ed-ink)] px-7 py-1 shadow-[0_8px_20px_rgba(26,26,23,0.16)] transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto"><span class="text-[14px] font-semibold leading-snug text-white"><span class="whitespace-nowrap">Postuler en ligne</span></span><span></span></a><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div></div></div><div data-ed-rise="5"><div data-sentry-component="HomeTypeRows" data-sentry-source-file="home-types.tsx"><div class="ed-kicker mb-2 text-[10.5px] tracking-[0.13em]">Logements disponibles</div><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">1 chambre</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">2 disponibles</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,188<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a></div></div><div data-ed-rise="9" class="mt-8 sm:mt-10"><div class="text-[length:var(--ed-text-copy)] leading-[var(--ed-copy-leading)] text-[var(--ed-body)] [&amp;_p:empty]:hidden [&amp;_p:has(&gt;br:only-child)]:hidden line-clamp-4"><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Beautiful Condo-Style Apartment for Rent!</strong> 🔥</p><p>Discover this beautiful condo-style apartment located in a peaceful and desirable residential neighborhood, perfect for anyone looking for comfort, tranquility, and easy access to essential services.</p><p>📍 <strong>Prime location:</strong><br>🛍️ Close to grocery stores, restaurants, banks, pharmacies, and more<br>🚌 Easy access to transportation and everyday conveniences</p><p>🏡 <strong>What this unit offers:</strong><br>❄️ Air conditioning<br>🧺 Washer/dryer hookups<br>🌬️ Air exchanger<br>🏠 Modern ceramic flooring<br>🚗 1 outdoor parking space included<br>✨ Bright and comfortable living space</p><p>💡 <strong>Why you’ll love it:</strong><br>Enjoy a peaceful environment while staying close to everything you need for everyday living.</p><p>📌 <strong>Important details:</strong><br>🚭 Non-smoking unit<br>❌ 🐶 No dogs allowed<br>⚡ Not heated / not electricity included<br>📜 Credit check required<br>📆 Minimum 12-month lease</p><p>📞 Contact <strong>Halfred</strong> today at <strong>819-593-3304</strong> for more information or to schedule your visit!</p></div></div></div></div></div><!--$?--><template id="B:0"></template><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Dishwasher</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Cats Allowed</span></div><!--/$--><div data-ed-rise="9" class="mt-6 sm:mt-8"><div data-sentry-component="ContactPanel" data-sentry-source-file="conversion-rail.tsx"><div class="rounded-[18px] border border-[var(--ed-hairline)] bg-[var(--ed-card-alt)] p-4 sm:p-5" data-sentry-component="ContactActions" data-sentry-source-file="conversion-rail.tsx"><div class="mb-4 flex items-center gap-3"><span class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-chip)] text-[13px] font-semibold tracking-[0.02em] text-[var(--ed-strong)]">H|</span><span class="min-w-0"><span class="block truncate text-[15px] font-semibold text-[var(--ed-ink)]">Halfred | Apartment rentals</span><span class="block text-[12.5px] text-[var(--ed-secondary)]">Gestionnaire immobilier</span></span></div><div class="flex flex-wrap gap-2"><a href="mailto:info@halfred.ca" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full bg-[var(--ed-ink)] px-4 text-[13.5px] font-medium text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto sm:flex-1"><span></span>Message</a><a href="tel:(819) 593-3304" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[13.5px] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)] sm:w-auto sm:flex-1"><span></span><span class="truncate">Appeler (819) 593-3304</span></a></div><form class="mt-2.5 flex items-center gap-2" data-sentry-component="QuickQuestion" data-sentry-source-file="conversion-rail.tsx"><input type="text" placeholder="Or ask a quick question…" class="h-10 min-w-0 flex-1 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[16px] text-[var(--ed-ink)] outline-none transition-colors placeholder:text-[var(--ed-tertiary)] focus:border-[var(--ed-ink)] sm:text-[13.5px]" value=""/><button type="submit" aria-label="Send your question" class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form></div><div class="mt-6 border-t border-[var(--ed-hairline)]" data-sentry-component="FeesDisclosure" data-sentry-source-file="conversion-rail.tsx"><button type="button" aria-expanded="false" class="flex w-full items-center justify-between gap-3 py-3.5 text-left"><span class="text-[15px] font-medium text-[var(--ed-ink)]">Frais et politiques</span><span></span></button></div></div></div><div data-ed-rise="10" id="amenities" class="mt-8 scroll-mt-[calc(var(--ed-header-h,0px)+16px)] sm:mt-10"><div class="ed-kicker mb-5">Commodités</div><div class="grid grid-cols-1 gap-x-8 gap-y-3 text-[15px] text-[var(--ed-strong)] sm:grid-cols-2 sm:gap-y-4 sm:text-[15.5px]"><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Parking</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Dishwasher</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Cats Allowed</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Central Air Conditioning</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Washer/Dryer Outlet</div></div></div></div><div class="order-1 min-w-0 flex-[1.15_1_480px] lg:sticky lg:top-[92px] lg:order-2 lg:self-start" data-sentry-component="GalleryCollage" data-sentry-source-file="gallery-collage.tsx"><div class="-mx-[1.125rem] flex snap-x snap-mandatory gap-3 overflow-x-auto px-[1.125rem] pb-1 sm:hidden"><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-full" href="/fr/listings/90-rue-du-campagnard/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png?width=800&amp;height=520&amp;quality=80" alt="90 Rue Du Campagnard" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="hidden sm:block"><a data-ed-img="true" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[20px]" style="aspect-ratio:4/5" data-sentry-element="RemixLink" data-sentry-source-file="gallery-collage.tsx" href="/fr/listings/90-rue-du-campagnard/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png?width=1024&amp;height=1280&amp;quality=80" alt="90 Rue Du Campagnard" data-ed-imgzoom="true" class="absolute inset-0 h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/><div class="absolute bottom-3.5 right-3.5 flex items-center gap-2 rounded-full bg-[rgba(26,26,23,0.78)] px-3.5 py-2"><span></span><span class="text-[13px] font-semibold text-white">1 photo</span></div></a></div></div></div><div id="units" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t pt-[var(--ed-section-pad)] border-[var(--ed-hairline)]"><div data-ed-reveal="true" class="flex flex-wrap items-baseline justify-between gap-x-4 gap-y-0.5 sm:flex-nowrap sm:items-end mb-2"><h2 tabindex="-1" class="ed-serif m-0 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] outline-none">Choisissez votre unité</h2><span class="whitespace-nowrap text-[14.5px] text-[var(--ed-secondary)]">2 sur 2 disponibles</span></div><div class="mb-5 text-[length:var(--ed-text-lede)] text-[var(--ed-secondary)] sm:mb-7">Sélectionnez le logement souhaité, puis cliquez sur Postuler sur sa ligne.</div><div class="mb-5 sm:mb-7"><div class="flex flex-col gap-2 sm:flex-row sm:flex-wrap sm:items-center" data-sentry-component="UnitsToolbar" data-sentry-source-file="units-toolbar.tsx"><label class="flex h-10 w-full items-center gap-2 rounded-full border border-[var(--ed-border)] bg-white pl-3.5 pr-3 transition-colors focus-within:border-[var(--ed-ink)] sm:h-9 sm:w-auto sm:min-w-[190px] sm:max-w-[260px] sm:flex-none"><span></span><input type="search" placeholder="Search homes" class="w-full min-w-0 bg-transparent text-[16px] text-[var(--ed-ink)] outline-none placeholder:text-[var(--ed-tertiary)] sm:text-[13.5px]" value=""/></label><div class="ed-scroll-rail -mx-[1.125rem] flex items-center gap-2 overflow-x-auto px-[1.125rem] sm:contents"><button type="button" data-type-chip="all" aria-pressed="true" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-transparent bg-[var(--ed-ink)] font-medium text-white">Tous les types</button><button type="button" data-type-chip="bed-1" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">1 chambre<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">2</span></button><button type="button" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Disponible maintenant</button><span class="inline-flex shrink-0 items-center gap-1.5" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Dates d&#x27;emménagement</button></span></div></div></div><div class="flex flex-col gap-6 sm:gap-8" data-sentry-component="UnitGroupsSection" data-sentry-source-file="unit-groups.tsx"><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2 sm:mb-3"><span class="ed-serif text-[var(--ed-ink)] text-[length:var(--ed-text-h3)]">1 chambre</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-thumb-w:68px] hover:bg-[var(--ed-hover-fill)] sm:px-4 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[58px] rounded-[12px] sm:h-[62px] block" href="/fr/listings/90-rue-du-campagnard/details/gallery?unit=898855af-f8eb-4d68-9422-924d9feb14e1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/898855af-f8eb-4d68-9422-924d9feb14e1/kp-1-200918-026.webp?width=232&amp;height=168&amp;quality=80" alt="4" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">6 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">4</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>600 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 6 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->3</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,295</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,188</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div><a class="ed-unit-chev inline-flex h-10 items-center gap-1.5 whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-4 text-[13.5px] font-semibold text-[var(--ed-ink)] transition-colors hover:bg-[var(--ed-ink)] hover:text-white sm:h-9" href="/fr/listings/898855af-f8eb-4d68-9422-924d9feb14e1/apply/personal" data-discover="true">Postuler<span></span></a></div><div aria-hidden="true" class="h-px bg-[var(--ed-hairline-soft)]"></div><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-thumb-w:68px] hover:bg-[var(--ed-hover-fill)] sm:px-4 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[58px] rounded-[12px] sm:h-[62px] block" href="/fr/listings/90-rue-du-campagnard/details/gallery?unit=2f5ab2fb-cb68-41d4-8f74-2343a402d6c8" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/2f5ab2fb-cb68-41d4-8f74-2343a402d6c8/kp-1-200918-020.jpg?width=232&amp;height=168&amp;quality=80" alt="1" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">6 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">1</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>600 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 6 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->3</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,295</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,188</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div><a class="ed-unit-chev inline-flex h-10 items-center gap-1.5 whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-4 text-[13.5px] font-semibold text-[var(--ed-ink)] transition-colors hover:bg-[var(--ed-ink)] hover:text-white sm:h-9" href="/fr/listings/2f5ab2fb-cb68-41d4-8f74-2343a402d6c8/apply/personal" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div id="location" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t border-[var(--ed-hairline)] pt-[var(--ed-section-pad)]"><h2 data-ed-reveal="true" class="ed-serif m-0 mb-6 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] sm:mb-8">Emplacement</h2><div class="flex flex-wrap items-stretch gap-6 sm:gap-9"><!--$?--><template id="B:1"></template><!--/$--><div data-ed-reveal="true" class="relative min-h-[260px] flex-1 basis-[420px] overflow-hidden rounded-[18px] border border-[var(--ed-hairline)] bg-[#efede6] sm:min-h-[320px]" data-sentry-component="EditorialMap" data-sentry-source-file="location.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div aria-hidden="true" class="absolute left-1/2 top-[48%] -translate-x-1/2 -translate-y-full"><svg width="40" height="40" viewBox="0 0 24 24" fill="#1A1A17" stroke="#fff" stroke-width="1.4" role="presentation" data-sentry-element="svg" data-sentry-component="InkPin" data-sentry-source-file="location.tsx"><path d="M12 22s-7-7.2-7-12a7 7 0 1 1 14 0c0 4.8-7 12-7 12z" data-sentry-element="path" data-sentry-source-file="location.tsx"></path><circle cx="12" cy="10" r="2.4" fill="#fff" stroke="none" data-sentry-element="circle" data-sentry-source-file="location.tsx"></circle></svg></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div class="ed-caption ed-caption-on-map pointer-events-none absolute bottom-3.5 left-4 rounded-full bg-white/85 px-3 py-1.5 backdrop-blur-[2px]">TEMPLETON, GATINEAU</div></div></div><a href="https://www.google.com/maps/dir/?api=1&amp;destination=45.502454,-75.5903" target="_blank" rel="noopener noreferrer" class="mt-2.5 inline-block py-2.5 text-[14.5px] text-[var(--ed-secondary)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink)] sm:mt-5 sm:py-0" data-sentry-component="EditorialDirectionsLink" data-sentry-source-file="location.tsx">Obtenir l&#x27;itinéraire<!-- --> ↗</a></div></main><div aria-hidden="true" class="sticky bottom-[calc(var(--footer-height)+env(safe-area-inset-bottom))] z-40 -mx-3.5 border-t border-[var(--ed-band-line)] bg-white px-3.5 transition-[transform,visibility] duration-300 lg:bottom-0 pointer-events-none invisible translate-y-[110%]" data-sentry-component="DetailsActionBar" data-sentry-source-file="action-bar.tsx"><div class="mx-auto flex h-[var(--ed-action-bar-height)] max-w-[1320px] items-center justify-between gap-3 px-1 sm:gap-4 sm:px-[clamp(20px,4.5vw,64px)]"><div class="min-w-0 overflow-hidden"><div class="truncate"><span class="text-[16px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[18px] lg:text-[19px]">À partir de $1,188</span><span class="hidden text-[13px] text-[var(--ed-secondary)] sm:inline"> <!-- -->/ mois</span></div></div><div class="flex shrink-0 items-center gap-5"><div class="hidden lg:block"><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div><a href="#units" class="inline-flex h-11 shrink-0 items-center gap-2 whitespace-nowrap rounded-full bg-[var(--ed-ink)] px-4 text-[14px] font-semibold text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:gap-2.5 sm:px-6 sm:text-[14.5px]"><span class="sm:hidden">Postuler</span><span class="hidden sm:inline">Postulez et réservez votre logement en ligne</span><span></span></a></div></div></div><div aria-hidden="true" data-testid="units-spotlight-scrim" class="fixed inset-0 z-[45] bg-[rgba(26,26,23,0.35)] transition-opacity duration-300 motion-reduce:transition-none pointer-events-none opacity-0" data-sentry-component="UnitsSpotlightScrim" data-sentry-source-file="units-spotlight.tsx"></div></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/listing-detail.page-Bodk8trl.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",
323 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
324 + "/assets/index-DGzYOEP8.js",
325 + "/assets/Item-DuavYi1u.js",
326 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
327 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
328 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
329 + "/assets/useControlledState-C6ovzWeF.js",
330 + "/assets/useField-CBKMx-DQ.js",
331 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
332 + "/assets/chunk-M3MASYO7-COH9P04M.js",
333 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
334 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
335 + "/assets/useToggleState-DY8z2i0t.js",
336 + "/assets/index-BzZ-MzUq.js",
337 + "/assets/useToggle-QKKEqo_x.js",
338 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
339 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
340 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
341 + "/assets/use-tenant-wE0zDJ1a.js",
342 + "/assets/use-debounce-D23YJQRM.js",
343 + "/assets/use-debounced-callback-Do1iUmMt.js",
344 + "/assets/locale-switcher-kD-MOI9x.js",
345 + "/assets/use-show-profile-modal-Cgfts1ut.js",
346 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
347 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
348 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
349 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
350 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
351 + "/assets/getItemCount-BQolBIkZ.js",
352 + "/assets/useSelectableItem-Ds0Ihirs.js",
353 + "/assets/useDescription-DF6TDnVi.js",
354 + "/assets/index-D8QbWu84.js",
355 + "/assets/useMenuTriggerState-CHKcWOlC.js",
356 + "/assets/useMenuTrigger-DKFjnCNZ.js",
357 + "/assets/show-BOEsnqQk.js",
358 + "/assets/index-BxwHZyk5.js",
359 + "/assets/use-screenshot-mode-RoZeXH-d.js",
360 + "/assets/storage-image-BRiFwsnF.js",
361 + "/assets/debug-build-VZlf1Aof.js",
362 + "/assets/empty-image-DeSmMdF3.js",
363 + "/assets/storage-JzkTKPy4.js",
364 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
365 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
366 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
367 + "/assets/use-auth-D_t8q_v4.js",
368 + "/assets/OtpInput-CJhAm1Gc.js",
369 + "/assets/roles-Cde3N6LE.js",
370 + "/assets/chunk-T45N425O-CCF24x8B.js",
371 + "/assets/index-CwlnhZHs.js",
372 + "/assets/tooltip-_QqyKTfK.js",
373 + "/assets/eversa-logo-DmkjJgjq.js",
374 + "/assets/exports-mapbox-Dy-MMXYe.js",
375 + "/assets/client-CpT78rmL.js",
376 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
377 + "/assets/useProgressBar-DhWwJb16.js",
378 + "/assets/index-Cy2bmlj7.js",
379 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
380 + "/assets/std-cron-C0Hf3jWh.js",
381 + "/assets/legacy-date-D-X4tG6T.js",
382 + "/assets/use-is-iframe-DIKEri2l.js",
383 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
384 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
385 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
386 + "/assets/link-CrZmIZC6.js",
387 + "/assets/rich-text-display--Qas76Hg.js",
388 + "/assets/utils-D0p-v41w.js",
389 + "/assets/signature-block-8SMePIUg.js",
390 + "/assets/index-DqzG1Q9x.js",
391 + "/assets/client-only-BGvaz0Jn.js",
392 + "/assets/use-hydrated-nn_6IPIK.js",
393 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
394 + "/assets/settings.types-CTRD0B_j.js",
395 + "/assets/input-CkQmsiJb.js",
396 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
397 + "/assets/extends-BSSSaanF.js",
398 + "/assets/user-menu-BuoWMPG0.js",
399 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
400 + "/assets/index-CRabYQb-.js",
401 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
402 + "/assets/Section-CaP3oBph.js",
403 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
404 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
405 + "/assets/LiveAnnouncer-CnNJa9NI.js",
406 + "/assets/useUpdateEffect-DsCDOPa2.js",
407 + "/assets/index-BT5H2sjL.js",
408 + "/assets/features-animation-BCPmlPPs.js",
409 + "/assets/index-8boKsGvQ.js",
410 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
411 + "/assets/use-server-command-DJ0CxbuT.js",
412 + "/assets/create-rpc-stub-SmqOCk37.js",
413 + "/assets/index-BoeY4VQ9.js",
414 + "/assets/app-form-CRPZmLNY.js",
415 + "/assets/button-KaTnxiWj.js",
416 + "/assets/spinner-DDyy7LQF.js",
417 + "/assets/zod-CmeTJI5u.js",
418 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
419 + "/assets/form-hidden-input-DI5aJPYE.js",
420 + "/assets/form-input-C6s4itpV.js",
421 + "/assets/system-preferences-DL4TO29S.js",
422 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
423 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
424 + "/assets/use-in-view-BNnh4L6M.js",
425 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js",
426 + "/assets/should-revalidate-for-modal-BjoLrI2F.js"
427 + ],
428 + "css": [
429 + "/assets/rich-text-editor-D9Rskyfk.css#",
430 + "/assets/listing-card-CI-uxcFh.css"
431 + ]
432 + },
433 + "PublicListingDetailPage": {
434 + "id": "PublicListingDetailPage",
435 + "parentId": "PublicListingsLayoutPage",
436 + "path": ":slug/details",
437 + "hasAction": false,
438 + "hasLoader": true,
439 + "hasClientAction": false,
440 + "hasClientLoader": false,
441 + "hasClientMiddleware": false,
442 + "hasDefaultExport": true,
443 + "hasErrorBoundary": true,
444 + "module": "/assets/listing-detail.page-Bodk8trl.js",
445 + "imports": [
446 + "/assets/chunk-QUQL4437-m7Whu12z.js",
447 + "/assets/jsx-runtime-umhk6iWe.js",
448 + "/assets/runtime-MtUT-9pW.js",
449 + "/assets/instance-Dwq5XJYG.js",
450 + "/assets/locale-rlhQ6FjN.js",
451 + "/assets/i18n-CTdcZBaW.js",
452 + "/assets/use-localized-path-BMxKZwMg.js",
453 + "/assets/detail-error-boundary-C3TWahqB.js",
454 + "/assets/seo.helpers-rKbdQkhM.js",
455 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
456 + "/assets/listing-card-Cg3TPyWe.js",
457 + "/assets/types-BKXG3Vd5.js",
458 + "/assets/date-C7fQmg2U.js",
459 + "/assets/format-BKStloXP.js",
460 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
461 + "/assets/formatDistanceToNow-BvwR-I5H.js",
462 + "/assets/paths-CiQnXl4X.js",
463 + "/assets/use-tenant-wE0zDJ1a.js",
464 + "/assets/icon-D77RBjQx.js",
465 + "/assets/index-blsAimsU.js",
466 + "/assets/chunk-T45N425O-CCF24x8B.js",
467 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
468 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
469 + "/assets/preload-helper-Cer9inx8.js",
470 + "/assets/index-DmhvH8SD.js",
471 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
472 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
473 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
474 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
475 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
476 + "/assets/runtime-TD3m583z.js",
477 + "/assets/exports-mapbox-Dy-MMXYe.js",
478 + "/assets/index-DJnVLKJF.js",
479 + "/assets/use-locale-BnwvbFV-.js",
480 + "/assets/show-BOEsnqQk.js",
481 + "/assets/client-CpT78rmL.js",
482 + "/assets/index-CXP4lC37.js",
483 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
484 + "/assets/useProgressBar-DhWwJb16.js",
485 + "/assets/number-lhSI2oqU.js",
486 + "/assets/useLabel-FzyH2LZi.js",
487 + "/assets/useLabels-BL4rQGMb.js",
488 + "/assets/useNumberFormatter-DG2VO0C1.js",
489 + "/assets/context-C7uvIu_A.js",
490 + "/assets/NumberFormatter-BWU_gJyt.js",
491 + "/assets/index-Cy2bmlj7.js",
492 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
493 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
494 + "/assets/mergeRefs-C8xtGVp3.js",
495 + "/assets/useControlledState-Dl_rDvO0.js",
496 + "/assets/FocusScope-CWuTxhav.js",
497 + "/assets/useField-CBKMx-DQ.js",
498 + "/assets/useFormValidation-BlL8vXtt.js",
499 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
500 + "/assets/std-cron-C0Hf3jWh.js",
501 + "/assets/legacy-date-D-X4tG6T.js",
502 + "/assets/listingTypes-CkyCgPCr.js",
503 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
504 + "/assets/useButton-DZK-beuH.js",
505 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
506 + "/assets/useOverlayTriggerState-woQJgDxB.js",
507 + "/assets/index-B915wqUE.js",
508 + "/assets/accelerated-values-ClBEnI7v.js",
509 + "/assets/useTreeState-Dx1W0YuM.js",
510 + "/assets/SelectionManager-BmJrKgY4.js",
511 + "/assets/scrollIntoView-BWAA50rI.js",
512 + "/assets/isScrollable-Dnxj3NSq.js",
513 + "/assets/useSelectableList-BOP0KhmN.js",
514 + "/assets/DOMLayoutDelegate-Brany3qe.js",
515 + "/assets/useCollator-CbJkpXG2.js",
516 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
517 + "/assets/index-DGzYOEP8.js",
518 + "/assets/Item-DuavYi1u.js",
519 + "/assets/use-is-iframe-DIKEri2l.js",
520 + "/assets/floor-label-CGeBlKR2.js",
521 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
522 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
523 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
524 + "/assets/storage-image-BRiFwsnF.js",
525 + "/assets/debug-build-VZlf1Aof.js",
526 + "/assets/empty-image-DeSmMdF3.js",
527 + "/assets/storage-JzkTKPy4.js",
528 + "/assets/link-CrZmIZC6.js",
529 + "/assets/modal-BG3X61k6.js",
530 + "/assets/modal-root-haL454LR.js",
531 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
532 + "/assets/useDialog-Bh9KG6MB.js",
533 + "/assets/VisuallyHidden-D-Q2SU4O.js",
534 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
535 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
536 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
537 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
538 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
539 + "/assets/proxy-BlmPTkqy.js",
540 + "/assets/create-visual-element-Cc1-iv7S.js",
541 + "/assets/layout-CqatgvGE.js",
542 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
543 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
544 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
545 + "/assets/index-DuhTrrt1.js",
546 + "/assets/useModal-C3khzgYn.js",
547 + "/assets/index-BxwHZyk5.js",
548 + "/assets/rich-text-display--Qas76Hg.js",
549 + "/assets/utils-D0p-v41w.js",
550 + "/assets/signature-block-8SMePIUg.js",
551 + "/assets/index-DqzG1Q9x.js",
552 + "/assets/client-only-BGvaz0Jn.js",
553 + "/assets/use-hydrated-nn_6IPIK.js",
554 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
555 + "/assets/chunk-M3MASYO7-COH9P04M.js",
556 + "/assets/settings.types-CTRD0B_j.js",
557 + "/assets/use-show-profile-modal-Cgfts1ut.js",
558 + "/assets/input-CkQmsiJb.js",
559 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
560 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
561 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
562 + "/assets/useControlledState-C6ovzWeF.js",
563 + "/assets/extends-BSSSaanF.js",
564 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
565 + "/assets/use-debounce-D23YJQRM.js",
566 + "/assets/use-debounced-callback-Do1iUmMt.js",
567 + "/assets/use-auth-D_t8q_v4.js",
568 + "/assets/OtpInput-CJhAm1Gc.js",
569 + "/assets/roles-Cde3N6LE.js",
570 + "/assets/index-CwlnhZHs.js",
571 + "/assets/index-BzZ-MzUq.js",
572 + "/assets/powered-by-eversa-BF980dJS.js",
573 + "/assets/tooltip-_QqyKTfK.js",
574 + "/assets/eversa-logo-DmkjJgjq.js",
575 + "/assets/use-screenshot-mode-RoZeXH-d.js",
576 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
577 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
578 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
579 + "/assets/getItemCount-BQolBIkZ.js",
580 + "/assets/useSelectableItem-Ds0Ihirs.js",
581 + "/assets/useDescription-DF6TDnVi.js",
582 + "/assets/index-D8QbWu84.js",
583 + "/assets/useMenuTriggerState-CHKcWOlC.js",
584 + "/assets/useMenuTrigger-DKFjnCNZ.js",
585 + "/assets/user-menu-BuoWMPG0.js",
586 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
587 + "/assets/index-CRabYQb-.js",
588 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
589 + "/assets/Section-CaP3oBph.js",
590 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
591 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
592 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
593 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
594 + "/assets/LiveAnnouncer-CnNJa9NI.js",
595 + "/assets/useUpdateEffect-DsCDOPa2.js",
596 + "/assets/index-BT5H2sjL.js",
597 + "/assets/features-animation-BCPmlPPs.js",
598 + "/assets/index-8boKsGvQ.js",
599 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
600 + "/assets/use-server-command-DJ0CxbuT.js",
601 + "/assets/create-rpc-stub-SmqOCk37.js",
602 + "/assets/index-BoeY4VQ9.js",
603 + "/assets/app-form-CRPZmLNY.js",
604 + "/assets/button-KaTnxiWj.js",
605 + "/assets/spinner-DDyy7LQF.js",
606 + "/assets/zod-CmeTJI5u.js",
607 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
608 + "/assets/form-hidden-input-DI5aJPYE.js",
609 + "/assets/form-input-C6s4itpV.js",
610 + "/assets/system-preferences-DL4TO29S.js",
611 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
612 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
613 + "/assets/use-in-view-BNnh4L6M.js",
614 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
615 + ],
616 + "css": [
617 + "/assets/rich-text-editor-D9Rskyfk.css#",
618 + "/assets/listing-card-CI-uxcFh.css"
619 + ]
620 + },
621 + "PublicHomePage": {
622 + "id": "PublicHomePage",
623 + "parentId": "public-language",
624 + "path": "",
625 + "hasAction": false,
626 + "hasLoader": true,
627 + "hasClientAction": false,
628 + "hasClientLoader": false,
629 + "hasClientMiddleware": false,
630 + "hasDefaultExport": true,
631 + "hasErrorBoundary": false,
632 + "module": "/assets/home.page-CEey5s8m.js",
633 + "imports": [
634 + "/assets/chunk-QUQL4437-m7Whu12z.js",
635 + "/assets/jsx-runtime-umhk6iWe.js",
636 + "/assets/runtime-MtUT-9pW.js",
637 + "/assets/facebook-pixel-B5MxbSaJ.js",
638 + "/assets/google-analytics-D-bO2gMa.js",
639 + "/assets/lead-capture-config.helpers-DpZ6az3C.js",
640 + "/assets/global-progress-CjDASA7T.js",
641 + "/assets/header-BBMyfPB0.js",
642 + "/assets/footer-Byz07yjl.js",
643 + "/assets/listing-card-Cg3TPyWe.js",
644 + "/assets/seo.helpers-rKbdQkhM.js",
645 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
646 + "/assets/types-BKXG3Vd5.js",
647 + "/assets/index-CXP4lC37.js",
648 + "/assets/use-locale-BnwvbFV-.js",
649 + "/assets/instance-Dwq5XJYG.js",
650 + "/assets/locale-rlhQ6FjN.js",
651 + "/assets/lead-capture-layout-D9cSW77z.js",
652 + "/assets/locale-switcher-kD-MOI9x.js",
653 + "/assets/use-show-profile-modal-Cgfts1ut.js",
654 + "/assets/i18n-CTdcZBaW.js",
655 + "/assets/date-C7fQmg2U.js",
656 + "/assets/format-BKStloXP.js",
657 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
658 + "/assets/formatDistanceToNow-BvwR-I5H.js",
659 + "/assets/paths-CiQnXl4X.js",
660 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
661 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
662 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
663 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
664 + "/assets/preload-helper-Cer9inx8.js",
665 + "/assets/index-DmhvH8SD.js",
666 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
667 + "/assets/Item-DuavYi1u.js",
668 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
669 + "/assets/useDialog-Bh9KG6MB.js",
670 + "/assets/VisuallyHidden-D-Q2SU4O.js",
671 + "/assets/isScrollable-Dnxj3NSq.js",
672 + "/assets/useLabels-BL4rQGMb.js",
673 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
674 + "/assets/context-C7uvIu_A.js",
675 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
676 + "/assets/FocusScope-CWuTxhav.js",
677 + "/assets/index-DJnVLKJF.js",
678 + "/assets/useOverlayTriggerState-woQJgDxB.js",
679 + "/assets/useControlledState-Dl_rDvO0.js",
680 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
681 + "/assets/number-lhSI2oqU.js",
682 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
683 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
684 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
685 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
686 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
687 + "/assets/index-DuhTrrt1.js",
688 + "/assets/mergeRefs-C8xtGVp3.js",
689 + "/assets/getItemCount-BQolBIkZ.js",
690 + "/assets/SelectionManager-BmJrKgY4.js",
691 + "/assets/scrollIntoView-BWAA50rI.js",
692 + "/assets/useSelectableItem-Ds0Ihirs.js",
693 + "/assets/useDescription-DF6TDnVi.js",
694 + "/assets/index-D8QbWu84.js",
695 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
696 + "/assets/useSelectableList-BOP0KhmN.js",
697 + "/assets/DOMLayoutDelegate-Brany3qe.js",
698 + "/assets/useCollator-CbJkpXG2.js",
699 + "/assets/useTreeState-Dx1W0YuM.js",
700 + "/assets/useMenuTriggerState-CHKcWOlC.js",
701 + "/assets/useMenuTrigger-DKFjnCNZ.js",
702 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
703 + "/assets/index-blsAimsU.js",
704 + "/assets/storage-image-BRiFwsnF.js",
705 + "/assets/icon-D77RBjQx.js",
706 + "/assets/debug-build-VZlf1Aof.js",
707 + "/assets/empty-image-DeSmMdF3.js",
708 + "/assets/storage-JzkTKPy4.js",
709 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
710 + "/assets/use-tenant-wE0zDJ1a.js",
711 + "/assets/use-localized-path-BMxKZwMg.js",
712 + "/assets/modal-BG3X61k6.js",
713 + "/assets/runtime-TD3m583z.js",
714 + "/assets/modal-root-haL454LR.js",
715 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
716 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
717 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
718 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
719 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
720 + "/assets/proxy-BlmPTkqy.js",
721 + "/assets/create-visual-element-Cc1-iv7S.js",
722 + "/assets/accelerated-values-ClBEnI7v.js",
723 + "/assets/layout-CqatgvGE.js",
724 + "/assets/listingTypes-CkyCgPCr.js",
725 + "/assets/floor-label-CGeBlKR2.js",
726 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
727 + "/assets/useFormValidation-BlL8vXtt.js",
728 + "/assets/useLabel-FzyH2LZi.js",
729 + "/assets/useNumberFormatter-DG2VO0C1.js",
730 + "/assets/NumberFormatter-BWU_gJyt.js",
731 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
732 + "/assets/useModal-C3khzgYn.js",
733 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
734 + "/assets/useButton-DZK-beuH.js",
735 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
736 + "/assets/index-B915wqUE.js",
737 + "/assets/index-DGzYOEP8.js",
738 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
739 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
740 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
741 + "/assets/useControlledState-C6ovzWeF.js",
742 + "/assets/useField-CBKMx-DQ.js",
743 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
744 + "/assets/chunk-M3MASYO7-COH9P04M.js",
745 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
746 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
747 + "/assets/useToggleState-DY8z2i0t.js",
748 + "/assets/index-BzZ-MzUq.js",
749 + "/assets/useToggle-QKKEqo_x.js",
750 + "/assets/use-debounce-D23YJQRM.js",
751 + "/assets/use-debounced-callback-Do1iUmMt.js",
752 + "/assets/show-BOEsnqQk.js",
753 + "/assets/index-BxwHZyk5.js",
754 + "/assets/use-screenshot-mode-RoZeXH-d.js",
755 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
756 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
757 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
758 + "/assets/powered-by-eversa-BF980dJS.js",
759 + "/assets/tooltip-_QqyKTfK.js",
760 + "/assets/eversa-logo-DmkjJgjq.js",
761 + "/assets/use-auth-D_t8q_v4.js",
762 + "/assets/OtpInput-CJhAm1Gc.js",
763 + "/assets/roles-Cde3N6LE.js",
764 + "/assets/chunk-T45N425O-CCF24x8B.js",
765 + "/assets/index-CwlnhZHs.js",
766 + "/assets/exports-mapbox-Dy-MMXYe.js",
767 + "/assets/client-CpT78rmL.js",
768 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
769 + "/assets/useProgressBar-DhWwJb16.js",
770 + "/assets/index-Cy2bmlj7.js",
771 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
772 + "/assets/std-cron-C0Hf3jWh.js",
773 + "/assets/legacy-date-D-X4tG6T.js",
774 + "/assets/use-is-iframe-DIKEri2l.js",
775 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
776 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
777 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
778 + "/assets/link-CrZmIZC6.js",
779 + "/assets/rich-text-display--Qas76Hg.js",
780 + "/assets/utils-D0p-v41w.js",
781 + "/assets/signature-block-8SMePIUg.js",
782 + "/assets/index-DqzG1Q9x.js",
783 + "/assets/client-only-BGvaz0Jn.js",
784 + "/assets/use-hydrated-nn_6IPIK.js",
785 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
786 + "/assets/settings.types-CTRD0B_j.js",
787 + "/assets/input-CkQmsiJb.js",
788 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
789 + "/assets/extends-BSSSaanF.js",
790 + "/assets/user-menu-BuoWMPG0.js",
791 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
792 + "/assets/index-CRabYQb-.js",
793 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
794 + "/assets/Section-CaP3oBph.js",
795 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
796 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
797 + "/assets/LiveAnnouncer-CnNJa9NI.js",
798 + "/assets/useUpdateEffect-DsCDOPa2.js",
799 + "/assets/index-BT5H2sjL.js",
800 + "/assets/features-animation-BCPmlPPs.js",
801 + "/assets/index-8boKsGvQ.js",
802 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
803 + "/assets/use-server-command-DJ0CxbuT.js",
804 + "/assets/create-rpc-stub-SmqOCk37.js",
805 + "/assets/index-BoeY4VQ9.js",
806 + "/assets/app-form-CRPZmLNY.js",
807 + "/assets/button-KaTnxiWj.js",
808 + "/assets/spinner-DDyy7LQF.js",
809 + "/assets/zod-CmeTJI5u.js",
810 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
811 + "/assets/form-hidden-input-DI5aJPYE.js",
812 + "/assets/form-input-C6s4itpV.js",
813 + "/assets/system-preferences-DL4TO29S.js",
814 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
815 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
816 + "/assets/use-in-view-BNnh4L6M.js",
817 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
818 + ],
819 + "css": [
820 + "/assets/rich-text-editor-D9Rskyfk.css#",
821 + "/assets/listing-card-CI-uxcFh.css"
822 + ]
823 + },
824 + "root.not-found": {
825 + "id": "root.not-found",
826 + "parentId": "root",
827 + "path": "*",
828 + "hasAction": false,
829 + "hasLoader": false,
830 + "hasClientAction": false,
831 + "hasClientLoader": false,
832 + "hasClientMiddleware": false,
833 + "hasDefaultExport": true,
834 + "hasErrorBoundary": false,
835 + "module": "/assets/root.not-found-D01c4GbZ.js",
836 + "imports": [
837 + "/assets/root.not-found-DP5tZm2i.js",
838 + "/assets/chunk-QUQL4437-m7Whu12z.js",
839 + "/assets/jsx-runtime-umhk6iWe.js",
840 + "/assets/icon-D77RBjQx.js",
841 + "/assets/index-blsAimsU.js",
842 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
843 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
844 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
845 + "/assets/preload-helper-Cer9inx8.js",
846 + "/assets/index-DmhvH8SD.js",
847 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
848 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
849 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
850 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
851 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js"
852 + ],
853 + "css": []
854 + },
855 + "PublicListingsIndexPage": {
856 + "id": "PublicListingsIndexPage",
857 + "parentId": "PublicListingsLayoutPage",
858 + "path": "",
859 + "hasAction": false,
860 + "hasLoader": false,
861 + "hasClientAction": false,
862 + "hasClientLoader": false,
863 + "hasClientMiddleware": false,
864 + "hasDefaultExport": true,
865 + "hasErrorBoundary": false,
866 + "module": "/assets/listings-index.page-DjplF3AX.js",
867 + "imports": [
868 + "/assets/chunk-QUQL4437-m7Whu12z.js",
869 + "/assets/jsx-runtime-umhk6iWe.js",
870 + "/assets/runtime-MtUT-9pW.js",
871 + "/assets/instance-Dwq5XJYG.js",
872 + "/assets/locale-rlhQ6FjN.js",
873 + "/assets/use-localized-path-BMxKZwMg.js",
874 + "/assets/listing-card-Cg3TPyWe.js",
875 + "/assets/types-BKXG3Vd5.js",
876 + "/assets/i18n-CTdcZBaW.js",
877 + "/assets/date-C7fQmg2U.js",
878 + "/assets/format-BKStloXP.js",
879 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
880 + "/assets/formatDistanceToNow-BvwR-I5H.js",
881 + "/assets/paths-CiQnXl4X.js",
882 + "/assets/use-tenant-wE0zDJ1a.js",
883 + "/assets/runtime-TD3m583z.js",
884 + "/assets/exports-mapbox-Dy-MMXYe.js",
885 + "/assets/index-DJnVLKJF.js",
886 + "/assets/use-locale-BnwvbFV-.js",
887 + "/assets/icon-D77RBjQx.js",
888 + "/assets/show-BOEsnqQk.js",
889 + "/assets/client-CpT78rmL.js",
890 + "/assets/index-CXP4lC37.js",
891 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
892 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
893 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
894 + "/assets/useProgressBar-DhWwJb16.js",
895 + "/assets/preload-helper-Cer9inx8.js",
896 + "/assets/index-DmhvH8SD.js",
897 + "/assets/number-lhSI2oqU.js",
898 + "/assets/useLabel-FzyH2LZi.js",
899 + "/assets/useLabels-BL4rQGMb.js",
900 + "/assets/useNumberFormatter-DG2VO0C1.js",
901 + "/assets/context-C7uvIu_A.js",
902 + "/assets/NumberFormatter-BWU_gJyt.js",
903 + "/assets/index-Cy2bmlj7.js",
904 + "/assets/index-blsAimsU.js",
905 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
906 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
907 + "/assets/mergeRefs-C8xtGVp3.js",
908 + "/assets/useControlledState-Dl_rDvO0.js",
909 + "/assets/FocusScope-CWuTxhav.js",
910 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
911 + "/assets/useField-CBKMx-DQ.js",
912 + "/assets/useFormValidation-BlL8vXtt.js",
913 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
914 + "/assets/std-cron-C0Hf3jWh.js",
915 + "/assets/legacy-date-D-X4tG6T.js",
916 + "/assets/listingTypes-CkyCgPCr.js",
917 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
918 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
919 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
920 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
921 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
922 + "/assets/useButton-DZK-beuH.js",
923 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
924 + "/assets/useOverlayTriggerState-woQJgDxB.js",
925 + "/assets/index-B915wqUE.js",
926 + "/assets/accelerated-values-ClBEnI7v.js",
927 + "/assets/useTreeState-Dx1W0YuM.js",
928 + "/assets/SelectionManager-BmJrKgY4.js",
929 + "/assets/scrollIntoView-BWAA50rI.js",
930 + "/assets/isScrollable-Dnxj3NSq.js",
931 + "/assets/useSelectableList-BOP0KhmN.js",
932 + "/assets/DOMLayoutDelegate-Brany3qe.js",
933 + "/assets/useCollator-CbJkpXG2.js",
934 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
935 + "/assets/index-DGzYOEP8.js",
936 + "/assets/Item-DuavYi1u.js",
937 + "/assets/use-is-iframe-DIKEri2l.js",
938 + "/assets/floor-label-CGeBlKR2.js",
939 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
940 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
941 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
942 + "/assets/storage-image-BRiFwsnF.js",
943 + "/assets/debug-build-VZlf1Aof.js",
944 + "/assets/empty-image-DeSmMdF3.js",
945 + "/assets/storage-JzkTKPy4.js",
946 + "/assets/link-CrZmIZC6.js",
947 + "/assets/chunk-T45N425O-CCF24x8B.js",
948 + "/assets/modal-BG3X61k6.js",
949 + "/assets/modal-root-haL454LR.js",
950 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
951 + "/assets/useDialog-Bh9KG6MB.js",
952 + "/assets/VisuallyHidden-D-Q2SU4O.js",
953 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
954 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
955 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
956 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
957 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
958 + "/assets/proxy-BlmPTkqy.js",
959 + "/assets/create-visual-element-Cc1-iv7S.js",
960 + "/assets/layout-CqatgvGE.js",
961 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
962 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
963 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
964 + "/assets/index-DuhTrrt1.js",
965 + "/assets/useModal-C3khzgYn.js",
966 + "/assets/index-BxwHZyk5.js",
967 + "/assets/rich-text-display--Qas76Hg.js",
968 + "/assets/utils-D0p-v41w.js",
969 + "/assets/signature-block-8SMePIUg.js",
970 + "/assets/index-DqzG1Q9x.js",
971 + "/assets/client-only-BGvaz0Jn.js",
972 + "/assets/use-hydrated-nn_6IPIK.js",
973 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
974 + "/assets/chunk-M3MASYO7-COH9P04M.js",
975 + "/assets/settings.types-CTRD0B_j.js",
976 + "/assets/use-show-profile-modal-Cgfts1ut.js",
977 + "/assets/input-CkQmsiJb.js",
978 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
979 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
980 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
981 + "/assets/useControlledState-C6ovzWeF.js",
982 + "/assets/extends-BSSSaanF.js",
983 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
984 + "/assets/use-debounce-D23YJQRM.js",
985 + "/assets/use-debounced-callback-Do1iUmMt.js",
986 + "/assets/use-auth-D_t8q_v4.js",
987 + "/assets/OtpInput-CJhAm1Gc.js",
988 + "/assets/roles-Cde3N6LE.js",
989 + "/assets/index-CwlnhZHs.js",
990 + "/assets/index-BzZ-MzUq.js",
991 + "/assets/powered-by-eversa-BF980dJS.js",
992 + "/assets/tooltip-_QqyKTfK.js",
993 + "/assets/eversa-logo-DmkjJgjq.js",
994 + "/assets/use-screenshot-mode-RoZeXH-d.js",
995 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
996 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
997 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
998 + "/assets/getItemCount-BQolBIkZ.js",
999 + "/assets/useSelectableItem-Ds0Ihirs.js",
1000 + "/assets/useDescription-DF6TDnVi.js",
1001 + "/assets/index-D8QbWu84.js",
1002 + "/assets/useMenuTriggerState-CHKcWOlC.js",
1003 + "/assets/useMenuTrigger-DKFjnCNZ.js",
1004 + "/assets/user-menu-BuoWMPG0.js",
1005 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
1006 + "/assets/index-CRabYQb-.js",
1007 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
1008 + "/assets/Section-CaP3oBph.js",
1009 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
1010 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
1011 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
1012 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
1013 + "/assets/LiveAnnouncer-CnNJa9NI.js",
1014 + "/assets/useUpdateEffect-DsCDOPa2.js",
1015 + "/assets/index-BT5H2sjL.js",
1016 + "/assets/features-animation-BCPmlPPs.js",
1017 + "/assets/index-8boKsGvQ.js",
1018 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
1019 + "/assets/use-server-command-DJ0CxbuT.js",
1020 + "/assets/create-rpc-stub-SmqOCk37.js",
1021 + "/assets/index-BoeY4VQ9.js",
1022 + "/assets/app-form-CRPZmLNY.js",
1023 + "/assets/button-KaTnxiWj.js",
1024 + "/assets/spinner-DDyy7LQF.js",
1025 + "/assets/zod-CmeTJI5u.js",
1026 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
1027 + "/assets/form-hidden-input-DI5aJPYE.js",
1028 + "/assets/form-input-C6s4itpV.js",
1029 + "/assets/system-preferences-DL4TO29S.js",
1030 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
1031 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
1032 + "/assets/use-in-view-BNnh4L6M.js",
1033 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
1034 + ],
1035 + "css": [
1036 + "/assets/rich-text-editor-D9Rskyfk.css#",
1037 + "/assets/listing-card-CI-uxcFh.css"
1038 + ]
1039 + }
1040 + },
1041 + "url": "/assets/manifest-2b2cda1e.js",
1042 + "version": "2b2cda1e"
1043 +};
1044 + window.__reactRouterRouteModules = {"root":route0,"public-language":route1,"PublicListingsLayoutPage":route2,"PublicListingDetailPage":route3};
1045 +
1046 +import("/assets/entry.client-BIJa3TY3.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":-5,\"_8\":9,\"_10\":11},\"actionData\",\"errors\",\"root\",{\"_607\":-5,\"_608\":-7,\"_609\":610,\"_611\":612,\"_20\":21,\"_18\":613,\"_614\":-5,\"_615\":616,\"_253\":254,\"_617\":-5,\"_618\":-5},\"public-language\",\"PublicListingsLayoutPage\",{\"_18\":240,\"_241\":242,\"_243\":244,\"_245\":25,\"_246\":247,\"_248\":60,\"_249\":250,\"_251\":252,\"_253\":254,\"_255\":25,\"_256\":25,\"_257\":25},\"PublicListingDetailPage\",{\"_12\":13,\"_14\":15,\"_16\":17,\"_18\":19,\"_20\":21,\"_22\":23,\"_24\":25},\"listing\",{\"_46\":126,\"_127\":128,\"_96\":129,\"_130\":129,\"_84\":103,\"_131\":132,\"_133\":134,\"_115\":135,\"_118\":136,\"_116\":137,\"_36\":138,\"_139\":140,\"_141\":142,\"_143\":-5,\"_144\":-5,\"_145\":146,\"_147\":60,\"_148\":149,\"_150\":151},\"auth\",{\"_124\":60,\"_125\":25},\"walkScore\",[\"P\",17],\"tenant\",{\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":40,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"lang\",\"fr\",\"pageUrl\",\"https://www.halfred.ca/fr/listings/90-rue-du-campagnard/details\",\"noindex\",false,\"address\",{\"_96\":114,\"_84\":103,\"_115\":79,\"_116\":117,\"_118\":119,\"_120\":101,\"_121\":87,\"_90\":98,\"_122\":123},\"analytics\",{\"_108\":109,\"_110\":111,\"_112\":113},\"colors\",{\"_104\":105,\"_106\":107},\"contact\",{\"_69\":70,\"_71\":72,\"_26\":73},\"customDomains\",[62,63],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_58\":25,\"_59\":60,\"_61\":25},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{\"_54\":55,\"_56\":57},\"templateId\",\"editorial\",\"title\",\"Halfred | Apartment rentals\",\"showcase\",{},\"listingSortOrder\",\"smart\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_64\":68},{\"_64\":65,\"_66\":67},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_74\":75,\"_76\":77,\"_78\":79,\"_80\":81,\"_82\":83,\"_84\":85,\"_86\":87,\"_88\":89,\"_90\":91,\"_92\":93,\"_94\":95,\"_96\":79},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_97\":103,\"_99\":103},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_97\":101,\"_99\":102},\"country\",{\"_97\":98,\"_99\":100},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"loggedIn\",\"isStaff\",\"90-rue-du-campagnard\",\"area\",600,\"90 Rue Du Campagnard\",\"name\",\"buildingId\",\"2d0a533c-9260-4068-8808-39525511541a\",\"availabilty\",[\"D\",1788393600000],\"Templeton\",-75.5903,45.502454,{\"_214\":238,\"_21\":239},\"images\",[237],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[206,207,208,209,210,211],\"listed\",\"units\",[166,167],\"cardData\",{\"_46\":126,\"_96\":129,\"_84\":103,\"_115\":135,\"_116\":137,\"_118\":136,\"_152\":-5,\"_153\":154,\"_155\":156,\"_127\":157,\"_158\":159,\"_160\":161},\"unitId\",\"bedrooms\",[165],\"bathrooms\",[165],[128],\"price\",[164],\"availability\",[162,163],\"2025-10-01T00:00:00.000Z\",\"2026-09-03T00:00:00.000Z\",1295,1,{\"_46\":193,\"_127\":128,\"_169\":-5,\"_158\":164,\"_153\":165,\"_155\":165,\"_170\":194,\"_139\":195,\"_147\":60,\"_173\":174,\"_175\":176,\"_177\":178,\"_160\":196,\"_180\":-5,\"_181\":-5,\"_182\":197,\"_39\":198},{\"_46\":168,\"_127\":128,\"_169\":-5,\"_158\":164,\"_153\":165,\"_155\":165,\"_170\":171,\"_139\":172,\"_147\":60,\"_173\":174,\"_175\":176,\"_177\":178,\"_160\":179,\"_180\":-5,\"_181\":-5,\"_182\":183,\"_39\":184},\"2f5ab2fb-cb68-41d4-8f74-2343a402d6c8\",\"floor\",\"alias\",\"1\",[187,188,189,190,191,192],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1759276800000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_158\":185,\"_36\":186},[],1188,\"*** Promotion pour les 12 premiers mois du bail ***\",\"/storage/v1/object/public/halfred/units/2f5ab2fb-cb68-41d4-8f74-2343a402d6c8/kp-1-200918-020.jpg\",\"/storage/v1/object/public/halfred/units/2f5ab2fb-cb68-41d4-8f74-2343a402d6c8/kp-1-200918-021.jpg\",\"/storage/v1/object/public/halfred/units/2f5ab2fb-cb68-41d4-8f74-2343a402d6c8/kp-1-200918-022.jpg\",\"/storage/v1/object/public/halfred/units/2f5ab2fb-cb68-41d4-8f74-2343a402d6c8/kp-1-200918-026.jpg\",\"/storage/v1/object/public/halfred/units/2f5ab2fb-cb68-41d4-8f74-2343a402d6c8/kp-1-200918-028.jpg\",\"/storage/v1/object/public/halfred/units/2f5ab2fb-cb68-41d4-8f74-2343a402d6c8/kp-1-200918-029.jpg\",\"898855af-f8eb-4d68-9422-924d9feb14e1\",\"4\",[200,201,202,203,204,205],[\"D\",1788393600000],{\"_158\":185,\"_36\":199},[],\"*** Promotion applicable sur les 12 premiers mois ***\",\"/storage/v1/object/public/halfred/units/898855af-f8eb-4d68-9422-924d9feb14e1/kp-1-200918-026.webp\",\"/storage/v1/object/public/halfred/units/898855af-f8eb-4d68-9422-924d9feb14e1/kp-1-200918-028.webp\",\"/storage/v1/object/public/halfred/units/898855af-f8eb-4d68-9422-924d9feb14e1/kp-1-200918-029.webp\",\"/storage/v1/object/public/halfred/units/898855af-f8eb-4d68-9422-924d9feb14e1/kp-1-200918-021.webp\",\"/storage/v1/object/public/halfred/units/898855af-f8eb-4d68-9422-924d9feb14e1/kp-1-200918-020.webp\",\"/storage/v1/object/public/halfred/units/898855af-f8eb-4d68-9422-924d9feb14e1/kp-1-200918-022.webp\",{\"_97\":233,\"_41\":234},{\"_97\":229,\"_41\":230},{\"_97\":225,\"_41\":226},{\"_97\":221,\"_41\":222},{\"_97\":217,\"_41\":218},{\"_97\":212,\"_41\":213},{\"_214\":215,\"_21\":216},\"lucide:plug\",\"en\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_214\":219,\"_21\":220},\"lucide:thermometer-sun\",\"Central Air Conditioning\",\"Climatisation centrale\",{\"_214\":223,\"_21\":224},\"lucide:paw-print\",\"Cats Allowed\",\"Chats autorisés\",{\"_214\":227,\"_21\":228},\"lucide:check\",\"Dishwasher\",\"Lave-vaisselle\",{\"_214\":231,\"_21\":232},\"lucide:droplet\",\"Water\",\"Eau\",{\"_214\":235,\"_21\":236},\"lucide:car\",\"Parking\",\"Stationnement\",\"/storage/v1/object/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Beautiful Condo-Style Apartment for Rent!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover this beautiful condo-style apartment located in a peaceful and desirable residential neighborhood, perfect for anyone looking for comfort, tranquility, and easy access to essential services.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Prime location:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🛍️ Close to grocery stores, restaurants, banks, pharmacies, and more\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚌 Easy access to transportation and everyday conveniences\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What this unit offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❄️ Air conditioning\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🧺 Washer/dryer hookups\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌬️ Air exchanger\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏠 Modern ceramic flooring\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 1 outdoor parking space included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ Bright and comfortable living space\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Enjoy a peaceful environment while staying close to everything you need for everyday living.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚭 Non-smoking unit\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❌ 🐶 No dogs allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"⚡ Not heated / not electricity included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📜 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📆 Minimum 12-month lease\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" for more information or to schedule your visit!\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Superbe logement style condo à louer!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ce magnifique logement de style condo situé dans un quartier résidentiel calme et recherché, parfait pour ceux qui recherchent confort, tranquillité et proximité des services essentiels.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Emplacement idéal :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🛍️ À proximité des épiceries, restaurants, banques, pharmacies et plus encore\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚌 Accès facile aux transports et commodités essentielles\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce que vous offre le logement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❄️ Air climatisé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🧺 Prises laveuse/sécheuse\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌬️ Échangeur d’air\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏠 Planchers de céramique modernes\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 1 stationnement extérieur inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ Espace lumineux et confortable\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’aimer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Profitez d’un environnement paisible tout en restant près de tout ce dont vous avez besoin au quotidien.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚭 Logement non-fumeur\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❌ 🐶 Chiens non acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"⚡ Non chauffé / non éclairé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📜 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📆 Bail minimum de 12 mois\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour plus d’informations ou pour planifier votre visite!\\\"}]}]}\",{\"_26\":27,\"_28\":605,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":606,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"listings\",[],\"listingsByView\",{\"_600\":242,\"_601\":602,\"_603\":604},\"explodeProjects\",\"initialFilters\",{\"_158\":371,\"_372\":373,\"_374\":375,\"_127\":376,\"_169\":377,\"_378\":60,\"_155\":379,\"_153\":380,\"_381\":25,\"_382\":60,\"_383\":384,\"_385\":386},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_258\":259,\"_260\":261,\"_262\":263,\"_264\":265,\"_266\":259,\"_267\":268,\"_269\":270},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[352],\"analysisProductsPrice\",{\"_352\":353,\"_354\":355,\"_356\":357,\"_358\":359,\"_360\":361,\"_362\":363,\"_364\":365,\"_366\":365,\"_367\":368,\"_369\":363,\"_370\":361},\"notifications\",{\"_329\":330},\"form\",{\"_322\":60,\"_323\":25,\"_324\":60,\"_325\":60,\"_326\":25,\"_327\":25,\"_328\":25},\"enabledSkus\",\"submissions\",{\"_272\":273,\"_274\":275,\"_276\":277,\"_278\":279,\"_30\":280,\"_281\":-5},\"agent\",{\"_271\":25},\"hideAgentNewSubmissionBtn\",\"all\",[308,309,310,311,312,313,314,318,319,320,321],\"steps\",[308,309,310,311,312,313,314],\"badges\",[298,299,300,301,302,303],\"statuses\",[292,282,284,286,288,290,293,294,295,296,297],{\"_282\":283,\"_284\":285,\"_286\":287,\"_288\":289,\"_290\":291},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_304\":282,\"_306\":283},{\"_304\":284,\"_306\":285},{\"_304\":286,\"_306\":287},{\"_304\":288,\"_306\":289},{\"_304\":290,\"_306\":291},{\"_304\":305,\"_306\":307},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_304\":292,\"_306\":-5,\"_315\":25},{\"_304\":282,\"_306\":283,\"_315\":60,\"_316\":25,\"_317\":25},{\"_304\":284,\"_306\":285,\"_315\":60,\"_316\":25,\"_317\":25},{\"_304\":286,\"_306\":287,\"_315\":60,\"_316\":25,\"_317\":25},{\"_304\":288,\"_306\":289,\"_315\":60,\"_316\":25,\"_317\":25},{\"_304\":290,\"_306\":291,\"_315\":60,\"_316\":25,\"_317\":25},{\"_304\":293,\"_306\":-5,\"_315\":60},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_304\":294,\"_306\":-5,\"_315\":25},{\"_304\":295,\"_306\":-5,\"_315\":25},{\"_304\":296,\"_306\":-5,\"_315\":25},{\"_304\":297,\"_306\":-5,\"_315\":25},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_269\":331,\"_332\":333,\"_18\":334,\"_335\":336},[344,345,346,347,348,349,339,340,350,351],\"manager\",[],[338,339,340,341,342,343],\"admin\",[337],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"agent-submission-snoozed\",\"agent-submission-snoozed-reminder\",\"agent-submission-snoozed-expired\",\"application-deadline-reminder\",\"application-deadline-expired\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1299,\"qc_citizen_criminal_plumitif_municipal_check\",699,\"qc_citizen_rental_board_check\",799,\"on_citizen_rental_board_check\",999,\"ca_citizen_workplace_reference_verification\",1499,\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",\"qc_citizen_rental_board_extended_check\",[165,599],\"pricePerMonth\",[165,599],\"pricePerSqft\",[250,250],[250,598],[596,597],\"hasFloor\",[250,409],[250,422],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461],\"availableNeighborhoods\",[387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403],{\"_130\":427,\"_249\":165},{\"_130\":425,\"_249\":426},{\"_130\":424,\"_249\":409},{\"_130\":423,\"_249\":409},{\"_130\":421,\"_249\":422},{\"_130\":103,\"_249\":420},{\"_130\":418,\"_249\":419},{\"_130\":417,\"_249\":165},{\"_130\":416,\"_249\":409},{\"_130\":415,\"_249\":165},{\"_130\":413,\"_249\":414},{\"_130\":412,\"_249\":165},{\"_130\":410,\"_249\":411},{\"_130\":408,\"_249\":409},{\"_130\":407,\"_249\":165},{\"_130\":135,\"_249\":406},{\"_130\":404,\"_249\":405},\"Touraine\",7,14,\"Saint-Jérôme\",\"Québec\",2,\"Pointe-Gatineau\",8,\"Plateau \",\"Plateau\",30,\"plateau\",\"Old Gatineau\",\"Masson\",\"Hull\",21,37,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",20,\"angers\",{\"_46\":594,\"_130\":595,\"_41\":234},{\"_46\":589,\"_130\":590,\"_41\":591},{\"_46\":585,\"_130\":586,\"_41\":226},{\"_46\":581,\"_130\":582,\"_41\":505},{\"_46\":579,\"_130\":580,\"_41\":226},{\"_46\":577,\"_130\":578,\"_41\":218},{\"_46\":573,\"_130\":574,\"_41\":500},{\"_46\":568,\"_130\":569,\"_41\":570},{\"_46\":564,\"_130\":565,\"_41\":500},{\"_46\":559,\"_130\":560,\"_41\":561},{\"_46\":554,\"_130\":555,\"_41\":556},{\"_46\":550,\"_130\":551,\"_41\":518},{\"_46\":546,\"_130\":547,\"_41\":468},{\"_46\":542,\"_130\":543,\"_41\":218},{\"_46\":538,\"_130\":539,\"_41\":540},{\"_46\":536,\"_130\":537,\"_41\":222},{\"_46\":532,\"_130\":533,\"_41\":505},{\"_46\":528,\"_130\":529,\"_41\":468},{\"_46\":526,\"_130\":527,\"_41\":230},{\"_46\":521,\"_130\":522,\"_41\":523},{\"_46\":516,\"_130\":517,\"_41\":518},{\"_46\":512,\"_130\":513,\"_41\":226},{\"_46\":508,\"_130\":509,\"_41\":234},{\"_46\":503,\"_130\":504,\"_41\":505},{\"_46\":498,\"_130\":499,\"_41\":500},{\"_46\":496,\"_130\":497,\"_41\":213},{\"_46\":492,\"_130\":493,\"_41\":222},{\"_46\":488,\"_130\":489,\"_41\":222},{\"_46\":484,\"_130\":485,\"_41\":234},{\"_46\":480,\"_130\":481,\"_41\":218},{\"_46\":475,\"_130\":476,\"_41\":477},{\"_46\":471,\"_130\":472,\"_41\":473},{\"_46\":466,\"_130\":467,\"_41\":468},{\"_46\":462,\"_130\":463,\"_41\":226},\"counter-type\",{\"_214\":464,\"_21\":465},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_214\":469,\"_21\":470},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_214\":474,\"_21\":474},\"lucide:armchair\",\"Commodes\",\"disabled-access\",{\"_214\":478,\"_21\":479},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"gas-heating\",{\"_214\":482,\"_21\":483},\"Gas Heating\",\"Chauffage au gaz\",\"underground-garage\",{\"_214\":486,\"_21\":487},\"Underground Garage\",\"Garage souterrain\",\"small-dogs-allowed\",{\"_214\":490,\"_21\":491},\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_214\":494,\"_21\":495},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"washer-dryer-outlet\",{\"_214\":215,\"_21\":216},\"cable-internet\",{\"_214\":501,\"_21\":502},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"laundry-room\",{\"_214\":506,\"_21\":507},\"lucide:washing-machine\",\"Laundry Room\",\"Buanderie\",\"garage-parking\",{\"_214\":510,\"_21\":511},\"Garage Parking\",\"Parking garage\",\"water-tank\",{\"_214\":514,\"_21\":515},\"Water Tank\",\"Réservoir d'eau\",\"microwave\",{\"_214\":519,\"_21\":520},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"blinds\",{\"_214\":524,\"_21\":525},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water\",{\"_214\":231,\"_21\":232},\"building-terrace\",{\"_214\":530,\"_21\":531},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_214\":534,\"_21\":535},\"Dryer\",\"Sèche-linge\",\"cats-allowed\",{\"_214\":223,\"_21\":224},\"gym\",{\"_214\":541,\"_21\":541},\"lucide:dumbbell\",\"Gym\",\"electric-heating\",{\"_214\":544,\"_21\":545},\"Electric Heating\",\"Chauffage Électrique\",\"balcony\",{\"_214\":548,\"_21\":549},\"Balcony\",\"Balcon\",\"oven\",{\"_214\":552,\"_21\":553},\"Oven\",\"Four\",\"electricity\",{\"_214\":557,\"_21\":558},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"refrigerator\",{\"_214\":562,\"_21\":563},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_214\":566,\"_21\":567},\"Cable\",\"Câble\",\"stove\",{\"_214\":571,\"_21\":572},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_214\":575,\"_21\":576},\"Fiber Internet\",\"Internet fibre\",\"central-air-conditioning\",{\"_214\":219,\"_21\":220},\"dishwasher\",{\"_214\":227,\"_21\":228},\"washer\",{\"_214\":583,\"_21\":584},\"Washer\",\"Laveuse\",\"elevator\",{\"_214\":587,\"_21\":588},\"Elevator\",\"Ascenseur\",\"locker-storage-space\",{\"_214\":592,\"_21\":593},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"parking\",{\"_214\":235,\"_21\":236},-1,6,2063,3050,\"list\",\"map\",[],\"explode\",[],{\"_108\":109,\"_110\":111,\"_112\":113},{\"_58\":25,\"_59\":60,\"_61\":25},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_304\":633,\"_46\":47,\"_634\":635,\"_52\":53,\"_36\":37,\"_30\":31,\"_636\":637,\"_26\":27,\"_32\":33,\"_260\":638,\"_639\":640,\"_641\":642,\"_643\":644,\"_43\":44,\"_645\":646,\"_647\":648,\"_45\":-5,\"_649\":-5,\"_650\":-5,\"_651\":-5,\"_50\":51,\"_48\":49,\"_34\":35,\"_652\":-5,\"_653\":-5,\"_253\":254,\"_654\":655,\"_656\":657,\"_658\":659,\"_41\":42,\"_660\":661,\"_38\":-7,\"_662\":663,\"_39\":664,\"_665\":666,\"_667\":-7,\"_668\":669,\"_28\":670,\"_258\":671,\"_672\":673,\"_674\":675},\"toast\",\"user\",{\"_619\":25,\"_620\":-5,\"_621\":-5,\"_622\":-5,\"_623\":-5,\"_624\":-5,\"_625\":-5,\"_626\":-5,\"_627\":-5,\"_628\":-5,\"_69\":-5,\"_71\":-5,\"_629\":-5,\"_125\":25,\"_630\":25,\"_631\":-5,\"_632\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_41\":763},\"social\",{\"_760\":761,\"_762\":79},{\"_352\":353,\"_354\":355,\"_356\":357,\"_358\":359,\"_360\":361,\"_362\":363,\"_364\":365,\"_366\":365,\"_367\":368,\"_369\":363,\"_370\":361},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_757\":-5,\"_290\":60,\"_758\":25,\"_759\":713},\"plan\",{\"_130\":737,\"_738\":79,\"_739\":740,\"_741\":742,\"_743\":744,\"_745\":746,\"_747\":250,\"_748\":749,\"_750\":250,\"_751\":752,\"_753\":754,\"_755\":756},\"metadata\",{\"_28\":670},\"consentConditionsText\",\"consentConditionsEn\",\"consentConditionsFr\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_730\":731,\"_639\":640,\"_732\":733,\"_43\":44,\"_734\":735,\"_74\":736},\"bucket\",{\"_727\":47,\"_728\":729},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_612\":724,\"_725\":726},\"tosHistory\",[713],{\"_684\":60,\"_685\":-7,\"_59\":60,\"_686\":25,\"_687\":25,\"_688\":60,\"_689\":60,\"_690\":25,\"_691\":-7,\"_692\":25,\"_693\":-7,\"_694\":25,\"_695\":25,\"_696\":25,\"_697\":698,\"_699\":25,\"_271\":25,\"_700\":-7,\"_701\":-7,\"_702\":-7,\"_703\":25,\"_58\":25,\"_704\":25,\"_61\":25,\"_705\":706,\"_707\":60,\"_708\":25,\"_709\":25,\"_710\":25,\"_711\":25,\"_712\":25},\"disabledModules\",[],\"rolePermissions\",\"banner\",{\"_214\":682,\"_21\":683},{\"_110\":111,\"_680\":681,\"_108\":109,\"_112\":113},[352],\"payments\",{\"_676\":60,\"_677\":60,\"_678\":25,\"_679\":25},\"version\",\"prod-20260917-9ad1803\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"hasAddressVariants\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"hopemIntegrationEnabled\",\"voltixIntegrationEnabled\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_714\":715,\"_716\":717,\"_674\":718,\"_290\":60,\"_288\":719,\"_720\":721,\"_722\":723},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",39,\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_764\":765},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("P17:[{\"_767\":165,\"_768\":769,\"_36\":770,\"_771\":772,\"_773\":774,\"_775\":776,\"_777\":778,\"_779\":780,\"_781\":778,\"_782\":783,\"_784\":785,\"_786\":787,\"_788\":789},\"status\",\"walkscore\",22,\"Car-Dependent\",\"updated\",\"2026-08-22 20:22:35.730836\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/90Rue-Du-Campagnard/lat=45.502454/lng=-75.5903/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.5025,\"snapped_lon\",-75.591,\"transit\",{\"_36\":-5,\"_792\":-5,\"_791\":-5},\"bike\",{\"_36\":790,\"_791\":754},\"Somewhat Bikeable\",\"score\",\"summary\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--><!--/$--><script id="_R_">requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Walk Score®<!-- --> <!-- -->22</a><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Bike Score®<!-- --> <!-- -->39</a><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Dishwasher</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Cats Allowed</span></div></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
1047 +$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><div hidden id="S:1"><div class="flex min-w-[240px] flex-1 basis-[280px] flex-col gap-4 sm:gap-6" data-sentry-component="EditorialScores" data-sentry-source-file="location.tsx"><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Walk Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">22</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:22%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Car-Dependent</div></div><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Bike Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">39</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:39%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Somewhat Bikeable</div></div></div></div><script>$RC("B:1","S:1")</script></body></html>
\ No newline at end of file
added tests/fixtures/halfred/2f1edf46218d80ca4098.html +1047 −0
@@ -0,0 +1,1047 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png?width=1024&amp;height=1280&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/49a15415-5185-4704-ab4c-46bf84a9c665/cusine-meuble.png?width=232&amp;height=168&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 133 Rue Patenaude, Buckingham</title><meta name="description" content="🔥 Grand logement avec 3 stationnements – Rare sur le marché! 🔥 Vous recherchez de l’espace, du confort et des commodités pratiques ? Ce logement situé a..."/><meta property="og:title" content="Halfred | Apartment rentals | 133 Rue Patenaude, Buckingham"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="🔥 Grand logement avec 3 stationnements – Rare sur le marché! 🔥 Vous recherchez de l’espace, du confort et des commodités pratiques ? Ce logement situé a..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png"/><meta property="og:url" content="https://www.halfred.ca/fr/listings/133-rue-patenaude/details"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/133-rue-patenaude/details"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/133-rue-patenaude/details"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/133-rue-patenaude/details"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/133-rue-patenaude/details"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/listing-detail.page-Bodk8trl.js"/><link rel="modulepreload" href="/assets/detail-error-boundary-C3TWahqB.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="55fe73bdb6038abe2ed8659a232e4777-379153b6bcadd8d0-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=55fe73bdb6038abe2ed8659a232e4777,sentry-org_id=476518,sentry-transaction=GET%20%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.02006733828788787,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="max-lg:hidden order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex"><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Retour à la liste</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="px-3.5" data-sentry-component="EditorialDetailsPage" data-sentry-source-file="details.tsx"><main class="mx-auto max-w-[1320px] px-1 pb-10 pt-3 sm:px-[clamp(20px,4.5vw,64px)] sm:pb-[clamp(48px,5.5vw,84px)] sm:pt-[clamp(24px,3.2vw,44px)]"><div class="flex flex-wrap items-start gap-x-[clamp(40px,5vw,72px)] gap-y-7 sm:gap-y-14 lg:flex-nowrap"><div class="order-2 min-w-0 max-w-[660px] flex-[1_1_440px] lg:order-1"><div data-ed-rise="true" class="ed-kicker mb-2 sm:mb-3">Buckingham · Buckingham</div><h1 class="ed-serif m-0 mb-5 overflow-hidden pb-[0.05em] text-[length:var(--ed-text-h1)] font-medium leading-[1.12] tracking-[-0.012em] text-[var(--ed-ink)] sm:mb-6"><span data-ed-mask="true" class="block">133 Rue Patenaude</span></h1><div data-ed-rise="4" class="mb-8 sm:mb-10" id="details-cta"><div data-sentry-component="ConversionRail" data-sentry-source-file="conversion-rail.tsx"><div class="flex flex-col items-stretch gap-2.5 sm:flex-row sm:flex-wrap sm:items-center sm:gap-3"><a href="#units" class="inline-flex w-full min-h-12 items-center justify-center gap-2.5 rounded-full bg-[var(--ed-ink)] px-7 py-1 shadow-[0_8px_20px_rgba(26,26,23,0.16)] transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto"><span class="text-[14px] font-semibold leading-snug text-white"><span class="whitespace-nowrap">Postuler en ligne</span></span><span></span></a><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div></div></div><div data-ed-rise="5"><div data-sentry-component="HomeTypeRows" data-sentry-source-file="home-types.tsx"><div class="ed-kicker mb-2 text-[10.5px] tracking-[0.13em]">Logements disponibles</div><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">2 chambres</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">1 disponible</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,421<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a></div></div><div data-ed-rise="9" class="mt-8 sm:mt-10"><div class="text-[length:var(--ed-text-copy)] leading-[var(--ed-copy-leading)] text-[var(--ed-body)] [&amp;_p:empty]:hidden [&amp;_p:has(&gt;br:only-child)]:hidden line-clamp-4"><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Spacious Unit with 3 Parking Spaces – Rare Opportunity!</strong> 🔥</p><p>Looking for <strong>space, comfort, and practical features</strong>? This unit at <strong>133 Patenaude Street</strong> is perfect for anyone who wants <strong>convenience and extra room to live comfortably</strong>.</p><p>🏡 <strong>What makes this unit stand out:</strong><br>• Located on the <strong>1st floor</strong> (photos are for reference – different unit shown)<br>• Spacious and functional living area<br>• 🧺 Washer/dryer hookups in the unit<br>• 🔥💡 <strong>Heat &amp; electricity included in the rent!</strong></p><p>🚗 <strong>A major advantage:</strong><br>• <strong>3 parking spaces included</strong> – ideal for families or shared living</p><p>📦 <strong>Extra storage:</strong><br>• Storage shed included</p><p>📍 <strong>Why you’ll love it:</strong><br>A practical and hard-to-find unit offering <strong>space, comfort, and convenience</strong> in a great location.</p><p>📌 <strong>Rental conditions:</strong><br>• 🚭 Non-smoking<br>• ❌ No pets allowed<br>• 📋 Credit check required<br>• 📆 Minimum 12-month lease</p><p>📞 <strong>Don’t miss this opportunity!</strong><br>Contact <strong>Halfred</strong> today at <strong>819-593-3304</strong> to schedule your visit.</p></div></div></div></div></div><!--$?--><template id="B:0"></template><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Washer/Dryer Outlet</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water Tank</span></div><!--/$--><div data-ed-rise="9" class="mt-6 sm:mt-8"><div data-sentry-component="ContactPanel" data-sentry-source-file="conversion-rail.tsx"><div class="rounded-[18px] border border-[var(--ed-hairline)] bg-[var(--ed-card-alt)] p-4 sm:p-5" data-sentry-component="ContactActions" data-sentry-source-file="conversion-rail.tsx"><div class="mb-4 flex items-center gap-3"><span class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-chip)] text-[13px] font-semibold tracking-[0.02em] text-[var(--ed-strong)]">H|</span><span class="min-w-0"><span class="block truncate text-[15px] font-semibold text-[var(--ed-ink)]">Halfred | Apartment rentals</span><span class="block text-[12.5px] text-[var(--ed-secondary)]">Gestionnaire immobilier</span></span></div><div class="flex flex-wrap gap-2"><a href="mailto:info@halfred.ca" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full bg-[var(--ed-ink)] px-4 text-[13.5px] font-medium text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto sm:flex-1"><span></span>Message</a><a href="tel:(819) 593-3304" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[13.5px] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)] sm:w-auto sm:flex-1"><span></span><span class="truncate">Appeler (819) 593-3304</span></a></div><form class="mt-2.5 flex items-center gap-2" data-sentry-component="QuickQuestion" data-sentry-source-file="conversion-rail.tsx"><input type="text" placeholder="Or ask a quick question…" class="h-10 min-w-0 flex-1 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[16px] text-[var(--ed-ink)] outline-none transition-colors placeholder:text-[var(--ed-tertiary)] focus:border-[var(--ed-ink)] sm:text-[13.5px]" value=""/><button type="submit" aria-label="Send your question" class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form></div><div class="mt-6 border-t border-[var(--ed-hairline)]" data-sentry-component="FeesDisclosure" data-sentry-source-file="conversion-rail.tsx"><button type="button" aria-expanded="false" class="flex w-full items-center justify-between gap-3 py-3.5 text-left"><span class="text-[15px] font-medium text-[var(--ed-ink)]">Frais et politiques</span><span></span></button></div></div></div><div data-ed-rise="10" id="amenities" class="mt-8 scroll-mt-[calc(var(--ed-header-h,0px)+16px)] sm:mt-10"><div class="ed-kicker mb-5">Commodités</div><div class="grid grid-cols-1 gap-x-8 gap-y-3 text-[15px] text-[var(--ed-strong)] sm:grid-cols-2 sm:gap-y-4 sm:text-[15.5px]"><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Parking</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Washer/Dryer Outlet</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water Tank</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Electricity</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Locker/Storage Space</div></div></div></div><div class="order-1 min-w-0 flex-[1.15_1_480px] lg:sticky lg:top-[92px] lg:order-2 lg:self-start" data-sentry-component="GalleryCollage" data-sentry-source-file="gallery-collage.tsx"><div class="-mx-[1.125rem] flex snap-x snap-mandatory gap-3 overflow-x-auto px-[1.125rem] pb-1 sm:hidden"><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-full" href="/fr/listings/133-rue-patenaude/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png?width=800&amp;height=520&amp;quality=80" alt="133 Rue Patenaude" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="hidden sm:block"><a data-ed-img="true" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[20px]" style="aspect-ratio:4/5" data-sentry-element="RemixLink" data-sentry-source-file="gallery-collage.tsx" href="/fr/listings/133-rue-patenaude/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png?width=1024&amp;height=1280&amp;quality=80" alt="133 Rue Patenaude" data-ed-imgzoom="true" class="absolute inset-0 h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/><div class="absolute bottom-3.5 right-3.5 flex items-center gap-2 rounded-full bg-[rgba(26,26,23,0.78)] px-3.5 py-2"><span></span><span class="text-[13px] font-semibold text-white">1 photo</span></div></a></div></div></div><div id="units" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t pt-[var(--ed-section-pad)] border-[var(--ed-hairline)]"><div data-ed-reveal="true" class="flex flex-wrap items-baseline justify-between gap-x-4 gap-y-0.5 sm:flex-nowrap sm:items-end mb-2"><h2 tabindex="-1" class="ed-serif m-0 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] outline-none">Choisissez votre unité</h2><span class="whitespace-nowrap text-[14.5px] text-[var(--ed-secondary)]">1 sur 1 disponibles</span></div><div class="mb-5 text-[length:var(--ed-text-lede)] text-[var(--ed-secondary)] sm:mb-7">Sélectionnez le logement souhaité, puis cliquez sur Postuler sur sa ligne.</div><div class="mb-5 sm:mb-7"><div class="flex flex-col gap-2 sm:flex-row sm:flex-wrap sm:items-center" data-sentry-component="UnitsToolbar" data-sentry-source-file="units-toolbar.tsx"><label class="flex h-10 w-full items-center gap-2 rounded-full border border-[var(--ed-border)] bg-white pl-3.5 pr-3 transition-colors focus-within:border-[var(--ed-ink)] sm:h-9 sm:w-auto sm:min-w-[190px] sm:max-w-[260px] sm:flex-none"><span></span><input type="search" placeholder="Search homes" class="w-full min-w-0 bg-transparent text-[16px] text-[var(--ed-ink)] outline-none placeholder:text-[var(--ed-tertiary)] sm:text-[13.5px]" value=""/></label><div class="ed-scroll-rail -mx-[1.125rem] flex items-center gap-2 overflow-x-auto px-[1.125rem] sm:contents"><button type="button" data-type-chip="all" aria-pressed="true" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-transparent bg-[var(--ed-ink)] font-medium text-white">Tous les types</button><button type="button" data-type-chip="bed-2" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">2 chambres<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">1</span></button><button type="button" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Disponible maintenant</button><span class="inline-flex shrink-0 items-center gap-1.5" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Dates d&#x27;emménagement</button></span></div></div></div><div class="flex flex-col gap-6 sm:gap-8" data-sentry-component="UnitGroupsSection" data-sentry-source-file="unit-groups.tsx"><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2 sm:mb-3"><span class="ed-serif text-[var(--ed-ink)] text-[length:var(--ed-text-h3)]">2 chambres</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-thumb-w:68px] hover:bg-[var(--ed-hover-fill)] sm:px-4 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[58px] rounded-[12px] sm:h-[62px] block" href="/fr/listings/133-rue-patenaude/details/gallery?unit=49a15415-5185-4704-ab4c-46bf84a9c665" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/49a15415-5185-4704-ab4c-46bf84a9c665/cusine-meuble.png?width=232&amp;height=168&amp;quality=80" alt="2" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">5 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">2</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>900 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 6 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->3</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,550</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,421</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div><a class="ed-unit-chev inline-flex h-10 items-center gap-1.5 whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-4 text-[13.5px] font-semibold text-[var(--ed-ink)] transition-colors hover:bg-[var(--ed-ink)] hover:text-white sm:h-9" href="/fr/listings/49a15415-5185-4704-ab4c-46bf84a9c665/apply/personal" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div id="location" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t border-[var(--ed-hairline)] pt-[var(--ed-section-pad)]"><h2 data-ed-reveal="true" class="ed-serif m-0 mb-6 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] sm:mb-8">Emplacement</h2><div class="flex flex-wrap items-stretch gap-6 sm:gap-9"><!--$?--><template id="B:1"></template><!--/$--><div data-ed-reveal="true" class="relative min-h-[260px] flex-1 basis-[420px] overflow-hidden rounded-[18px] border border-[var(--ed-hairline)] bg-[#efede6] sm:min-h-[320px]" data-sentry-component="EditorialMap" data-sentry-source-file="location.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div aria-hidden="true" class="absolute left-1/2 top-[48%] -translate-x-1/2 -translate-y-full"><svg width="40" height="40" viewBox="0 0 24 24" fill="#1A1A17" stroke="#fff" stroke-width="1.4" role="presentation" data-sentry-element="svg" data-sentry-component="InkPin" data-sentry-source-file="location.tsx"><path d="M12 22s-7-7.2-7-12a7 7 0 1 1 14 0c0 4.8-7 12-7 12z" data-sentry-element="path" data-sentry-source-file="location.tsx"></path><circle cx="12" cy="10" r="2.4" fill="#fff" stroke="none" data-sentry-element="circle" data-sentry-source-file="location.tsx"></circle></svg></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div class="ed-caption ed-caption-on-map pointer-events-none absolute bottom-3.5 left-4 rounded-full bg-white/85 px-3 py-1.5 backdrop-blur-[2px]">BUCKINGHAM, BUCKINGHAM</div></div></div><a href="https://www.google.com/maps/dir/?api=1&amp;destination=45.573574,-75.425153" target="_blank" rel="noopener noreferrer" class="mt-2.5 inline-block py-2.5 text-[14.5px] text-[var(--ed-secondary)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink)] sm:mt-5 sm:py-0" data-sentry-component="EditorialDirectionsLink" data-sentry-source-file="location.tsx">Obtenir l&#x27;itinéraire<!-- --> ↗</a></div></main><div aria-hidden="true" class="sticky bottom-[calc(var(--footer-height)+env(safe-area-inset-bottom))] z-40 -mx-3.5 border-t border-[var(--ed-band-line)] bg-white px-3.5 transition-[transform,visibility] duration-300 lg:bottom-0 pointer-events-none invisible translate-y-[110%]" data-sentry-component="DetailsActionBar" data-sentry-source-file="action-bar.tsx"><div class="mx-auto flex h-[var(--ed-action-bar-height)] max-w-[1320px] items-center justify-between gap-3 px-1 sm:gap-4 sm:px-[clamp(20px,4.5vw,64px)]"><div class="min-w-0 overflow-hidden"><div class="truncate"><span class="text-[16px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[18px] lg:text-[19px]">À partir de $1,421</span><span class="hidden text-[13px] text-[var(--ed-secondary)] sm:inline"> <!-- -->/ mois</span></div></div><div class="flex shrink-0 items-center gap-5"><div class="hidden lg:block"><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div><a href="#units" class="inline-flex h-11 shrink-0 items-center gap-2 whitespace-nowrap rounded-full bg-[var(--ed-ink)] px-4 text-[14px] font-semibold text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:gap-2.5 sm:px-6 sm:text-[14.5px]"><span class="sm:hidden">Postuler</span><span class="hidden sm:inline">Postulez et réservez votre logement en ligne</span><span></span></a></div></div></div><div aria-hidden="true" data-testid="units-spotlight-scrim" class="fixed inset-0 z-[45] bg-[rgba(26,26,23,0.35)] transition-opacity duration-300 motion-reduce:transition-none pointer-events-none opacity-0" data-sentry-component="UnitsSpotlightScrim" data-sentry-source-file="units-spotlight.tsx"></div></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/listing-detail.page-Bodk8trl.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",
323 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
324 + "/assets/index-DGzYOEP8.js",
325 + "/assets/Item-DuavYi1u.js",
326 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
327 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
328 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
329 + "/assets/useControlledState-C6ovzWeF.js",
330 + "/assets/useField-CBKMx-DQ.js",
331 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
332 + "/assets/chunk-M3MASYO7-COH9P04M.js",
333 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
334 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
335 + "/assets/useToggleState-DY8z2i0t.js",
336 + "/assets/index-BzZ-MzUq.js",
337 + "/assets/useToggle-QKKEqo_x.js",
338 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
339 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
340 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
341 + "/assets/use-tenant-wE0zDJ1a.js",
342 + "/assets/use-debounce-D23YJQRM.js",
343 + "/assets/use-debounced-callback-Do1iUmMt.js",
344 + "/assets/locale-switcher-kD-MOI9x.js",
345 + "/assets/use-show-profile-modal-Cgfts1ut.js",
346 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
347 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
348 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
349 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
350 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
351 + "/assets/getItemCount-BQolBIkZ.js",
352 + "/assets/useSelectableItem-Ds0Ihirs.js",
353 + "/assets/useDescription-DF6TDnVi.js",
354 + "/assets/index-D8QbWu84.js",
355 + "/assets/useMenuTriggerState-CHKcWOlC.js",
356 + "/assets/useMenuTrigger-DKFjnCNZ.js",
357 + "/assets/show-BOEsnqQk.js",
358 + "/assets/index-BxwHZyk5.js",
359 + "/assets/use-screenshot-mode-RoZeXH-d.js",
360 + "/assets/storage-image-BRiFwsnF.js",
361 + "/assets/debug-build-VZlf1Aof.js",
362 + "/assets/empty-image-DeSmMdF3.js",
363 + "/assets/storage-JzkTKPy4.js",
364 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
365 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
366 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
367 + "/assets/use-auth-D_t8q_v4.js",
368 + "/assets/OtpInput-CJhAm1Gc.js",
369 + "/assets/roles-Cde3N6LE.js",
370 + "/assets/chunk-T45N425O-CCF24x8B.js",
371 + "/assets/index-CwlnhZHs.js",
372 + "/assets/tooltip-_QqyKTfK.js",
373 + "/assets/eversa-logo-DmkjJgjq.js",
374 + "/assets/exports-mapbox-Dy-MMXYe.js",
375 + "/assets/client-CpT78rmL.js",
376 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
377 + "/assets/useProgressBar-DhWwJb16.js",
378 + "/assets/index-Cy2bmlj7.js",
379 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
380 + "/assets/std-cron-C0Hf3jWh.js",
381 + "/assets/legacy-date-D-X4tG6T.js",
382 + "/assets/use-is-iframe-DIKEri2l.js",
383 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
384 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
385 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
386 + "/assets/link-CrZmIZC6.js",
387 + "/assets/rich-text-display--Qas76Hg.js",
388 + "/assets/utils-D0p-v41w.js",
389 + "/assets/signature-block-8SMePIUg.js",
390 + "/assets/index-DqzG1Q9x.js",
391 + "/assets/client-only-BGvaz0Jn.js",
392 + "/assets/use-hydrated-nn_6IPIK.js",
393 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
394 + "/assets/settings.types-CTRD0B_j.js",
395 + "/assets/input-CkQmsiJb.js",
396 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
397 + "/assets/extends-BSSSaanF.js",
398 + "/assets/user-menu-BuoWMPG0.js",
399 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
400 + "/assets/index-CRabYQb-.js",
401 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
402 + "/assets/Section-CaP3oBph.js",
403 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
404 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
405 + "/assets/LiveAnnouncer-CnNJa9NI.js",
406 + "/assets/useUpdateEffect-DsCDOPa2.js",
407 + "/assets/index-BT5H2sjL.js",
408 + "/assets/features-animation-BCPmlPPs.js",
409 + "/assets/index-8boKsGvQ.js",
410 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
411 + "/assets/use-server-command-DJ0CxbuT.js",
412 + "/assets/create-rpc-stub-SmqOCk37.js",
413 + "/assets/index-BoeY4VQ9.js",
414 + "/assets/app-form-CRPZmLNY.js",
415 + "/assets/button-KaTnxiWj.js",
416 + "/assets/spinner-DDyy7LQF.js",
417 + "/assets/zod-CmeTJI5u.js",
418 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
419 + "/assets/form-hidden-input-DI5aJPYE.js",
420 + "/assets/form-input-C6s4itpV.js",
421 + "/assets/system-preferences-DL4TO29S.js",
422 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
423 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
424 + "/assets/use-in-view-BNnh4L6M.js",
425 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js",
426 + "/assets/should-revalidate-for-modal-BjoLrI2F.js"
427 + ],
428 + "css": [
429 + "/assets/rich-text-editor-D9Rskyfk.css#",
430 + "/assets/listing-card-CI-uxcFh.css"
431 + ]
432 + },
433 + "PublicListingDetailPage": {
434 + "id": "PublicListingDetailPage",
435 + "parentId": "PublicListingsLayoutPage",
436 + "path": ":slug/details",
437 + "hasAction": false,
438 + "hasLoader": true,
439 + "hasClientAction": false,
440 + "hasClientLoader": false,
441 + "hasClientMiddleware": false,
442 + "hasDefaultExport": true,
443 + "hasErrorBoundary": true,
444 + "module": "/assets/listing-detail.page-Bodk8trl.js",
445 + "imports": [
446 + "/assets/chunk-QUQL4437-m7Whu12z.js",
447 + "/assets/jsx-runtime-umhk6iWe.js",
448 + "/assets/runtime-MtUT-9pW.js",
449 + "/assets/instance-Dwq5XJYG.js",
450 + "/assets/locale-rlhQ6FjN.js",
451 + "/assets/i18n-CTdcZBaW.js",
452 + "/assets/use-localized-path-BMxKZwMg.js",
453 + "/assets/detail-error-boundary-C3TWahqB.js",
454 + "/assets/seo.helpers-rKbdQkhM.js",
455 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
456 + "/assets/listing-card-Cg3TPyWe.js",
457 + "/assets/types-BKXG3Vd5.js",
458 + "/assets/date-C7fQmg2U.js",
459 + "/assets/format-BKStloXP.js",
460 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
461 + "/assets/formatDistanceToNow-BvwR-I5H.js",
462 + "/assets/paths-CiQnXl4X.js",
463 + "/assets/use-tenant-wE0zDJ1a.js",
464 + "/assets/icon-D77RBjQx.js",
465 + "/assets/index-blsAimsU.js",
466 + "/assets/chunk-T45N425O-CCF24x8B.js",
467 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
468 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
469 + "/assets/preload-helper-Cer9inx8.js",
470 + "/assets/index-DmhvH8SD.js",
471 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
472 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
473 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
474 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
475 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
476 + "/assets/runtime-TD3m583z.js",
477 + "/assets/exports-mapbox-Dy-MMXYe.js",
478 + "/assets/index-DJnVLKJF.js",
479 + "/assets/use-locale-BnwvbFV-.js",
480 + "/assets/show-BOEsnqQk.js",
481 + "/assets/client-CpT78rmL.js",
482 + "/assets/index-CXP4lC37.js",
483 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
484 + "/assets/useProgressBar-DhWwJb16.js",
485 + "/assets/number-lhSI2oqU.js",
486 + "/assets/useLabel-FzyH2LZi.js",
487 + "/assets/useLabels-BL4rQGMb.js",
488 + "/assets/useNumberFormatter-DG2VO0C1.js",
489 + "/assets/context-C7uvIu_A.js",
490 + "/assets/NumberFormatter-BWU_gJyt.js",
491 + "/assets/index-Cy2bmlj7.js",
492 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
493 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
494 + "/assets/mergeRefs-C8xtGVp3.js",
495 + "/assets/useControlledState-Dl_rDvO0.js",
496 + "/assets/FocusScope-CWuTxhav.js",
497 + "/assets/useField-CBKMx-DQ.js",
498 + "/assets/useFormValidation-BlL8vXtt.js",
499 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
500 + "/assets/std-cron-C0Hf3jWh.js",
501 + "/assets/legacy-date-D-X4tG6T.js",
502 + "/assets/listingTypes-CkyCgPCr.js",
503 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
504 + "/assets/useButton-DZK-beuH.js",
505 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
506 + "/assets/useOverlayTriggerState-woQJgDxB.js",
507 + "/assets/index-B915wqUE.js",
508 + "/assets/accelerated-values-ClBEnI7v.js",
509 + "/assets/useTreeState-Dx1W0YuM.js",
510 + "/assets/SelectionManager-BmJrKgY4.js",
511 + "/assets/scrollIntoView-BWAA50rI.js",
512 + "/assets/isScrollable-Dnxj3NSq.js",
513 + "/assets/useSelectableList-BOP0KhmN.js",
514 + "/assets/DOMLayoutDelegate-Brany3qe.js",
515 + "/assets/useCollator-CbJkpXG2.js",
516 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
517 + "/assets/index-DGzYOEP8.js",
518 + "/assets/Item-DuavYi1u.js",
519 + "/assets/use-is-iframe-DIKEri2l.js",
520 + "/assets/floor-label-CGeBlKR2.js",
521 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
522 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
523 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
524 + "/assets/storage-image-BRiFwsnF.js",
525 + "/assets/debug-build-VZlf1Aof.js",
526 + "/assets/empty-image-DeSmMdF3.js",
527 + "/assets/storage-JzkTKPy4.js",
528 + "/assets/link-CrZmIZC6.js",
529 + "/assets/modal-BG3X61k6.js",
530 + "/assets/modal-root-haL454LR.js",
531 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
532 + "/assets/useDialog-Bh9KG6MB.js",
533 + "/assets/VisuallyHidden-D-Q2SU4O.js",
534 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
535 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
536 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
537 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
538 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
539 + "/assets/proxy-BlmPTkqy.js",
540 + "/assets/create-visual-element-Cc1-iv7S.js",
541 + "/assets/layout-CqatgvGE.js",
542 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
543 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
544 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
545 + "/assets/index-DuhTrrt1.js",
546 + "/assets/useModal-C3khzgYn.js",
547 + "/assets/index-BxwHZyk5.js",
548 + "/assets/rich-text-display--Qas76Hg.js",
549 + "/assets/utils-D0p-v41w.js",
550 + "/assets/signature-block-8SMePIUg.js",
551 + "/assets/index-DqzG1Q9x.js",
552 + "/assets/client-only-BGvaz0Jn.js",
553 + "/assets/use-hydrated-nn_6IPIK.js",
554 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
555 + "/assets/chunk-M3MASYO7-COH9P04M.js",
556 + "/assets/settings.types-CTRD0B_j.js",
557 + "/assets/use-show-profile-modal-Cgfts1ut.js",
558 + "/assets/input-CkQmsiJb.js",
559 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
560 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
561 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
562 + "/assets/useControlledState-C6ovzWeF.js",
563 + "/assets/extends-BSSSaanF.js",
564 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
565 + "/assets/use-debounce-D23YJQRM.js",
566 + "/assets/use-debounced-callback-Do1iUmMt.js",
567 + "/assets/use-auth-D_t8q_v4.js",
568 + "/assets/OtpInput-CJhAm1Gc.js",
569 + "/assets/roles-Cde3N6LE.js",
570 + "/assets/index-CwlnhZHs.js",
571 + "/assets/index-BzZ-MzUq.js",
572 + "/assets/powered-by-eversa-BF980dJS.js",
573 + "/assets/tooltip-_QqyKTfK.js",
574 + "/assets/eversa-logo-DmkjJgjq.js",
575 + "/assets/use-screenshot-mode-RoZeXH-d.js",
576 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
577 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
578 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
579 + "/assets/getItemCount-BQolBIkZ.js",
580 + "/assets/useSelectableItem-Ds0Ihirs.js",
581 + "/assets/useDescription-DF6TDnVi.js",
582 + "/assets/index-D8QbWu84.js",
583 + "/assets/useMenuTriggerState-CHKcWOlC.js",
584 + "/assets/useMenuTrigger-DKFjnCNZ.js",
585 + "/assets/user-menu-BuoWMPG0.js",
586 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
587 + "/assets/index-CRabYQb-.js",
588 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
589 + "/assets/Section-CaP3oBph.js",
590 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
591 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
592 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
593 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
594 + "/assets/LiveAnnouncer-CnNJa9NI.js",
595 + "/assets/useUpdateEffect-DsCDOPa2.js",
596 + "/assets/index-BT5H2sjL.js",
597 + "/assets/features-animation-BCPmlPPs.js",
598 + "/assets/index-8boKsGvQ.js",
599 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
600 + "/assets/use-server-command-DJ0CxbuT.js",
601 + "/assets/create-rpc-stub-SmqOCk37.js",
602 + "/assets/index-BoeY4VQ9.js",
603 + "/assets/app-form-CRPZmLNY.js",
604 + "/assets/button-KaTnxiWj.js",
605 + "/assets/spinner-DDyy7LQF.js",
606 + "/assets/zod-CmeTJI5u.js",
607 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
608 + "/assets/form-hidden-input-DI5aJPYE.js",
609 + "/assets/form-input-C6s4itpV.js",
610 + "/assets/system-preferences-DL4TO29S.js",
611 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
612 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
613 + "/assets/use-in-view-BNnh4L6M.js",
614 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
615 + ],
616 + "css": [
617 + "/assets/rich-text-editor-D9Rskyfk.css#",
618 + "/assets/listing-card-CI-uxcFh.css"
619 + ]
620 + },
621 + "PublicHomePage": {
622 + "id": "PublicHomePage",
623 + "parentId": "public-language",
624 + "path": "",
625 + "hasAction": false,
626 + "hasLoader": true,
627 + "hasClientAction": false,
628 + "hasClientLoader": false,
629 + "hasClientMiddleware": false,
630 + "hasDefaultExport": true,
631 + "hasErrorBoundary": false,
632 + "module": "/assets/home.page-CEey5s8m.js",
633 + "imports": [
634 + "/assets/chunk-QUQL4437-m7Whu12z.js",
635 + "/assets/jsx-runtime-umhk6iWe.js",
636 + "/assets/runtime-MtUT-9pW.js",
637 + "/assets/facebook-pixel-B5MxbSaJ.js",
638 + "/assets/google-analytics-D-bO2gMa.js",
639 + "/assets/lead-capture-config.helpers-DpZ6az3C.js",
640 + "/assets/global-progress-CjDASA7T.js",
641 + "/assets/header-BBMyfPB0.js",
642 + "/assets/footer-Byz07yjl.js",
643 + "/assets/listing-card-Cg3TPyWe.js",
644 + "/assets/seo.helpers-rKbdQkhM.js",
645 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
646 + "/assets/types-BKXG3Vd5.js",
647 + "/assets/index-CXP4lC37.js",
648 + "/assets/use-locale-BnwvbFV-.js",
649 + "/assets/instance-Dwq5XJYG.js",
650 + "/assets/locale-rlhQ6FjN.js",
651 + "/assets/lead-capture-layout-D9cSW77z.js",
652 + "/assets/locale-switcher-kD-MOI9x.js",
653 + "/assets/use-show-profile-modal-Cgfts1ut.js",
654 + "/assets/i18n-CTdcZBaW.js",
655 + "/assets/date-C7fQmg2U.js",
656 + "/assets/format-BKStloXP.js",
657 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
658 + "/assets/formatDistanceToNow-BvwR-I5H.js",
659 + "/assets/paths-CiQnXl4X.js",
660 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
661 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
662 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
663 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
664 + "/assets/preload-helper-Cer9inx8.js",
665 + "/assets/index-DmhvH8SD.js",
666 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
667 + "/assets/Item-DuavYi1u.js",
668 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
669 + "/assets/useDialog-Bh9KG6MB.js",
670 + "/assets/VisuallyHidden-D-Q2SU4O.js",
671 + "/assets/isScrollable-Dnxj3NSq.js",
672 + "/assets/useLabels-BL4rQGMb.js",
673 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
674 + "/assets/context-C7uvIu_A.js",
675 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
676 + "/assets/FocusScope-CWuTxhav.js",
677 + "/assets/index-DJnVLKJF.js",
678 + "/assets/useOverlayTriggerState-woQJgDxB.js",
679 + "/assets/useControlledState-Dl_rDvO0.js",
680 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
681 + "/assets/number-lhSI2oqU.js",
682 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
683 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
684 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
685 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
686 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
687 + "/assets/index-DuhTrrt1.js",
688 + "/assets/mergeRefs-C8xtGVp3.js",
689 + "/assets/getItemCount-BQolBIkZ.js",
690 + "/assets/SelectionManager-BmJrKgY4.js",
691 + "/assets/scrollIntoView-BWAA50rI.js",
692 + "/assets/useSelectableItem-Ds0Ihirs.js",
693 + "/assets/useDescription-DF6TDnVi.js",
694 + "/assets/index-D8QbWu84.js",
695 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
696 + "/assets/useSelectableList-BOP0KhmN.js",
697 + "/assets/DOMLayoutDelegate-Brany3qe.js",
698 + "/assets/useCollator-CbJkpXG2.js",
699 + "/assets/useTreeState-Dx1W0YuM.js",
700 + "/assets/useMenuTriggerState-CHKcWOlC.js",
701 + "/assets/useMenuTrigger-DKFjnCNZ.js",
702 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
703 + "/assets/index-blsAimsU.js",
704 + "/assets/storage-image-BRiFwsnF.js",
705 + "/assets/icon-D77RBjQx.js",
706 + "/assets/debug-build-VZlf1Aof.js",
707 + "/assets/empty-image-DeSmMdF3.js",
708 + "/assets/storage-JzkTKPy4.js",
709 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
710 + "/assets/use-tenant-wE0zDJ1a.js",
711 + "/assets/use-localized-path-BMxKZwMg.js",
712 + "/assets/modal-BG3X61k6.js",
713 + "/assets/runtime-TD3m583z.js",
714 + "/assets/modal-root-haL454LR.js",
715 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
716 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
717 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
718 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
719 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
720 + "/assets/proxy-BlmPTkqy.js",
721 + "/assets/create-visual-element-Cc1-iv7S.js",
722 + "/assets/accelerated-values-ClBEnI7v.js",
723 + "/assets/layout-CqatgvGE.js",
724 + "/assets/listingTypes-CkyCgPCr.js",
725 + "/assets/floor-label-CGeBlKR2.js",
726 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
727 + "/assets/useFormValidation-BlL8vXtt.js",
728 + "/assets/useLabel-FzyH2LZi.js",
729 + "/assets/useNumberFormatter-DG2VO0C1.js",
730 + "/assets/NumberFormatter-BWU_gJyt.js",
731 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
732 + "/assets/useModal-C3khzgYn.js",
733 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
734 + "/assets/useButton-DZK-beuH.js",
735 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
736 + "/assets/index-B915wqUE.js",
737 + "/assets/index-DGzYOEP8.js",
738 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
739 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
740 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
741 + "/assets/useControlledState-C6ovzWeF.js",
742 + "/assets/useField-CBKMx-DQ.js",
743 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
744 + "/assets/chunk-M3MASYO7-COH9P04M.js",
745 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
746 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
747 + "/assets/useToggleState-DY8z2i0t.js",
748 + "/assets/index-BzZ-MzUq.js",
749 + "/assets/useToggle-QKKEqo_x.js",
750 + "/assets/use-debounce-D23YJQRM.js",
751 + "/assets/use-debounced-callback-Do1iUmMt.js",
752 + "/assets/show-BOEsnqQk.js",
753 + "/assets/index-BxwHZyk5.js",
754 + "/assets/use-screenshot-mode-RoZeXH-d.js",
755 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
756 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
757 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
758 + "/assets/powered-by-eversa-BF980dJS.js",
759 + "/assets/tooltip-_QqyKTfK.js",
760 + "/assets/eversa-logo-DmkjJgjq.js",
761 + "/assets/use-auth-D_t8q_v4.js",
762 + "/assets/OtpInput-CJhAm1Gc.js",
763 + "/assets/roles-Cde3N6LE.js",
764 + "/assets/chunk-T45N425O-CCF24x8B.js",
765 + "/assets/index-CwlnhZHs.js",
766 + "/assets/exports-mapbox-Dy-MMXYe.js",
767 + "/assets/client-CpT78rmL.js",
768 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
769 + "/assets/useProgressBar-DhWwJb16.js",
770 + "/assets/index-Cy2bmlj7.js",
771 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
772 + "/assets/std-cron-C0Hf3jWh.js",
773 + "/assets/legacy-date-D-X4tG6T.js",
774 + "/assets/use-is-iframe-DIKEri2l.js",
775 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
776 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
777 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
778 + "/assets/link-CrZmIZC6.js",
779 + "/assets/rich-text-display--Qas76Hg.js",
780 + "/assets/utils-D0p-v41w.js",
781 + "/assets/signature-block-8SMePIUg.js",
782 + "/assets/index-DqzG1Q9x.js",
783 + "/assets/client-only-BGvaz0Jn.js",
784 + "/assets/use-hydrated-nn_6IPIK.js",
785 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
786 + "/assets/settings.types-CTRD0B_j.js",
787 + "/assets/input-CkQmsiJb.js",
788 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
789 + "/assets/extends-BSSSaanF.js",
790 + "/assets/user-menu-BuoWMPG0.js",
791 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
792 + "/assets/index-CRabYQb-.js",
793 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
794 + "/assets/Section-CaP3oBph.js",
795 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
796 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
797 + "/assets/LiveAnnouncer-CnNJa9NI.js",
798 + "/assets/useUpdateEffect-DsCDOPa2.js",
799 + "/assets/index-BT5H2sjL.js",
800 + "/assets/features-animation-BCPmlPPs.js",
801 + "/assets/index-8boKsGvQ.js",
802 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
803 + "/assets/use-server-command-DJ0CxbuT.js",
804 + "/assets/create-rpc-stub-SmqOCk37.js",
805 + "/assets/index-BoeY4VQ9.js",
806 + "/assets/app-form-CRPZmLNY.js",
807 + "/assets/button-KaTnxiWj.js",
808 + "/assets/spinner-DDyy7LQF.js",
809 + "/assets/zod-CmeTJI5u.js",
810 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
811 + "/assets/form-hidden-input-DI5aJPYE.js",
812 + "/assets/form-input-C6s4itpV.js",
813 + "/assets/system-preferences-DL4TO29S.js",
814 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
815 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
816 + "/assets/use-in-view-BNnh4L6M.js",
817 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
818 + ],
819 + "css": [
820 + "/assets/rich-text-editor-D9Rskyfk.css#",
821 + "/assets/listing-card-CI-uxcFh.css"
822 + ]
823 + },
824 + "root.not-found": {
825 + "id": "root.not-found",
826 + "parentId": "root",
827 + "path": "*",
828 + "hasAction": false,
829 + "hasLoader": false,
830 + "hasClientAction": false,
831 + "hasClientLoader": false,
832 + "hasClientMiddleware": false,
833 + "hasDefaultExport": true,
834 + "hasErrorBoundary": false,
835 + "module": "/assets/root.not-found-D01c4GbZ.js",
836 + "imports": [
837 + "/assets/root.not-found-DP5tZm2i.js",
838 + "/assets/chunk-QUQL4437-m7Whu12z.js",
839 + "/assets/jsx-runtime-umhk6iWe.js",
840 + "/assets/icon-D77RBjQx.js",
841 + "/assets/index-blsAimsU.js",
842 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
843 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
844 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
845 + "/assets/preload-helper-Cer9inx8.js",
846 + "/assets/index-DmhvH8SD.js",
847 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
848 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
849 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
850 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
851 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js"
852 + ],
853 + "css": []
854 + },
855 + "PublicListingsIndexPage": {
856 + "id": "PublicListingsIndexPage",
857 + "parentId": "PublicListingsLayoutPage",
858 + "path": "",
859 + "hasAction": false,
860 + "hasLoader": false,
861 + "hasClientAction": false,
862 + "hasClientLoader": false,
863 + "hasClientMiddleware": false,
864 + "hasDefaultExport": true,
865 + "hasErrorBoundary": false,
866 + "module": "/assets/listings-index.page-DjplF3AX.js",
867 + "imports": [
868 + "/assets/chunk-QUQL4437-m7Whu12z.js",
869 + "/assets/jsx-runtime-umhk6iWe.js",
870 + "/assets/runtime-MtUT-9pW.js",
871 + "/assets/instance-Dwq5XJYG.js",
872 + "/assets/locale-rlhQ6FjN.js",
873 + "/assets/use-localized-path-BMxKZwMg.js",
874 + "/assets/listing-card-Cg3TPyWe.js",
875 + "/assets/types-BKXG3Vd5.js",
876 + "/assets/i18n-CTdcZBaW.js",
877 + "/assets/date-C7fQmg2U.js",
878 + "/assets/format-BKStloXP.js",
879 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
880 + "/assets/formatDistanceToNow-BvwR-I5H.js",
881 + "/assets/paths-CiQnXl4X.js",
882 + "/assets/use-tenant-wE0zDJ1a.js",
883 + "/assets/runtime-TD3m583z.js",
884 + "/assets/exports-mapbox-Dy-MMXYe.js",
885 + "/assets/index-DJnVLKJF.js",
886 + "/assets/use-locale-BnwvbFV-.js",
887 + "/assets/icon-D77RBjQx.js",
888 + "/assets/show-BOEsnqQk.js",
889 + "/assets/client-CpT78rmL.js",
890 + "/assets/index-CXP4lC37.js",
891 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
892 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
893 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
894 + "/assets/useProgressBar-DhWwJb16.js",
895 + "/assets/preload-helper-Cer9inx8.js",
896 + "/assets/index-DmhvH8SD.js",
897 + "/assets/number-lhSI2oqU.js",
898 + "/assets/useLabel-FzyH2LZi.js",
899 + "/assets/useLabels-BL4rQGMb.js",
900 + "/assets/useNumberFormatter-DG2VO0C1.js",
901 + "/assets/context-C7uvIu_A.js",
902 + "/assets/NumberFormatter-BWU_gJyt.js",
903 + "/assets/index-Cy2bmlj7.js",
904 + "/assets/index-blsAimsU.js",
905 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
906 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
907 + "/assets/mergeRefs-C8xtGVp3.js",
908 + "/assets/useControlledState-Dl_rDvO0.js",
909 + "/assets/FocusScope-CWuTxhav.js",
910 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
911 + "/assets/useField-CBKMx-DQ.js",
912 + "/assets/useFormValidation-BlL8vXtt.js",
913 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
914 + "/assets/std-cron-C0Hf3jWh.js",
915 + "/assets/legacy-date-D-X4tG6T.js",
916 + "/assets/listingTypes-CkyCgPCr.js",
917 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
918 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
919 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
920 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
921 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
922 + "/assets/useButton-DZK-beuH.js",
923 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
924 + "/assets/useOverlayTriggerState-woQJgDxB.js",
925 + "/assets/index-B915wqUE.js",
926 + "/assets/accelerated-values-ClBEnI7v.js",
927 + "/assets/useTreeState-Dx1W0YuM.js",
928 + "/assets/SelectionManager-BmJrKgY4.js",
929 + "/assets/scrollIntoView-BWAA50rI.js",
930 + "/assets/isScrollable-Dnxj3NSq.js",
931 + "/assets/useSelectableList-BOP0KhmN.js",
932 + "/assets/DOMLayoutDelegate-Brany3qe.js",
933 + "/assets/useCollator-CbJkpXG2.js",
934 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
935 + "/assets/index-DGzYOEP8.js",
936 + "/assets/Item-DuavYi1u.js",
937 + "/assets/use-is-iframe-DIKEri2l.js",
938 + "/assets/floor-label-CGeBlKR2.js",
939 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
940 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
941 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
942 + "/assets/storage-image-BRiFwsnF.js",
943 + "/assets/debug-build-VZlf1Aof.js",
944 + "/assets/empty-image-DeSmMdF3.js",
945 + "/assets/storage-JzkTKPy4.js",
946 + "/assets/link-CrZmIZC6.js",
947 + "/assets/chunk-T45N425O-CCF24x8B.js",
948 + "/assets/modal-BG3X61k6.js",
949 + "/assets/modal-root-haL454LR.js",
950 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
951 + "/assets/useDialog-Bh9KG6MB.js",
952 + "/assets/VisuallyHidden-D-Q2SU4O.js",
953 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
954 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
955 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
956 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
957 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
958 + "/assets/proxy-BlmPTkqy.js",
959 + "/assets/create-visual-element-Cc1-iv7S.js",
960 + "/assets/layout-CqatgvGE.js",
961 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
962 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
963 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
964 + "/assets/index-DuhTrrt1.js",
965 + "/assets/useModal-C3khzgYn.js",
966 + "/assets/index-BxwHZyk5.js",
967 + "/assets/rich-text-display--Qas76Hg.js",
968 + "/assets/utils-D0p-v41w.js",
969 + "/assets/signature-block-8SMePIUg.js",
970 + "/assets/index-DqzG1Q9x.js",
971 + "/assets/client-only-BGvaz0Jn.js",
972 + "/assets/use-hydrated-nn_6IPIK.js",
973 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
974 + "/assets/chunk-M3MASYO7-COH9P04M.js",
975 + "/assets/settings.types-CTRD0B_j.js",
976 + "/assets/use-show-profile-modal-Cgfts1ut.js",
977 + "/assets/input-CkQmsiJb.js",
978 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
979 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
980 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
981 + "/assets/useControlledState-C6ovzWeF.js",
982 + "/assets/extends-BSSSaanF.js",
983 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
984 + "/assets/use-debounce-D23YJQRM.js",
985 + "/assets/use-debounced-callback-Do1iUmMt.js",
986 + "/assets/use-auth-D_t8q_v4.js",
987 + "/assets/OtpInput-CJhAm1Gc.js",
988 + "/assets/roles-Cde3N6LE.js",
989 + "/assets/index-CwlnhZHs.js",
990 + "/assets/index-BzZ-MzUq.js",
991 + "/assets/powered-by-eversa-BF980dJS.js",
992 + "/assets/tooltip-_QqyKTfK.js",
993 + "/assets/eversa-logo-DmkjJgjq.js",
994 + "/assets/use-screenshot-mode-RoZeXH-d.js",
995 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
996 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
997 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
998 + "/assets/getItemCount-BQolBIkZ.js",
999 + "/assets/useSelectableItem-Ds0Ihirs.js",
1000 + "/assets/useDescription-DF6TDnVi.js",
1001 + "/assets/index-D8QbWu84.js",
1002 + "/assets/useMenuTriggerState-CHKcWOlC.js",
1003 + "/assets/useMenuTrigger-DKFjnCNZ.js",
1004 + "/assets/user-menu-BuoWMPG0.js",
1005 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
1006 + "/assets/index-CRabYQb-.js",
1007 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
1008 + "/assets/Section-CaP3oBph.js",
1009 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
1010 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
1011 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
1012 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
1013 + "/assets/LiveAnnouncer-CnNJa9NI.js",
1014 + "/assets/useUpdateEffect-DsCDOPa2.js",
1015 + "/assets/index-BT5H2sjL.js",
1016 + "/assets/features-animation-BCPmlPPs.js",
1017 + "/assets/index-8boKsGvQ.js",
1018 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
1019 + "/assets/use-server-command-DJ0CxbuT.js",
1020 + "/assets/create-rpc-stub-SmqOCk37.js",
1021 + "/assets/index-BoeY4VQ9.js",
1022 + "/assets/app-form-CRPZmLNY.js",
1023 + "/assets/button-KaTnxiWj.js",
1024 + "/assets/spinner-DDyy7LQF.js",
1025 + "/assets/zod-CmeTJI5u.js",
1026 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
1027 + "/assets/form-hidden-input-DI5aJPYE.js",
1028 + "/assets/form-input-C6s4itpV.js",
1029 + "/assets/system-preferences-DL4TO29S.js",
1030 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
1031 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
1032 + "/assets/use-in-view-BNnh4L6M.js",
1033 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
1034 + ],
1035 + "css": [
1036 + "/assets/rich-text-editor-D9Rskyfk.css#",
1037 + "/assets/listing-card-CI-uxcFh.css"
1038 + ]
1039 + }
1040 + },
1041 + "url": "/assets/manifest-2b2cda1e.js",
1042 + "version": "2b2cda1e"
1043 +};
1044 + window.__reactRouterRouteModules = {"root":route0,"public-language":route1,"PublicListingsLayoutPage":route2,"PublicListingDetailPage":route3};
1045 +
1046 +import("/assets/entry.client-BIJa3TY3.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":-5,\"_8\":9,\"_10\":11},\"actionData\",\"errors\",\"root\",{\"_591\":-5,\"_592\":-7,\"_593\":594,\"_595\":596,\"_20\":21,\"_18\":597,\"_598\":-5,\"_599\":600,\"_238\":239,\"_601\":-5,\"_602\":-5},\"public-language\",\"PublicListingsLayoutPage\",{\"_18\":225,\"_226\":227,\"_228\":229,\"_230\":25,\"_231\":232,\"_233\":60,\"_234\":235,\"_236\":237,\"_238\":239,\"_240\":25,\"_241\":25,\"_242\":25},\"PublicListingDetailPage\",{\"_12\":13,\"_14\":15,\"_16\":17,\"_18\":19,\"_20\":21,\"_22\":23,\"_24\":25},\"listing\",{\"_46\":126,\"_127\":128,\"_96\":129,\"_130\":129,\"_84\":131,\"_132\":133,\"_134\":135,\"_115\":131,\"_118\":136,\"_116\":137,\"_36\":138,\"_139\":140,\"_141\":142,\"_143\":-5,\"_144\":-5,\"_145\":146,\"_147\":60,\"_148\":149,\"_150\":151},\"auth\",{\"_124\":60,\"_125\":25},\"walkScore\",[\"P\",17],\"tenant\",{\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":40,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"lang\",\"fr\",\"pageUrl\",\"https://www.halfred.ca/fr/listings/133-rue-patenaude/details\",\"noindex\",false,\"address\",{\"_96\":114,\"_84\":103,\"_115\":79,\"_116\":117,\"_118\":119,\"_120\":101,\"_121\":87,\"_90\":98,\"_122\":123},\"analytics\",{\"_108\":109,\"_110\":111,\"_112\":113},\"colors\",{\"_104\":105,\"_106\":107},\"contact\",{\"_69\":70,\"_71\":72,\"_26\":73},\"customDomains\",[62,63],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_58\":25,\"_59\":60,\"_61\":25},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{\"_54\":55,\"_56\":57},\"templateId\",\"editorial\",\"title\",\"Halfred | Apartment rentals\",\"showcase\",{},\"listingSortOrder\",\"smart\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_64\":68},{\"_64\":65,\"_66\":67},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_74\":75,\"_76\":77,\"_78\":79,\"_80\":81,\"_82\":83,\"_84\":85,\"_86\":87,\"_88\":89,\"_90\":91,\"_92\":93,\"_94\":95,\"_96\":79},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_97\":103,\"_99\":103},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_97\":101,\"_99\":102},\"country\",{\"_97\":98,\"_99\":100},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"loggedIn\",\"isStaff\",\"133-rue-patenaude\",\"area\",900,\"133 Rue Patenaude\",\"name\",\"Buckingham\",\"buildingId\",\"70e954a2-6bc1-40c3-b401-b95c5e43b706\",\"availabilty\",[\"D\",1780272000000],-75.425153,45.573574,{\"_199\":223,\"_21\":224},\"images\",[222],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[191,192,193,194,195,196],\"listed\",\"units\",[167],\"cardData\",{\"_46\":126,\"_96\":129,\"_84\":131,\"_115\":131,\"_116\":137,\"_118\":136,\"_152\":153,\"_154\":155,\"_156\":157,\"_127\":158,\"_159\":160,\"_161\":162},\"unitId\",\"49a15415-5185-4704-ab4c-46bf84a9c665\",\"bedrooms\",[166],\"bathrooms\",[165],[128],\"price\",[164],\"availability\",[163],\"2026-06-01T00:00:00.000Z\",1550,1,2,{\"_46\":153,\"_127\":128,\"_168\":-5,\"_159\":164,\"_154\":166,\"_156\":165,\"_169\":170,\"_139\":171,\"_147\":60,\"_172\":173,\"_174\":175,\"_176\":177,\"_161\":178,\"_179\":-5,\"_180\":-5,\"_181\":182,\"_39\":183},\"floor\",\"alias\",\"2\",[186,187,188,189,190],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1780272000000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_159\":184,\"_36\":185},[],1421,\"*** 1 mois gratuit reparti sous 12 mois *** \",\"/storage/v1/object/public/halfred/units/49a15415-5185-4704-ab4c-46bf84a9c665/cusine-meuble.png\",\"/storage/v1/object/public/halfred/units/49a15415-5185-4704-ab4c-46bf84a9c665/3__49a15415-5185-4704-ab4c-46bf84a9c665.webp\",\"/storage/v1/object/public/halfred/units/49a15415-5185-4704-ab4c-46bf84a9c665/4__49a15415-5185-4704-ab4c-46bf84a9c665.webp\",\"/storage/v1/object/public/halfred/units/49a15415-5185-4704-ab4c-46bf84a9c665/6__49a15415-5185-4704-ab4c-46bf84a9c665.webp\",\"/storage/v1/object/public/halfred/units/49a15415-5185-4704-ab4c-46bf84a9c665/7__49a15415-5185-4704-ab4c-46bf84a9c665.webp\",{\"_97\":218,\"_41\":219},{\"_97\":214,\"_41\":215},{\"_97\":210,\"_41\":211},{\"_97\":206,\"_41\":207},{\"_97\":202,\"_41\":203},{\"_97\":197,\"_41\":198},{\"_199\":200,\"_21\":201},\"lucide:warehouse\",\"en\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",{\"_199\":204,\"_21\":205},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",{\"_199\":208,\"_21\":209},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_199\":212,\"_21\":213},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_199\":216,\"_21\":217},\"lucide:droplet\",\"Water\",\"Eau\",{\"_199\":220,\"_21\":221},\"lucide:car\",\"Parking\",\"Stationnement\",\"/storage/v1/object/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Spacious Unit with 3 Parking Spaces – Rare Opportunity!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Looking for \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"space, comfort, and practical features\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"? This unit at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"133 Patenaude Street\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" is perfect for anyone who wants \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"convenience and extra room to live comfortably\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What makes this unit stand out:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Located on the \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"1st floor\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" (photos are for reference – different unit shown)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Spacious and functional living area\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Washer/dryer hookups in the unit\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🔥💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Heat \u0026 electricity included in the rent!\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"A major advantage:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"3 parking spaces included\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" – ideal for families or shared living\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📦 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Extra storage:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Storage shed included\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"A practical and hard-to-find unit offering \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"space, comfort, and convenience\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" in a great location.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Rental conditions:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚭 Non-smoking\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ No pets allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Minimum 12-month lease\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Don’t miss this opportunity!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" to schedule your visit.\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Grand logement avec 3 stationnements – Rare sur le marché!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Vous recherchez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"de l’espace, du confort et des commodités pratiques\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"? Ce logement situé au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"133 rue Patenaude\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" est une opportunité idéale pour ceux qui veulent \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"plus de liberté et de facilité au quotidien\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Un logement qui se démarque :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Situé au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"1er étage\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" (photos à titre indicatif – unité différente)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Espace de vie spacieux et fonctionnel\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Prises laveuse/sécheuse dans l’unité\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🔥💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Chauffé et éclairé – inclus dans le loyer!\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Un avantage exceptionnel :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"3 stationnements inclus\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" – parfait pour familles ou colocations\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📦 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Espace supplémentaire :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Remise incluse pour plus de rangement\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’aimer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Un logement pratique, rare sur le marché, qui offre \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"espace, confort et commodités\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dans un secteur accessible.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Conditions :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚭 Non-fumeur\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ Animaux non acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Bail minimum de 12 mois\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Une opportunité à ne pas manquer!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dès maintenant au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour planifier votre visite.\\\"}]}]}\",{\"_26\":27,\"_28\":589,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":590,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"listings\",[],\"listingsByView\",{\"_584\":227,\"_585\":586,\"_587\":588},\"explodeProjects\",\"initialFilters\",{\"_159\":356,\"_357\":358,\"_359\":360,\"_127\":361,\"_168\":362,\"_363\":60,\"_156\":364,\"_154\":365,\"_366\":25,\"_367\":60,\"_368\":369,\"_370\":371},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_243\":244,\"_245\":246,\"_247\":248,\"_249\":250,\"_251\":244,\"_252\":253,\"_254\":255},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[337],\"analysisProductsPrice\",{\"_337\":338,\"_339\":340,\"_341\":342,\"_343\":344,\"_345\":346,\"_347\":348,\"_349\":350,\"_351\":350,\"_352\":353,\"_354\":348,\"_355\":346},\"notifications\",{\"_314\":315},\"form\",{\"_307\":60,\"_308\":25,\"_309\":60,\"_310\":60,\"_311\":25,\"_312\":25,\"_313\":25},\"enabledSkus\",\"submissions\",{\"_257\":258,\"_259\":260,\"_261\":262,\"_263\":264,\"_30\":265,\"_266\":-5},\"agent\",{\"_256\":25},\"hideAgentNewSubmissionBtn\",\"all\",[293,294,295,296,297,298,299,303,304,305,306],\"steps\",[293,294,295,296,297,298,299],\"badges\",[283,284,285,286,287,288],\"statuses\",[277,267,269,271,273,275,278,279,280,281,282],{\"_267\":268,\"_269\":270,\"_271\":272,\"_273\":274,\"_275\":276},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_289\":267,\"_291\":268},{\"_289\":269,\"_291\":270},{\"_289\":271,\"_291\":272},{\"_289\":273,\"_291\":274},{\"_289\":275,\"_291\":276},{\"_289\":290,\"_291\":292},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_289\":277,\"_291\":-5,\"_300\":25},{\"_289\":267,\"_291\":268,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":269,\"_291\":270,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":271,\"_291\":272,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":273,\"_291\":274,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":275,\"_291\":276,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":278,\"_291\":-5,\"_300\":60},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_289\":279,\"_291\":-5,\"_300\":25},{\"_289\":280,\"_291\":-5,\"_300\":25},{\"_289\":281,\"_291\":-5,\"_300\":25},{\"_289\":282,\"_291\":-5,\"_300\":25},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_254\":316,\"_317\":318,\"_18\":319,\"_320\":321},[329,330,331,332,333,334,324,325,335,336],\"manager\",[],[323,324,325,326,327,328],\"admin\",[322],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"agent-submission-snoozed\",\"agent-submission-snoozed-reminder\",\"agent-submission-snoozed-expired\",\"application-deadline-reminder\",\"application-deadline-expired\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1299,\"qc_citizen_criminal_plumitif_municipal_check\",699,\"qc_citizen_rental_board_check\",799,\"on_citizen_rental_board_check\",999,\"ca_citizen_workplace_reference_verification\",1499,\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",\"qc_citizen_rental_board_extended_check\",[165,583],\"pricePerMonth\",[165,583],\"pricePerSqft\",[235,235],[235,582],[580,581],\"hasFloor\",[235,166],[235,407],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445],\"availableNeighborhoods\",[372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388],{\"_130\":411,\"_234\":165},{\"_130\":409,\"_234\":410},{\"_130\":131,\"_234\":166},{\"_130\":408,\"_234\":166},{\"_130\":406,\"_234\":407},{\"_130\":103,\"_234\":405},{\"_130\":403,\"_234\":404},{\"_130\":402,\"_234\":165},{\"_130\":401,\"_234\":166},{\"_130\":400,\"_234\":165},{\"_130\":398,\"_234\":399},{\"_130\":397,\"_234\":165},{\"_130\":395,\"_234\":396},{\"_130\":394,\"_234\":166},{\"_130\":393,\"_234\":165},{\"_130\":391,\"_234\":392},{\"_130\":389,\"_234\":390},\"Touraine\",7,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",8,\"Plateau \",\"Plateau\",30,\"plateau\",\"Old Gatineau\",\"Masson\",\"Hull\",21,37,\"East Templeton\",3,\"East Buckingham\",\"Aylmer\",20,\"angers\",{\"_46\":578,\"_130\":579,\"_41\":219},{\"_46\":576,\"_130\":577,\"_41\":198},{\"_46\":572,\"_130\":573,\"_41\":207},{\"_46\":568,\"_130\":569,\"_41\":491},{\"_46\":564,\"_130\":565,\"_41\":207},{\"_46\":560,\"_130\":561,\"_41\":466},{\"_46\":556,\"_130\":557,\"_41\":486},{\"_46\":551,\"_130\":552,\"_41\":553},{\"_46\":547,\"_130\":548,\"_41\":486},{\"_46\":542,\"_130\":543,\"_41\":544},{\"_46\":540,\"_130\":541,\"_41\":203},{\"_46\":536,\"_130\":537,\"_41\":502},{\"_46\":532,\"_130\":533,\"_41\":452},{\"_46\":528,\"_130\":529,\"_41\":466},{\"_46\":524,\"_130\":525,\"_41\":526},{\"_46\":520,\"_130\":521,\"_41\":475},{\"_46\":516,\"_130\":517,\"_41\":491},{\"_46\":512,\"_130\":513,\"_41\":452},{\"_46\":510,\"_130\":511,\"_41\":215},{\"_46\":505,\"_130\":506,\"_41\":507},{\"_46\":500,\"_130\":501,\"_41\":502},{\"_46\":498,\"_130\":499,\"_41\":207},{\"_46\":494,\"_130\":495,\"_41\":219},{\"_46\":489,\"_130\":490,\"_41\":491},{\"_46\":484,\"_130\":485,\"_41\":486},{\"_46\":482,\"_130\":483,\"_41\":211},{\"_46\":478,\"_130\":479,\"_41\":475},{\"_46\":473,\"_130\":474,\"_41\":475},{\"_46\":469,\"_130\":470,\"_41\":219},{\"_46\":464,\"_130\":465,\"_41\":466},{\"_46\":459,\"_130\":460,\"_41\":461},{\"_46\":455,\"_130\":456,\"_41\":457},{\"_46\":450,\"_130\":451,\"_41\":452},{\"_46\":446,\"_130\":447,\"_41\":207},\"counter-type\",{\"_199\":448,\"_21\":449},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_199\":453,\"_21\":454},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_199\":458,\"_21\":458},\"lucide:armchair\",\"Commodes\",\"disabled-access\",{\"_199\":462,\"_21\":463},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"gas-heating\",{\"_199\":467,\"_21\":468},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"underground-garage\",{\"_199\":471,\"_21\":472},\"Underground Garage\",\"Garage souterrain\",\"small-dogs-allowed\",{\"_199\":476,\"_21\":477},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_199\":480,\"_21\":481},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"washer-dryer-outlet\",{\"_199\":212,\"_21\":213},\"cable-internet\",{\"_199\":487,\"_21\":488},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"laundry-room\",{\"_199\":492,\"_21\":493},\"lucide:washing-machine\",\"Laundry Room\",\"Buanderie\",\"garage-parking\",{\"_199\":496,\"_21\":497},\"Garage Parking\",\"Parking garage\",\"water-tank\",{\"_199\":208,\"_21\":209},\"microwave\",{\"_199\":503,\"_21\":504},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"blinds\",{\"_199\":508,\"_21\":509},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water\",{\"_199\":216,\"_21\":217},\"building-terrace\",{\"_199\":514,\"_21\":515},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_199\":518,\"_21\":519},\"Dryer\",\"Sèche-linge\",\"cats-allowed\",{\"_199\":522,\"_21\":523},\"Cats Allowed\",\"Chats autorisés\",\"gym\",{\"_199\":527,\"_21\":527},\"lucide:dumbbell\",\"Gym\",\"electric-heating\",{\"_199\":530,\"_21\":531},\"Electric Heating\",\"Chauffage Électrique\",\"balcony\",{\"_199\":534,\"_21\":535},\"Balcony\",\"Balcon\",\"oven\",{\"_199\":538,\"_21\":539},\"Oven\",\"Four\",\"electricity\",{\"_199\":204,\"_21\":205},\"refrigerator\",{\"_199\":545,\"_21\":546},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_199\":549,\"_21\":550},\"Cable\",\"Câble\",\"stove\",{\"_199\":554,\"_21\":555},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_199\":558,\"_21\":559},\"Fiber Internet\",\"Internet fibre\",\"central-air-conditioning\",{\"_199\":562,\"_21\":563},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_199\":566,\"_21\":567},\"Dishwasher\",\"Lave-vaisselle\",\"washer\",{\"_199\":570,\"_21\":571},\"Washer\",\"Laveuse\",\"elevator\",{\"_199\":574,\"_21\":575},\"Elevator\",\"Ascenseur\",\"locker-storage-space\",{\"_199\":200,\"_21\":201},\"parking\",{\"_199\":220,\"_21\":221},-1,6,2063,3050,\"list\",\"map\",[],\"explode\",[],{\"_108\":109,\"_110\":111,\"_112\":113},{\"_58\":25,\"_59\":60,\"_61\":25},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_289\":617,\"_46\":47,\"_618\":619,\"_52\":53,\"_36\":37,\"_30\":31,\"_620\":621,\"_26\":27,\"_32\":33,\"_245\":622,\"_623\":624,\"_625\":626,\"_627\":628,\"_43\":44,\"_629\":630,\"_631\":632,\"_45\":-5,\"_633\":-5,\"_634\":-5,\"_635\":-5,\"_50\":51,\"_48\":49,\"_34\":35,\"_636\":-5,\"_637\":-5,\"_238\":239,\"_638\":639,\"_640\":641,\"_642\":643,\"_41\":42,\"_644\":645,\"_38\":-7,\"_646\":647,\"_39\":648,\"_649\":650,\"_651\":-7,\"_652\":653,\"_28\":654,\"_243\":655,\"_656\":657,\"_658\":659},\"toast\",\"user\",{\"_603\":25,\"_604\":-5,\"_605\":-5,\"_606\":-5,\"_607\":-5,\"_608\":-5,\"_609\":-5,\"_610\":-5,\"_611\":-5,\"_612\":-5,\"_69\":-5,\"_71\":-5,\"_613\":-5,\"_125\":25,\"_614\":25,\"_615\":-5,\"_616\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_41\":747},\"social\",{\"_744\":745,\"_746\":79},{\"_337\":338,\"_339\":340,\"_341\":342,\"_343\":344,\"_345\":346,\"_347\":348,\"_349\":350,\"_351\":350,\"_352\":353,\"_354\":348,\"_355\":346},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_741\":-5,\"_275\":60,\"_742\":25,\"_743\":697},\"plan\",{\"_130\":721,\"_722\":79,\"_723\":724,\"_725\":726,\"_727\":728,\"_729\":730,\"_731\":235,\"_732\":733,\"_734\":235,\"_735\":736,\"_737\":738,\"_739\":740},\"metadata\",{\"_28\":654},\"consentConditionsText\",\"consentConditionsEn\",\"consentConditionsFr\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_714\":715,\"_623\":624,\"_716\":717,\"_43\":44,\"_718\":719,\"_74\":720},\"bucket\",{\"_711\":47,\"_712\":713},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_596\":708,\"_709\":710},\"tosHistory\",[697],{\"_668\":60,\"_669\":-7,\"_59\":60,\"_670\":25,\"_671\":25,\"_672\":60,\"_673\":60,\"_674\":25,\"_675\":-7,\"_676\":25,\"_677\":-7,\"_678\":25,\"_679\":25,\"_680\":25,\"_681\":682,\"_683\":25,\"_256\":25,\"_684\":-7,\"_685\":-7,\"_686\":-7,\"_687\":25,\"_58\":25,\"_688\":25,\"_61\":25,\"_689\":690,\"_691\":60,\"_692\":25,\"_693\":25,\"_694\":25,\"_695\":25,\"_696\":25},\"disabledModules\",[],\"rolePermissions\",\"banner\",{\"_199\":666,\"_21\":667},{\"_110\":111,\"_664\":665,\"_108\":109,\"_112\":113},[337],\"payments\",{\"_660\":60,\"_661\":60,\"_662\":25,\"_663\":25},\"version\",\"prod-20260917-9ad1803\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"hasAddressVariants\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"hopemIntegrationEnabled\",\"voltixIntegrationEnabled\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_698\":699,\"_700\":701,\"_658\":702,\"_275\":60,\"_273\":703,\"_704\":705,\"_706\":707},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",39,\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_748\":749},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("P17:[{\"_751\":165,\"_752\":753,\"_36\":754,\"_755\":756,\"_757\":758,\"_759\":760,\"_761\":762,\"_763\":764,\"_765\":762,\"_766\":767,\"_768\":769,\"_770\":771,\"_772\":773},\"status\",\"walkscore\",47,\"Car-Dependent\",\"updated\",\"2026-09-07 13:02:11.687161\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/133Rue-Patenaude/lat=45.573574/lng=-75.425153/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.573,\"snapped_lon\",-75.4245,\"transit\",{\"_36\":-5,\"_777\":-5,\"_775\":-5},\"bike\",{\"_36\":774,\"_775\":776},\"Somewhat Bikeable\",\"score\",41,\"summary\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--><!--/$--><script id="_R_">requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Walk Score®<!-- --> <!-- -->47</a><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Bike Score®<!-- --> <!-- -->41</a><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Washer/Dryer Outlet</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water Tank</span></div></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
1047 +$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><div hidden id="S:1"><div class="flex min-w-[240px] flex-1 basis-[280px] flex-col gap-4 sm:gap-6" data-sentry-component="EditorialScores" data-sentry-source-file="location.tsx"><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Walk Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">47</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:47%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Car-Dependent</div></div><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Bike Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">41</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:41%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Somewhat Bikeable</div></div></div></div><script>$RC("B:1","S:1")</script></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/37104399be7850e46ec1.html +0 −810
@@ -1,810 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/66de2865-e85c-4bcd-b3e8-fcb7fb5bd71a/chatgpt-image-11-mai-2026-135011.png?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/e00d5a57-738d-4df6-ab83-f445cfa6ef0d/chatgpt-image-12-mai-2026-134325.png?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/b92384e4-7b73-4b7b-8bb5-e34f1ef89d56/0002-0002.jpg?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg?width=384&amp;height=384&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/d6292b49-5f2f-4ac0-9221-cc3ef3f81df1/chatgpt-image-13-mai-2026-144332.png?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/84b9bf76-e27d-4b29-9481-9401d1d936d9/chatgpt-image-11-mai-2026-135515.png?width=384&amp;height=384&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><title>Halfred | Apartment rentals | Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</title><meta name="description" content="Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main."/><meta name="keywords" content="listings, properties, real estate, opportunities"/><meta property="og:title" content="Halfred | Apartment rentals | Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main."/><meta property="og:description" content="Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main."/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/listings-list.page-5ytyyUg4.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="66dbdb79f364c12e5558298101c8094f-d8d6d22402b94fa3-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=66dbdb79f364c12e5558298101c8094f,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2Flist,sentry-sampled=true,sentry-sample_rand=0.6489545044931573,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="hidden lg:flex fixed bottom-8 left-1/2 -translate-x-1/2 z-40 transition-opacity duration-200 opacity-100" data-sentry-component="ViewToggle" data-sentry-source-file="view-toggle.tsx"><div class="inline-flex items-center rounded-full bg-foreground p-1 gap-0.5 shadow-lg"><button type="button" class="inline-flex items-center gap-1.5 rounded-full px-5 py-2 text-sm font-medium transition-all bg-background text-foreground shadow-sm"><span class="icon-lucide-layout-grid text-xs"></span>Liste</button><button type="button" class="inline-flex items-center gap-1.5 rounded-full px-5 py-2 text-sm font-medium transition-all text-background/70 hover:text-background"><span class="icon-lucide-map-pin text-xs"></span>Carte</button></div></div><div class="sticky top-[var(--header-height)] z-30"></div><div class="flex flex-1"><div class="mx-auto mb-auto h-full w-full max-w-[1920px] px-4 py-4 pb-24 sm:px-6 sm:py-6 lg:px-12 lg:py-10"><div class="grid w-full grid-cols-1 gap-4 sm:grid-cols-2 sm:gap-5 lg:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5 3xl:grid-cols-6 4xl:grid-cols-7" data-sentry-component="ListingsGrid" data-sentry-source-file="listings-grid.tsx"><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: logement de 2 chambres à louer à Gatineau, 26 Rue Larabie" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Desrosiers</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1605$</b> par mois<span class="text-[#a1a1a1] line-through">1750<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: logement spacieux de 1 - 2 chambres à louer à Chelsea" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Chelsea Creek Multi </h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Chelsea</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">953 - 1098<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1971$</b> par mois<span class="text-[#a1a1a1] line-through">2150<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=384&amp;height=384&amp;quality=80" alt="maison de 1 - 3 chambres à louer par Halfred | Apartment rentals, 10 Rue Marjorie-D.-Shackleton, Gatineau" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Nuvo</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">450 - 1104<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1295$</b> par mois<span class="text-[#a1a1a1] line-through">1533<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: maison 1 - 2 chambres à Gatineau, 929 Vanier Road" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">PURE</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">583 - 1257<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1525$</b> par mois<span class="text-[#a1a1a1] line-through">1790<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/30-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/66de2865-e85c-4bcd-b3e8-fcb7fb5bd71a/chatgpt-image-11-mai-2026-135011.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: maison 1 chambres, location Halfred | Apartment rentals" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Muscat 8 </h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1188$</b> par mois<span class="text-[#a1a1a1] line-through">1296<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/17-rue-de-liverpool/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres, 17 Rue De Liverpool, Gatineau" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">17 Rue De Liverpool</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200 - 1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1650$</b> par mois<span class="text-[#a1a1a1] line-through">1800<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/45-rue-du-cure-andre-preseault/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/e00d5a57-738d-4df6-ab83-f445cfa6ef0d/chatgpt-image-12-mai-2026-134325.png?width=384&amp;height=384&amp;quality=80" alt="maison Halfred | Apartment rentals à louer à Gatineau: 2 chambres, 45 Rue Du Curé-André-Préseault" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">45 Rue Du Curé-André-Préseault</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1200$</b> par mois<span class="text-[#a1a1a1] line-through">1300<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/238-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/b92384e4-7b73-4b7b-8bb5-e34f1ef89d56/0002-0002.jpg?width=384&amp;height=384&amp;quality=80" alt="logement Halfred | Apartment rentals à louer à Gatineau: 2 chambres, 238 Rue De La Frégate" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">238 Rue de la Frégate </h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1536$</b> par mois<span class="text-[#a1a1a1] line-through">1675<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/219-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg?width=384&amp;height=384&amp;quality=80" alt="Location à Gatineau: appartement de 2 chambres à louer, Halfred | Apartment rentals immobilier" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">219 Frégate</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1513$</b> par mois<span class="text-[#a1a1a1] line-through">1650<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/31-rue-lemieux/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: maison à louer, 1 - 2 chambres, Gatineau" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">31 Rue Lemieux</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">700 - 1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1169$</b> par mois<span class="text-[#a1a1a1] line-through">1275<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/29-rue-lemieux/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg?width=384&amp;height=384&amp;quality=80" alt="appartement Halfred | Apartment rentals: 2 chambres à louer, 29 Rue Lemieux, Gatineau" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">29 Rue Lemieux</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1375$</b> par mois<span class="text-[#a1a1a1] line-through">1747<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/84-boulevard-de-l-amerique-francaise/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/d6292b49-5f2f-4ac0-9221-cc3ef3f81df1/chatgpt-image-13-mai-2026-144332.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement 1 - 3 chambres, 84 Boulevard De L&#x27;amérique-Française, Gatineau" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">84 Amérique Française</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1 - 2<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">0 - 1400<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1146$</b> par mois<span class="text-[#a1a1a1] line-through">1250<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/239-rue-de-liverpool/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png?width=384&amp;height=384&amp;quality=80" alt="2 chambres, Gatineau - maison Halfred | Apartment rentals à louer" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">239 Rue De Liverpool</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200 - 1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1513$</b> par mois<span class="text-[#a1a1a1] line-through">1650<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/311-avenue-de-buckingham/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce appartement de 2 chambres à Buckingham" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">311 Avenue De Buckingham</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Buckingham</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1238$</b> par mois<span class="text-[#a1a1a1] line-through">1350<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/31-rue-du-cure-andre-preseault/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/84b9bf76-e27d-4b29-9481-9401d1d936d9/chatgpt-image-11-mai-2026-135515.png?width=384&amp;height=384&amp;quality=80" alt="logement Halfred | Apartment rentals: 2 chambres à louer, 31 Rue Du Curé-André-Préseault, Gatineau" loading="eager" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">31 Rue Du Curé-André-Préseault</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1000$</b> par mois<span class="text-[#a1a1a1] line-through">1250<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/28-rue-normand/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/4fb6c85a-5238-4bb0-8418-d47dbe1fbf94/chatgpt-image-11-mai-2026-131208.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: maison spacieux, 2 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">28 Rue Normand</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1297$</b> par mois<span class="text-[#a1a1a1] line-through">1414<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/50-impasse-john-roney/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/bf43c3d6-d5a3-4a02-9726-49c35b444acb/chatgpt-image-12-mai-2026-135601.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement 1 chambres à Gatineau, 50 Impasse John-Roney" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">50 Impasse john Roney</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (1)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1146$</b> par mois<span class="text-[#a1a1a1] line-through">1250<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/86-rue-de-britannia/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/cac2a87b-0041-4a9b-b934-bcee459364aa/chatgpt-image-13-mai-2026-145743.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: Louez ce unité de 2 chambres à Gatineau, 86 Rue De Britannia" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">86 Rue De Britannia</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1562$</b> par mois<span class="text-[#a1a1a1] line-through">1703<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/22-rue-du-sommet/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/ea305b6a-7ea8-48c3-80a4-1dcbe2880463/chatgpt-image-7-mai-2026-152840.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: unité à louer, 2 chambres, 22 Rue Du Sommet, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">22 rue du Sommet</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1395$</b> par mois<span class="text-[#a1a1a1] line-through">1550<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/82-rue-du-britannia/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/16313772-8d62-4a6e-8a3e-9ec3826a94a9/0001-0001.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: appartement à louer, 2 chambres, 82 Rue Du Britannia, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">82 Rue Du Britannia</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1517$</b> par mois<span class="text-[#a1a1a1] line-through">1650<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/132-rue-de-notre-dame-de-i-ile/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/be56875e-a526-4f45-9fe0-26c224557a81/chatgpt-image-4-mai-2026-160524.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement 0 chambres, 132 Rue De Notre-Dame-De-I&#x27;île, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">132 Rue De Notre-Dame-De-I&#x27;île</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">Studio</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">300<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>894$</b> par mois<span class="text-[#a1a1a1] line-through">975<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/137-impasse-john-roney/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/90b13a61-9f7c-42c0-b515-fbee5a8ac67a/137-141-exterieur-web-1.jpg?width=384&amp;height=384&amp;quality=80" alt="Gatineau: maison 2 chambres, location Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">137 imp John-Roney</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1490$</b> par mois<span class="text-[#a1a1a1] line-through">1525<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/37-rue-saint-hyacinthe/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/ad469e6c-2bf5-49e4-b05b-eda2862715cd/chatgpt-image-12-mai-2026-115853.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 1 chambres à Gatineau, 37 Rue Saint-Hyacinthe" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">37 Rue Saint-Hyacinthe</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">500<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>986$</b> par mois<span class="text-[#a1a1a1] line-through">1075<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/235-rue-de-liverpool/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/6eed1895-1ef5-483e-87fb-3eb81e4bb456/0-Liverpool.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: unité Halfred | Apartment rentals à louer, 2 chambres, 235 Rue De Liverpool" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">235 Rue De Liverpool</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1513$</b> par mois<span class="text-[#a1a1a1] line-through">1650<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/139-rue-saint-etienne/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/4053032a-3a78-4615-a6d1-abcfd082525b/chatgpt-image-10-juin-2026-093557.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: logement de 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">139 Rue Saint-Étienne</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>995$</b> par mois<span class="text-[#a1a1a1] line-through">1100<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/226-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/e5c1230b-e90d-45f6-b4f1-e9c56df31529/20240601_152633.jpg?width=384&amp;height=384&amp;quality=80" alt="2 chambres, Gatineau - logement Halfred | Apartment rentals à louer" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">226 Rue De La Frégate</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1513$</b> par mois<span class="text-[#a1a1a1] line-through">1650<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/24-rue-du-sommet/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/22882540-b4b3-42d5-942c-16f87e1f2ad6/chatgpt-image-11-mai-2026-120228.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: logement 2 chambres, location Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">24 Rue Du Sommet</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1215$</b> par mois<span class="text-[#a1a1a1] line-through">1325<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/86-rue-du-campagnard/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/e91fbdb5-1eb9-468c-b08d-ba764337c1c7/chatgpt-image-29-mai-2026-144508.png?width=384&amp;height=384&amp;quality=80" alt="Location à Gatineau: logement de 1 chambres à louer, Halfred | Apartment rentals immobilier" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">86 Rue Du Campagnard</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1188$</b> par mois<span class="text-[#a1a1a1] line-through">1295<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/120-rue-du-maquis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/e14bb4d8-18f5-481b-9c40-3b3e0eead9c6/maquis-ete.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: logement Halfred | Apartment rentals à louer, 1 - 2 chambres, 120 Rue Du Maquis" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">120 Rue Du Maquis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">795 - 1270<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1494$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/25-rue-pharand/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/92f96d4d-a44d-4c5a-ad2c-c29b5181e757/chatgpt-image-11-mai-2026-124022.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres, 25 Rue Pharand, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">25 Rue Pharand</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">700 - 718<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1285$</b> par mois<span class="text-[#a1a1a1] line-through">1400<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/440-rue-de-pointe-gatineau/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/c05f441a-72af-4190-bd5a-60094e8f2811/chatgpt-image-12-mai-2026-133423.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: appartement de 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">440 Rue De Pointe-Gatineau</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">850<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1307$</b> par mois<span class="text-[#a1a1a1] line-through">1425<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/32-boulevard-d-amsterdam/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/6f120676-6393-4993-8e9e-02e7956cac18/0__6f120676-6393-4993-8e9e-02e7956cac18.webp?width=384&amp;height=384&amp;quality=80" alt="maison de 1 - 2 chambres à louer par Halfred | Apartment rentals, 32 Boulevard D&#x27;amsterdam, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">32 Boulevard D&#x27;amsterdam</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650 - 1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1169$</b> par mois<span class="text-[#a1a1a1] line-through">1275<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/133-rue-patenaude/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: logement de 2 chambres à louer à Buckingham, 133 Rue Patenaude" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">133 Rue Patenaude</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Buckingham (Buckingham)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1421$</b> par mois<span class="text-[#a1a1a1] line-through">1550<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/821-rue-larouche/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/4170fde9-d035-4af3-b032-40bdb7dfba1a/chatgpt-image-13-mai-2026-141043.png?width=384&amp;height=384&amp;quality=80" alt="unité Halfred | Apartment rentals: 2 chambres à louer, 821 Rue Larouche, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">821 Rue Larouche</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">0<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1261$</b> par mois<span class="text-[#a1a1a1] line-through">1375<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/44-rue-de-matapedia/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement 2 chambres à louer, 44 Rue De Matapédia, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">44 Rue De Matapédia</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1000$</b> par mois<span class="text-[#a1a1a1] line-through">1295<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/357-avenue-de-buckingham/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/ab8c22d5-e72d-42ee-a7ea-599e6bd3d31e/cd1102dd-a02a-4545-afb4-f2bed80ec0b8?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: maison 3 chambres à Gatineau, 357 Avenue De Buckingham" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">357 Avenue De Buckingham</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (East Buckingham)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1513$</b> par mois<span class="text-[#a1a1a1] line-through">1650<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/145-rue-larose/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/8aae1724-2ba3-4813-a052-d838cf6bc376/03afb40a-0ef2-42f1-8056-6afe8d609563?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement 1 - 2 chambres à louer, 145 Rue Larose, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">145 Rue Larose</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650 - 850<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1300$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/217-chemin-de-la-savane/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/d43fc80a-206e-49a4-8f80-53e98b15c00a/chatgpt-image-7-mai-2026-144808-1.png?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: logement 1 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">217 Chemin de la Savane</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1008$</b> par mois<span class="text-[#a1a1a1] line-through">1099<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/193-chemin-mcconnell/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/021698f9-ebd8-4fcc-adc1-1ad8c1d7014e/chatgpt-image-7-mai-2026-130425.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce logement de 2 chambres à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">193 Chemin McConnell</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1705$</b> par mois<span class="text-[#a1a1a1] line-through">1860<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/33-rue-lemieux/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/a59671ee-e225-41af-bc89-3cf1dfb6dbd8/59cc0a61-3a2e-4e02-9d44-9db9894788af?width=384&amp;height=384&amp;quality=80" alt="logement Halfred | Apartment rentals: 1 chambres à louer, 33 Rue Lemieux, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">33 Rue Lemieux</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">700<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1229$</b> par mois<span class="text-[#a1a1a1] line-through">1340<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/231-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/b1794dd1-b3aa-42cc-a5c0-1a98a1644e4a/0001-0001.jpg?width=384&amp;height=384&amp;quality=80" alt="Gatineau: unité 2 chambres, location Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">231 Rue De La Frégate</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1513$</b> par mois<span class="text-[#a1a1a1] line-through">1650<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/242-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/3a125037-e08b-44f7-9cf7-f7e3a0eafb0d/20240601_152633.jpg?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: logement 2 chambres, 242 Rue De La Frégate, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">242 Rue De La Frégate</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000 - 1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1536$</b> par mois<span class="text-[#a1a1a1] line-through">1675<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/8-rue-katimavik/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/fa732ec6-1c57-44dd-9a8e-73b060e20eaa/955katimavik-19.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce appartement de 2 chambres à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Unnamed Building</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1584$</b> par mois<span class="text-[#a1a1a1] line-through">1727<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/817-rue-larouche/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/44bba3b4-67a5-4fc3-9d3e-5c71ad2e9a69/chatgpt-image-13-mai-2026-141043.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: Louez ce appartement de 2 chambres à Gatineau, 817 Rue Larouche" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">817 Larouche </h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">850<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1330$</b> par mois<span class="text-[#a1a1a1] line-through">1450<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/11-rue-de-liverpool/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/077ef07d-50bf-47f6-ba57-2d3f4b773669/chatgpt-image-30-avr-2026-154307.png?width=384&amp;height=384&amp;quality=80" alt="appartement de 2 chambres à louer par Halfred | Apartment rentals, 11 Rue De Liverpool, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">11 Rue De Liverpool</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1605$</b> par mois<span class="text-[#a1a1a1] line-through">1750<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/67-rue-dupuis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/91b98fd4-f93a-4e2a-a076-e3ea5fe4351e/chatgpt-image-24-avr-2026-103353.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: unité 2 chambres, location Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">67 Rue Dupuis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1170<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1650$</b> par mois<span class="text-[#a1a1a1] line-through">1917<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/30-boulevard-d-amsterdam/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/aa767c12-90aa-40bb-80a4-2000d95576d5/chatgpt-image-11-mai-2026-134243.png?width=384&amp;height=384&amp;quality=80" alt="Location à Gatineau: logement de 2 chambres à louer, Halfred | Apartment rentals immobilier" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">30 Boul. Amsterdam</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1490$</b> par mois<span class="text-[#a1a1a1] line-through">1625<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/145-rue-champlain/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4/0__1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4.webp?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: unité à louer, 1 chambres, 145 Rue Champlain, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">145 Rue Champlain</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650 - 700<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1150$</b> par mois<span class="text-[#a1a1a1] line-through">1400<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/981-rue-georges/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/eb74426f-210b-4371-a1df-7158f32e6901/geminigeneratedimage27b10e27b10e27b1.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: unité à louer, 1 - 3 chambres, 981 Rue Georges, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">981 Rue Georges</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1 - 2<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">604 - 1160<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1100$</b> par mois<span class="text-[#a1a1a1] line-through">1200<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/213-rue-du-piree/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/c491ff78-a75c-4b75-bb15-0fd3de7e421c/213_rue_piree.PNG?width=384&amp;height=384&amp;quality=80" alt="3 chambres, Gatineau - maison Halfred | Apartment rentals à louer" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">213 Rue Piree</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1400<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>2335$</b> par mois<span class="text-[#a1a1a1] line-through">2475<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/90-rue-du-campagnard/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement à louer, 1 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">90 Rue Du Campagnard</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1188$</b> par mois<span class="text-[#a1a1a1] line-through">1295<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/110-impasse-de-lorraine/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/3d717fcf-a310-4287-84b3-ea55fa811d82/0001-0001.jpg?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: logement 2 chambres, 110 Impasse De Lorraine, Angers" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">110 Impasse De Lorraine</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Angers (angers)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1239$</b> par mois<span class="text-[#a1a1a1] line-through">1350<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/63-rue-dupuis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/aa08deab-4cb1-49b6-98fb-ad9cde3293b4/1.png?width=384&amp;height=384&amp;quality=80" alt="2 chambres, appartement Halfred | Apartment rentals à louer à Gatineau, 63 Rue Dupuis" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Oasis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1700<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1625$</b> par mois<span class="text-[#a1a1a1] line-through">1725<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/100-rue-du-maquis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/141403da-f50d-40f5-8023-b4ca3d1991eb/maquis-ete.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: logement de 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">100 Rue Du Maquis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000 - 1270<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1713$</b> par mois<span class="text-[#a1a1a1] line-through">1868<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/190-rue-henri-matisse/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: maison 2 chambres, location Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">190 Rue Henri-Matisse</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1443$</b> par mois<span class="text-[#a1a1a1] line-through">1575<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/227-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/95357dba-82da-4548-99ae-5ce07fb66ea8/0001-0001.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: maison 2 chambres à louer, 227 Rue De La Frégate, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">227 Rue De La Frégate</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1536$</b> par mois<span class="text-[#a1a1a1] line-through">1675<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/30-rue-de-matapedia/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: unité Halfred | Apartment rentals à louer, 2 chambres, 30 Rue De Matapédia" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">30 Rue De Matapédia</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Pointe-Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">800<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1300$</b> par mois<span class="text-[#a1a1a1] line-through">1400<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/222-boulevard-d-amsterdam/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/4701216f-94f1-49a3-ab92-9e7adb41e97e/chatgpt-image-12-juin-2026-103813.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: unité 2 chambres à louer, 222 Boulevard D&#x27;amsterdam, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">222 Boulevard D&#x27;amsterdam</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1554$</b> par mois<span class="text-[#a1a1a1] line-through">1695<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/194-rue-henri-matisse/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/987fe064-b0ec-409e-b759-49c31cdf7268/chatgpt-image-7-juil-2026-112401.png?width=384&amp;height=384&amp;quality=80" alt="logement de 3 chambres à louer par Halfred | Apartment rentals, 194 Rue Henri-Matisse, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">194 rue Henri-Matisse</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 novembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1695$</b> par mois<span class="text-[#a1a1a1] line-through">1850<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/614-boulevard-du-plateau/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/dc0526fb-178d-498f-9807-59deec6ff1ad/955katimavik-19.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: maison 1 chambres à louer, 614 Boulevard Du Plateau, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">614 Boulevard Du Plateau</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1145$</b> par mois<span class="text-[#a1a1a1] line-through">1250<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/226-boulevard-d-amsterdam/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/d251872b-9f75-48b5-a34f-173c80185a42/4f16b0f5-da70-4fb3-b3e6-98d3493f87d7.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce maison de 3 chambres à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">226 Boul. D&#x27;Amsterdam</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1647$</b> par mois<span class="text-[#a1a1a1] line-through">1796<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/69-rue-dupuis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/24308035-7b33-4697-b021-7bab3c82c002/chatgpt-image-5-juin-2026-151558.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: logement 2 chambres à louer, 69 Rue Dupuis, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">69 Rue Dupuis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1170<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1569$</b> par mois<span class="text-[#a1a1a1] line-through">1711<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/215-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><span class="absolute z-10 top-0 left-0 flex px-4 py-3 items-center justify-center rounded-br-3xl bg-gradient-to-br from-red-500 to-red-700 text-center font-medium text-white text-xs">PROMO</span><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/125b3c0b-1e7a-4019-af6f-d34941fc3a98/0002-0002.jpg?width=384&amp;height=384&amp;quality=80" alt="unité Halfred | Apartment rentals: 2 chambres à louer, 215 Rue De La Frégate, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">215 Frégate</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1513$</b> par mois<span class="text-[#a1a1a1] line-through">1650<!-- -->$</span></span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/183-chemin-mcconnell/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/06239c3c-d070-439b-9003-368a2fc674d7/chatgpt-image-5-mai-2026-160111.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: unité 2 chambres à louer, 183 chemin McConnell , Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">183 chemin McConnell </h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (2)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1860$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1794-rue-schryer/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/099f55a3-21fd-4082-bc67-c15de816bad5/0__099f55a3-21fd-4082-bc67-c15de816bad5.webp?width=384&amp;height=384&amp;quality=80" alt="Gatineau: unité 2 chambres, location Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1794 Rue Schryer</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200 - 1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1595$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1770-rue-schryer/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/3e1c14a0-b7c5-476e-8bc6-6f480065a787/schryer-facade.PNG?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité spacieux, 2 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1770 Rue Schryer</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (East Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1595$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1802-rue-schryer/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/949ad25b-749d-46b0-936c-c961d824b43a/facade.JPG?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: unité 2 chambres à louer, 1802 Rue Schryer, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1802 Rue Schryer</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1595$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/228-boulevard-maisonneuve/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/6d3e5fd8-7816-4eda-b5c5-012731841a2a/facade.JPG?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: maison spacieux de 1 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">228 Boulevard Maisonneuve</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">700<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1150$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/240-boulevard-alexandre-tache/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/cb846da3-20fd-446f-9b54-17c395294dd4/chatgpt-image-11-mai-2026-121541.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: maison Halfred | Apartment rentals à louer, 1 - 2 chambres, 240 Boulevard Alexandre-Taché" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">240 Boulevard Alexandre-Taché</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650 - 1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1025$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1855-rue-saint-louis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/2084d539-7995-4539-8ee7-481b532c7880/1875_Rue_Saint-Louis-1.jpg?width=384&amp;height=384&amp;quality=80" alt="2 - 3 chambres, Gatineau - maison Halfred | Apartment rentals à louer" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1855 rue Saint Louis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> - <!-- -->3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Touraine)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">750 - 850<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>979$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/9-rue-trudeau/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/d8e54f87-5f29-4e87-8c26-e25f02839900/chatgpt-image-10-juin-2026-143202.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres, 9 Rue Trudeau, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">9 Trudeau</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1400$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/56-rue-lucien-brault/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/16fb93ca-c039-4133-b4ac-57e39bdb470b/chatgpt-image-12-mai-2026-143800.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres à Gatineau, 56 Rue Lucien-Brault" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">56 Rue Lucien-Brault</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">737 - 1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1407$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/185-chemin-mcconnell/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/02625045-061c-4e39-b079-5ab018c885fc/chatgpt-image-5-mai-2026-160111.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: appartement 3 chambres, location Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">185 Chemin Mcconnell</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1958$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/855-boulevard-maloney-est/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/8de520ad-0f6c-49bc-8053-94bd4e5746d2/855-boul-maloney.jpg?width=384&amp;height=384&amp;quality=80" alt="1 - 2 chambres, Gatineau - maison Halfred | Apartment rentals à louer" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">855 Boulevard Maloney Est</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">518 - 1036<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1295$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/9-rue-de-liverpool/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/60c62e13-5402-4ccb-b41e-4f7beb13a07a/chatgpt-image-13-mai-2026-155525.png?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: logement 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">9 Rue De Liverpool</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1775$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/36-boulevard-d-amsterdam/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/5a9ca168-3b79-4f75-8878-adbc522cdc80/0__5a9ca168-3b79-4f75-8878-adbc522cdc80.webp?width=384&amp;height=384&amp;quality=80" alt="maison de 2 chambres à louer par Halfred | Apartment rentals, 36 Boulevard D&#x27;amsterdam, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">36 Boulevard D&#x27;amsterdam</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1600$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/14-rue-larabie/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/22241c14-5811-4eae-8714-ff0726c318dc/022241c14-5811-4eae-8714-ff0726c318dc.webp?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement spacieux, 3 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">14 Rue Larabie</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">2063<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>2400$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/123-boulevard-lorrain/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/missing_image.png" alt="Halfred | Apartment rentals: unité à louer, 1 chambres, 123 Boulevard Lorrain, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">123 boulevard Lorrain</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1295$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/141-impasse-john-roney/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/298dfb14-9b05-4453-b643-326fac520882/57johnroney-(9).jpg?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité spacieux, 1 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Unnamed Building</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1225$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/10a-rue-rodolphe/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/16061f36-5949-4e8f-9b90-6c1a50c4bfde/facade.PNG?width=384&amp;height=384&amp;quality=80" alt="Gatineau: appartement de 4 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">10A Rue Rodolphe</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">4<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Pointe-Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">2000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>2200$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/50-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/91a7d0d5-abdf-4321-8a4a-7ee874b031a4/chatgpt-image-22-mai-2026-140203.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: unité spacieux de 2 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Muscat 8</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1765$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/66-impasse-john-roney/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/d9c6dbbf-d98b-40ca-b3ed-d6f927388c93/chatgpt-image-5-juin-2026-161747.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce maison de 1 chambres à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">66 Impasse John-Roney</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1250$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/331-chemin-de-la-savane/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/4f5af977-c033-4ae7-b4d2-a7f166436ca9/chatgpt-image-11-mai-2026-144528.png?width=384&amp;height=384&amp;quality=80" alt="2 chambres, appartement Halfred | Apartment rentals à louer à Gatineau, 331 Chemin De La Savane" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">331 Chemin De La Savane</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Old Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000 - 1050<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1690$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/41-rue-du-stratus/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/2e7b45a0-d95d-4938-813b-e5649dda3dac/chatgpt-image-12-mai-2026-130146.png?width=384&amp;height=384&amp;quality=80" alt="maison Halfred | Apartment rentals: 2 chambres à louer, 41 Rue Du Stratus, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">41 rue du Stratus </h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">0<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1550$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/21-rue-courchesne/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/0d46504d-9ed3-41d3-ba4c-2e3686090e17/chatgpt-image-7-mai-2026-143425.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce logement de 2 chambres à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">21 rue Courchesne</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1134$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1816-rue-schryer/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/8c57cef8-e37d-43fa-af05-f619e71b70d4/1.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement spacieux de 2 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1816 Rue Schryer</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (East Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1595$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1792-rue-schryer/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/634b56cf-4ab5-4226-88f4-2c5aeb45a23f/schryer-facade.PNG?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement 2 chambres à Gatineau, 1792 Rue Schryer" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1792 Rue Schyer</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1595$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/88-rue-frontenac/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité spacieux, 3 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">88 Rue Frontenac</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1420$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/260-boulevard-de-la-cite/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/1bf2d9b0-3e62-406a-9cd2-11930e86ebf3/0__1.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: appartement 2 chambres à louer, 260 Boulevard De La Cité, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">260 Boulevard De La Cité</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Old Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000 - 1050<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1690$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/94-rue-du-campagnard/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/aa7ef5d1-665c-44aa-ad50-85521004ab2e/chatgpt-image-29-mai-2026-144508.png?width=384&amp;height=384&amp;quality=80" alt="maison Halfred | Apartment rentals à louer à Gatineau: 1 chambres, 94 Rue Du Campagnard" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">94 Rue Du Campagnard</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1204$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/8-rue-du-cure-armand-larocque/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/46b6649f-c9c3-42ae-878d-ee0420f81a37/facade.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: appartement Halfred | Apartment rentals à louer, 1 chambres, 8 Rue Du Curé-Armand-Larocque" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">8 Curé-Armand-Larocque</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1050$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/11-rue-duquesne/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/bfe3e1ad-69bd-4aab-9774-377431111ad5/01-facade-png.jpg?width=384&amp;height=384&amp;quality=80" alt="Gatineau: appartement Halfred | Apartment rentals à louer, 1 chambres, 11 Rue Duquesne" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">11 Rue Duquesne</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">500<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1195$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/247-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/58216cde-2c69-4210-a7aa-b0954533f663/0002-0002.jpg?width=384&amp;height=384&amp;quality=80" alt="2 chambres, Gatineau - unité Halfred | Apartment rentals à louer" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">247 Rue De La Frégate</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1598$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/224-boulevard-maisonneuve/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/61ef446c-8731-4b03-8e7d-183ea55c4f22/facade.JPG?width=384&amp;height=384&amp;quality=80" alt="Gatineau: maison de 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">224 Boulevard Maisonneuve</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1336$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/276-boulevard-d-amsterdam/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/f7f4879a-0505-48c9-8066-4880b68c51e9/chatgpt-image-11-mai-2026-125342.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce maison de 2 chambres à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">276 Boulevard D&#x27;amsterdam</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000 - 1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1695$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/54-rue-katimavik/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/5cf3755a-4140-459d-ba3a-e4c42f34c6fa/0__5cf3755a-4140-459d-ba3a-e4c42f34c6fa.webp?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: logement 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">54 Rue Katimavik</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1635$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1812-rue-schryer/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/188549ec-48d8-4a35-b407-95e5c18d055e/schryer-facade.PNG?width=384&amp;height=384&amp;quality=80" alt="appartement Halfred | Apartment rentals à louer à Gatineau: 2 chambres, 1812 Rue Schryer" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1812 rue Schryer</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1595$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/2-rue-de-la-fondriere/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/b9a80486-6b48-4e25-939e-c84f59ee2219/chatgpt-image-7-mai-2026-132500.png?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: unité 1 - 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">2 Rue De La Fondrière</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">700<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1250$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1865-rue-saint-louis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/6cd9ce1a-82c4-4216-9c81-8f29b7d19cc0/1855_Rue_Saint-Louis_6-01.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: logement 3 chambres à louer, 1865 Rue Saint-Louis, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1865 rue Saint Louis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Touraine)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">850<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1567$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/19-rue-de-liverpool/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/f9e11522-a7ac-490d-b299-3537453e72d4/chatgpt-image-3-juil-2026-133549.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: maison 2 chambres à louer, 19 Rue De Liverpool, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">19 Rue De Liverpool</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1805$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/165-rue-eddy/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/53162c68-ecf7-460c-8e99-8c9a066569e2/chatgpt-image-5-mai-2026-132844.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: unité de 0 - 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">165 Rue Eddy</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">studio<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">300 - 700<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>975$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/209-rue-du-piree/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/c528a867-7970-44ec-bd2c-84bf427b75b4/facade.JPG?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: maison 1 - 3 chambres à Gatineau, 209 Rue Du Pirée" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">209 Rue Du Pirée</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1 - 2<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">700 - 1400<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1392$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/40-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/031ad7bb-2e17-49f9-b144-a4e731a30632/chatgpt-image-26-mai-2026-141410.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: maison 2 chambres à Gatineau, 40 Rue De La Fabrique" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">40 Rue De La Fabrique</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1765$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/159-rue-eddy/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/6032cc84-5345-49d0-bdd8-22d97cf94346/chatgpt-image-5-mai-2026-132844.png?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: appartement 0 - 1 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">159 Rue Eddy</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">studio<!-- --> - <!-- -->1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">300 - 585<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>975$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/32-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/582448bc-e1b8-4ab8-affb-b313d8965495/chatgpt-image-11-mai-2026-143639.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: Louez ce maison de 1 chambres à Gatineau, 32 Rue De La Fabrique" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Muscat 8 </h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1335$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1780-rue-schryer/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/66dff9c4-f8b7-4d1d-8e04-702997184f75/0-1780%20Rue%20Schryer.PNG?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: unité à louer, 2 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1780 Rue Schryer</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1595$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1804-rue-schryer/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/a03b227b-53cf-44fa-8143-4856be4af4c3/1.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: appartement 2 chambres à louer, 1804 Rue Schryer, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1804 Rue Schryer</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (East Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1595$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/576-boulevard-des-hautes-plaines/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/5cd46b63-f6ac-4a3f-ad33-e59204355119/1.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement spacieux de 2 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">576 Hautes Plaines</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">895<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1495$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/125-boulevard-lorrain/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/84687d04-5d07-4547-b653-a2555d0b5417/125-lorrain.png?width=384&amp;height=384&amp;quality=80" alt="Location à Gatineau: unité de 1 chambres à louer, Halfred | Apartment rentals immobilier" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">125 Bd Lorrain</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1295$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/211-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/3d8a632a-b1cb-4fd2-bace-6154bd2408b2/0002-0002.jpg?width=384&amp;height=384&amp;quality=80" alt="Gatineau: appartement de 1 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">211 Rue De La Frégate</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Templeton)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1195$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/46-rue-joseph-galipeau/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/92f1b218-202c-42ea-a8f7-fca7f232c0bf/1front.jpg?width=384&amp;height=384&amp;quality=80" alt="Gatineau: maison 2 chambres, location Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">46 Rue Joseph-Galipeau</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1650$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/155-rue-wigwas/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/3b6fd29b-8bfe-4037-9a10-1b8505c232b1/0__3b6fd29b-8bfe-4037-9a10-1b8505c232b1.webp?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce logement de 1 - 2 chambres à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">155 Rue Wìgwàs</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650 - 967<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1250$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/83-rue-lucien-brault/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/1cdbd26c-9364-41c2-92c9-caf897b52387/chatgpt-image-13-mai-2026-142624.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: maison spacieux de 2 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">83 Rue Lucien-Brault</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">790<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1500$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/278-boulevard-d-amsterdam/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/67179769-cd26-4be5-ac8d-72586177a60b/chatgpt-image-11-mai-2026-125342.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: logement 3 chambres à louer, 278 Boulevard D&#x27;amsterdam, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">278 Boulevard d&#x27;Amsterdam</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1785$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/38-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/fd70b466-2c38-44f3-a594-106edaac7097/chatgpt-image-12-juin-2026-102041.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement spacieux de 1 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">38 Rue De La Fabrique</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1335$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/205-chemin-de-la-savane/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/b77958d4-db7e-43bc-8505-3979e9731c7f/Exterieur-Savane.jpg?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: logement 1 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">205 Chemin De La Savane</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1125$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/19-rue-forget/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/3afdee0b-a084-458f-98e5-be5019f5e3c7/chatgpt-image-5-mai-2026-161251.png?width=384&amp;height=384&amp;quality=80" alt="2 chambres, unité Halfred | Apartment rentals à louer à Gatineau, 19 Rue Forget" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">19 Rue Forget</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1350$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/52-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><div class="absolute bottom-0 inset-x-0 z-10"><div class="w-full bg-black/70 text-primary-foreground py-1 text-center rounded-t-none">Disponible maintenant</div></div><img src="/storage/v1/render/image/public/halfred/buildings/a65c55c9-45c6-4c7b-a3c8-c820ffe837a3/chatgpt-image-12-mai-2026-140740.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: appartement de 1 chambres à louer à Gatineau, 52 Rue De La Fabrique" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">52 rue de la Fabrique</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible maintenant</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1317$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/48-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/8d6e3918-0039-48c3-a299-53208d039373/chatgpt-image-26-mai-2026-141410.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: maison 2 chambres, 48 Rue De La Fabrique, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">48 rue de la Fabrique </h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1765$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/295-avenue-de-l-hippodrome/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/3988647d-8a00-4ef5-b53f-1dbbace17352/chatgpt-image-10-juil-2026-134814.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement spacieux de 1 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">295 avenue de l&#x27;Hippodrome</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 novembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1370$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/22-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/d316e4d1-0564-4633-bac0-1fcbbb0fb249/chatgpt-image-5-juin-2026-153827.png?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: unité 1 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">22 Rue De La Fabrique</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">0<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 novembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1296$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/140-rue-du-maquis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/879ed7ea-e716-4518-abfe-42ef3a99056e/chatgpt-image-5-juin-2026-155918.png?width=384&amp;height=384&amp;quality=80" alt="3 chambres, Gatineau - unité Halfred | Apartment rentals à louer" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">140 Rue Du Maquis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 décembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1895$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/178-chemin-de-la-savane/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/593a262d-4357-4fc7-9f37-0a86b92d634b/178_Chem._de_la_Savane_6-02.jpg?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité spacieux, 2 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">178 ch de la Savane</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Pointe-Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">800<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 17 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1156$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/215-chemin-de-la-savane/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/8d0311ab-3d42-4109-9820-2d441a0eb4d9/215_chemin_de_la_savanne.PNG?width=384&amp;height=384&amp;quality=80" alt="maison de 1 chambres à louer par Halfred | Apartment rentals, 215 Chemin De La Savane, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">215 chemin de la savane</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Pointe-Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1150$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/149-rue-saint-redempteur/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/2aea5f59-eaf7-43af-8c8c-fb4feb559131/1-3.jpg?width=384&amp;height=384&amp;quality=80" alt="appartement Halfred | Apartment rentals à louer à Gatineau: 0 chambres, 149 Rue Saint-Rédempteur" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">149 Rue Saint-Rédempteur</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">Studio</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 décembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>900$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/272-boulevard-d-amsterdam/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/957dfbb3-0f76-498d-9feb-145f08835ed0/chatgpt-image-11-mai-2026-125342.png?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: maison spacieux, 1 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">272 Boulevard D&#x27;amsterdam</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1263$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/27-rue-des-flandres/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/5e2e4d03-5517-4eae-9f1b-c2c0c0568239/27_Rue_des_Flandres-1.jpg?width=384&amp;height=384&amp;quality=80" alt="logement de 1 - 2 chambres à louer par Halfred | Apartment rentals, 27 Rue Des Flandres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">27 rue des Flandres</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Touraine)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650 - 750<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1450$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/6-rue-du-cure-armand-larocque/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/6900c1b8-c06a-4a76-80eb-92b210e159ae/chatgpt-image-12-mai-2026-150158.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement à louer, 3 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">6 Curé-Armand-Larocque</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1695$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/127-rue-de-britannia/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/960af3bf-a117-4c02-8ed1-04565243d331/chatgpt-image-10-juin-2026-113228.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: maison de 2 - 3 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">127 Rue De Britannia</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> - <!-- -->3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250 - 1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1750$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/44-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/5a12418a-557a-4cc4-bd0e-7691895d2734/chatgpt-image-5-juin-2026-153827.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: logement spacieux de 3 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">44 Fabrique</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1801$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/189-chemin-mcconnell/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/ca813baa-2b30-4e2c-be21-1a6ffacd20bf/chatgpt-image-9-juin-2026-161743.png?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: unité 1 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">189 Chemin Mcconnell</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1425$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/988-rue-jacinthe/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/1dbd0c7f-a43a-4f63-b3d9-9885f0afc7fd/chatgpt-image-14-mai-2026-121846.png?width=384&amp;height=384&amp;quality=80" alt="Saint-Jérôme: maison 1 chambres, location Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">988 Rue Jacinthe</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Saint-Jérôme (Saint-Jérôme)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 15 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1075$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/146-rue-champlain/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/78d22ce4-df51-43ac-b96b-4179a049217e/chatgpt-image-12-juin-2026-090845.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: unité de 1 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">146 Rue Champlain</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">500<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>980$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/555-rue-de-pointe-gatineau/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/a7ff6d4e-c3cc-4862-bfa1-0a98d4db0942/14612434_1.jpg?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: maison 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">555 Rue De Pointe-Gatineau</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Pointe-Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900 - 1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1928$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/255-rue-de-la-fregate/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/680c18df-4c10-4e52-9f29-dcdb3b8d8253/0001-0001.jpg?width=384&amp;height=384&amp;quality=80" alt="Gatineau: appartement de 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">255 rue de la Frégate</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1598$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1875-rue-saint-louis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/56e79a73-5a86-4dda-86b6-0ee66508e5c3/1875_Rue_Saint-Louis-1.jpg?width=384&amp;height=384&amp;quality=80" alt="Location à Gatineau: appartement de 2 chambres à louer, Halfred | Apartment rentals immobilier" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1875 rue Saint Louis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Touraine)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">750<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 novembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1460$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/124-rue-katimavik/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/e679b965-dff7-4831-ad1a-61dc86152395/chatgpt-image-4-mars-2026-160532.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement spacieux de 2 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">124 Rue Katimavik</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 novembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1685$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/104-rue-katimavik/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/38b42c3c-f240-4f74-b45e-05c18c6441d5/chatgpt-image-12-mai-2026-115205.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: maison spacieux de 1 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">104 Rue Katimavik</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1305$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/130-rue-du-maquis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/c228126d-942b-46b4-9621-df0e7ec2e9bc/24b9a430-5293-8274-b936-e24e505a6bb9?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: unité à louer, 3 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">130 Rue Du Maquis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1298<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 décembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1775$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/74-boulevard-saint-raymond/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/5b58e3a4-6629-4700-bb91-2deae5053af0/5439a31a-ae56-4bdd-bccd-e0e5e6c197e6.png?width=384&amp;height=384&amp;quality=80" alt="Location à Gatineau: logement de 2 chambres à louer, Halfred | Apartment rentals immobilier" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">74 Boulevard Saint-Raymond</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1150<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1450$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/220-rue-de-malartic/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/a3ed2e8c-3635-4b79-b86a-9cc6fff6bfa8/chatgpt-image-22-mai-2026-141642.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement 2 chambres à louer, 220 Rue De Malartic, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">220 Rue De Malartic</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 décembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1470$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/195-mcconnell-road/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/0d8681e9-d0d1-4e86-8c58-c1b86a22cc11/chatgpt-image-22-mai-2026-121048.png?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: unité 1 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">195 Chemin McConnell</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600 - 650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1380$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/14-rue-roy/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/7914359c-2606-46af-82da-110907c1e98b/0__7914359c-2606-46af-82da-110907c1e98b.webp?width=384&amp;height=384&amp;quality=80" alt="Gatineau: maison Halfred | Apartment rentals à louer, 3 chambres, 14 Rue Roy" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">14 Rue Roy</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1675$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/31-rue-des-flandres/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/389afe55-631b-45fe-a1d7-8e3c19c47111/29-rue-des-flandres-01.jpg?width=384&amp;height=384&amp;quality=80" alt="Gatineau: appartement Halfred | Apartment rentals à louer, 1 chambres, 31 rue des Flandres" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">31 rue des Flandres</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Québec)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 novembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1182$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/19-rue-de-matapedia/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/1b289572-c06a-4dc5-a038-0efc1f2ed2f5/chatgpt-image-may-6-2026-at-091033-am.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement à louer, 2 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">19 Rue De Matapédia</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">900<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 novembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1300$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/70-rue-latour/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/6981e517-69e1-48d3-a3d2-8214b9ac3227/capture.PNG?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: Louez ce appartement de 2 chambres à Gatineau, 70 Rue Latour" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">70 Latour</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (East Buckingham)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 novembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1200$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/43-boulevard-de-l-amerique-francaise/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/ff657b33-e7e5-41e3-bb59-377a0e321bbf/2583850f-fca0-44ea-849d-422f9ac17761.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: appartement spacieux de 2 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">43 Boulevard De L&#x27;amérique-Française </h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1600$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/545-rue-de-pointe-gatineau/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/89ebc6a5-94ac-43df-9412-0557ff224d37/545_Rue_de_Pointe-Gatineau_115-03.jpg?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 0 - 1 chambres, 545 rue de Pointe Gatineau, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">545 rue de Pointe Gatineau</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">studio<!-- --> - <!-- -->1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Québec)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600 - 650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1103$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/122-rue-katimavik/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/fa001da8-92aa-41d1-8724-aac2310af599/0__fa001da8-92aa-41d1-8724-aac2310af599.webp?width=384&amp;height=384&amp;quality=80" alt="Location Gatineau: unité 1 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">122 Rue Katimavik</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 décembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1275$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/9-rue-du-glenbow/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/cc97da83-3eee-406a-8752-563e588a4631/chatgpt-image-5-juin-2026-162226.png?width=384&amp;height=384&amp;quality=80" alt="Gatineau: maison de 2 chambres à louer par Halfred | Apartment rentals" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Unnamed Building</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1100<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1625$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/36-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/60ca83de-3ad2-44d1-b3b3-7d2ba774bf7f/chatgpt-image-11-mai-2026-153814.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: logement 1 - 3 chambres à louer, 36 Rue De La Fabrique, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">36 Rue De La Fabrique</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> - <!-- -->3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650 - 1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1335$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/235-rue-papineau/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/0f7da5ad-cfa9-46d0-9433-bb6f758a3323/chatgpt-image-12-juin-2026-104948.png?width=384&amp;height=384&amp;quality=80" alt="Location à Gatineau: maison de 1 chambres à louer, Halfred | Apartment rentals immobilier" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">235 Rue Papineau</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Hull)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600 - 700<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2">À partir de <b>1200$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/34-rue-de-rochefort/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/ceac451a-df09-438c-abbc-6d2b03ed4ef0/0__ceac451a-df09-438c-abbc-6d2b03ed4ef0.webp?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: logement 2 chambres à louer, 34 Rue De Rochefort, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">34 Rue De Rochefort</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1070<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1995$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/191-chemin-mcconnell/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/34795aef-8938-4001-82bd-fa052e32aa00/chatgpt-image-9-juin-2026-161743.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: logement 2 chambres à louer, 191 Chemin Mcconnell, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">191 Chemin Mcconnell</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1250<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1860$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1845-rue-saint-louis/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/70ffc37f-8fb3-4f54-adb1-2bc6e438fe9a/1855_Rue_Saint-Louis_6-01.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: maison 1 chambres à louer, 1845 Rue Saint-Louis, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1845 Saint Louis</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Touraine)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">650<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 30 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>921$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/6-rue-katimavik/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/c7e4d4f1-02b1-4cf4-9dd1-f3bef076656e/0__5cf3755a-4140-459d-ba3a-e4c42f34c6fa.webp?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres à Gatineau, 6 Rue Katimavik" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">6 Rue Katimavik</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1595$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/1075-boulevard-maloney-est/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/167980e1-91f0-4c50-9d79-c079730671ca/chatgpt-image-5-juin-2026-150918.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: maison spacieux de 3 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">1075 Boulevard Maloney Est</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 octobre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1425$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/130-rue-lombard/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/eba5ab26-2c0a-4768-8469-70d9c3aef8ad/chatgpt-image-4-mai-2026-155321.png?width=384&amp;height=384&amp;quality=80" alt="Location à Gatineau: logement de 2 chambres à louer, Halfred | Apartment rentals immobilier" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">130 Rue Lombard</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1295$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/23-rue-de-liverpool/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/ff199afb-12ea-45df-aa08-017ace88926d/chatgpt-image-11-mai-2026-095521.png?width=384&amp;height=384&amp;quality=80" alt="maison Halfred | Apartment rentals à louer à Gatineau: 1 chambres, 23 Rue De Liverpool" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">23 Rue De Liverpool</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1250$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/16-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/140f3eca-df2c-4ab3-922a-ee5dcbad432f/chatgpt-image-5-juin-2026-153827.png?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals: unité à louer, 3 chambres, 16 Rue De La Fabrique, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">Unnamed Building</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Aylmer)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1804$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/26-boulevard-d-amsterdam/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/ca884e1e-5cd9-4871-9497-28ba5f212791/955katimavik-19.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: logement spacieux de 1 chambres à louer à Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">26 Bd d&#x27;Amsterdam, Gatineau</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">600<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1275$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/4-rue-katimavik/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/d4b45d49-f0ca-4d3a-9ce9-36e58bfebee1/955katimavik-19.jpg?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement 2 chambres à Gatineau, 4 Rue Katimavik" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">4 Katimavik</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1695$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/46-rue-de-la-fabrique/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/19b68190-c4a1-49da-ad12-5f91e07a96a5/chatgpt-image-10-juin-2026-105814.png?width=384&amp;height=384&amp;quality=80" alt="Location à Gatineau: appartement de 3 chambres à louer, Halfred | Apartment rentals immobilier" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">46 fabrique</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">3<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Gatineau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1804$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/6-rue-des-beaux-arts/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/578ff7aa-8048-43d4-8d36-23154bc95d01/5cd59b082d009-5f1291fb.jpg?width=384&amp;height=384&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement spacieux, 2 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">6 rue des Beaux-Arts</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (plateau)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 1 septembre 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1650$</b> par mois</span></p></div></div></div></a><a class="relative min-w-0 rounded-xl group block w-full duration-75" data-sentry-element="Container" data-sentry-component="ListingCard" data-sentry-source-file="listing-card.tsx" href="/listings/25-rue-des-flandres/details" data-discover="true"><div class="relative overflow-hidden rounded-xl"><div class="absolute z-10 top-2 right-2"><span class="px-3 py-1 rounded-full text-xs font-medium shadow-md bg-warning text-warning-foreground">Dernières unités</span></div><img src="/storage/v1/render/image/public/halfred/buildings/be36cf3f-00b1-47f5-a05e-7e69aff700da/25_Rue_des_Flandres_17-01.jpg?width=384&amp;height=384&amp;quality=80" alt="Halfred | Apartment rentals immobilier: unité à louer, 2 chambres, Gatineau" loading="lazy" class="object-cover transition-transform duration-300 [@media(hover:hover)]:group-hover:scale-[1.10] [@media(hover:hover)]:group-hover:duration-500 aspect-square w-full rounded-xl" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div><div class="p-3"><div class="flex w-full flex-col space-y-2 text-left"><div><h1 class="mb-2 break-words text-lg font-medium leading-snug text-foreground">25 Rue Des Flandres</h1></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bed-double"></span><p class="min-w-0 break-words">2<!-- --> <!-- -->chambres</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-map-pin"></span><p class="min-w-0 break-words">Gatineau (Touraine)</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-bath"></span><p class="min-w-0 break-words">1<!-- --> <!-- -->salle de bain</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-ruler"></span><p class="min-w-0 break-words">750<!-- --> <!-- -->pieds carrés</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><span class="h-5 w-5 shrink-0 icon-lucide-calendar"></span><p class="min-w-0 break-words">Disponible le 15 août 2026</p></div><div class="flex min-w-0 grow items-center gap-2 text-[#717171] dark:text-gray-400" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-card.tsx"><p class="min-w-0 break-words"><span class="inline-flex flex-wrap items-baseline gap-x-2"><b>1400$</b> par mois</span></p></div></div></div></a></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-primary" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/listings-list.page-5ytyyUg4.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicListingsListPage": {
338 − "id": "PublicListingsListPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/list",
341 − "hasAction": false,
342 − "hasLoader": false,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": false,
348 − "module": "/assets/listings-list.page-5ytyyUg4.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/listing-card-vLpuwroq.js",
354 − "/assets/types-BlrrbiGM.js",
355 − "/assets/use-tenant-BWWCVgWC.js",
356 − "/assets/settings.types-DE5bLdHg.js",
357 − "/assets/index-C5vezUBD.js",
358 − "/assets/client-COEiaTPU.js",
359 − "/assets/index-Jaw8JklF.js",
360 − "/assets/index-DoORTE4j.js",
361 − "/assets/icon-ChitaFhd.js",
362 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
363 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
364 − "/assets/useProgressBar-BHwKhJ6d.js",
365 − "/assets/preload-helper-Djj1Qpxo.js",
366 − "/assets/index-yaZ7Ke31.js",
367 − "/assets/number-BTko6OQO.js",
368 − "/assets/useLabel-C485U_L6.js",
369 − "/assets/useLabels-DROhzITC.js",
370 − "/assets/useNumberFormatter-CoKItVmT.js",
371 − "/assets/context-wzUK1HrR.js",
372 − "/assets/NumberFormatter-C5-jiHvj.js",
373 − "/assets/index-tlxTS5dy.js",
374 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
375 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
376 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
377 − "/assets/mergeRefs-BAuglitV.js",
378 − "/assets/useControlledState-XDkshuLc.js",
379 − "/assets/FocusScope-DMvIZi1w.js",
380 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
381 − "/assets/useField-Bmx16mGJ.js",
382 − "/assets/useFormValidation-DV_spCMP.js",
383 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
384 − "/assets/date-CSj-D1fs.js",
385 − "/assets/CalendarDate-ecH25Spu.js",
386 − "/assets/format-leGP5Oeh.js",
387 − "/assets/show-4ksMJO84.js",
388 − "/assets/listingTypes-DriVo5bw.js",
389 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
390 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
391 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
392 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
393 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
394 − "/assets/useButton-DpP98b4N.js",
395 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
396 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
397 − "/assets/index-3DzB9Uk2.js",
398 − "/assets/accelerated-values-Ceq7jgwI.js",
399 − "/assets/useTreeState-Dqa76uUL.js",
400 − "/assets/SelectionManager-8Hskx3sY.js",
401 − "/assets/scrollIntoView-CC6GVFhU.js",
402 − "/assets/isScrollable-BgFbDMO0.js",
403 − "/assets/index-CeC9Jgeb.js",
404 − "/assets/useSelectableList-CXujeS_9.js",
405 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
406 − "/assets/useCollator-Fuf-UA_6.js",
407 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
408 − "/assets/index-D-QzV5oA.js",
409 − "/assets/Item-DkDXZBz9.js",
410 − "/assets/use-is-iframe-DMIWGDya.js",
411 − "/assets/floor-label-CflkOBoK.js",
412 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
413 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
414 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
415 − "/assets/storage-image-C6eMpyTJ.js",
416 − "/assets/debug-build-DNp6-6bg.js",
417 − "/assets/empty-image-BpIKAHRR.js",
418 − "/assets/storage-jxJOIM7G.js",
419 − "/assets/eversa-modal-BB1_Xp8i.js",
420 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
421 − "/assets/useDialog-gW_0vaQG.js",
422 − "/assets/VisuallyHidden-Bws6oXbu.js",
423 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
424 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
425 − "/assets/useOverlayTriggerState-BxqwFvox.js",
426 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
427 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
428 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
429 − "/assets/proxy-DfkJuQz0.js",
430 − "/assets/create-visual-element-ZgQz5_Xg.js",
431 − "/assets/layout-D897SnWT.js",
432 − "/assets/link-DBd_8VBO.js",
433 − "/assets/chunk-T45N425O-C34bNx0L.js",
434 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
435 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
436 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
437 − "/assets/index-C3aLSQj3.js",
438 − "/assets/useModal-CeS5iZMH.js",
439 − "/assets/exports-mapbox-Bx3w98cJ.js",
440 − "/assets/index-7d5art0_.js",
441 − "/assets/rich-text-display-BlrZ_1h7.js",
442 − "/assets/utils-CvVRVFAc.js",
443 − "/assets/signature-block-C-ZZEVGr.js",
444 − "/assets/index-BnPmUpYq.js",
445 − "/assets/use-rich-text-editor-osHrkC4A.js",
446 − "/assets/client-only-BvFCVX3P.js",
447 − "/assets/use-hydrated-D950Dr4H.js",
448 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
449 − "/assets/chunk-M3MASYO7-D515YSCq.js",
450 − "/assets/create-rpc-stub-BbU9ptcF.js",
451 − "/assets/index-BL9R5Cz9.js",
452 − "/assets/zod-DGDtP7Md.js",
453 − "/assets/use-server-command-CsT9c6Aj.js",
454 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
455 − "/assets/form-hidden-input-PkDAaWy5.js",
456 − "/assets/form-input-CIKylvmI.js",
457 − "/assets/input-B_zvg1Nd.js",
458 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
459 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
460 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
461 − "/assets/useControlledState-DQzmlyV_.js",
462 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
463 − "/assets/extends-BQWZ3hUO.js",
464 − "/assets/system-preferences-DWMBYQ-w.js",
465 − "/assets/app-form-D4qVp9Qh.js",
466 − "/assets/button-CI3vN0fP.js",
467 − "/assets/spinner-DfOLdSP8.js",
468 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
469 − "/assets/index-D0MIspu5.js",
470 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
471 − "/assets/use-in-view-BcUotcrM.js",
472 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
473 − ],
474 − "css": [
475 − "/assets/listing-card-BJU93aco.css",
476 − "/assets/use-rich-text-editor-D9Rskyfk.css"
477 − ]
478 − },
479 − "PublicHomePage": {
480 − "id": "PublicHomePage",
481 − "parentId": "root",
482 − "path": "/",
483 − "hasAction": false,
484 − "hasLoader": true,
485 − "hasClientAction": false,
486 − "hasClientLoader": false,
487 − "hasClientMiddleware": false,
488 − "hasDefaultExport": true,
489 − "hasErrorBoundary": false,
490 − "module": "/assets/home.page-DrgK_VTF.js",
491 − "imports": [
492 − "/assets/chunk-QUQL4437-DDCENzgx.js",
493 − "/assets/jsx-runtime-BfnRc3yc.js",
494 − "/assets/runtime-DIxKkQKN.js",
495 − "/assets/facebook-pixel-DaCAk2xn.js",
496 − "/assets/google-analytics-ktjxgVBo.js",
497 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
498 − "/assets/global-progress-_e55169v.js",
499 − "/assets/header-DHYopbVz.js",
500 − "/assets/footer-B1woW9rk.js",
501 − "/assets/listing-card-vLpuwroq.js",
502 − "/assets/types-BlrrbiGM.js",
503 − "/assets/index-Jaw8JklF.js",
504 − "/assets/index-DoORTE4j.js",
505 − "/assets/lead-capture-layout-wo2JbEWc.js",
506 − "/assets/storage-image-C6eMpyTJ.js",
507 − "/assets/debug-build-DNp6-6bg.js",
508 − "/assets/empty-image-BpIKAHRR.js",
509 − "/assets/storage-jxJOIM7G.js",
510 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
511 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
512 − "/assets/icon-ChitaFhd.js",
513 − "/assets/language-switcher-B_wuY4E-.js",
514 − "/assets/use-auth-D5U5KUh0.js",
515 − "/assets/eversa-modal-BB1_Xp8i.js",
516 − "/assets/index-C5vezUBD.js",
517 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
518 − "/assets/preload-helper-Djj1Qpxo.js",
519 − "/assets/index-yaZ7Ke31.js",
520 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
521 − "/assets/useDialog-gW_0vaQG.js",
522 − "/assets/VisuallyHidden-Bws6oXbu.js",
523 − "/assets/isScrollable-BgFbDMO0.js",
524 − "/assets/useLabels-DROhzITC.js",
525 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
526 − "/assets/context-wzUK1HrR.js",
527 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
528 − "/assets/FocusScope-DMvIZi1w.js",
529 − "/assets/index-CeC9Jgeb.js",
530 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
531 − "/assets/useOverlayTriggerState-BxqwFvox.js",
532 − "/assets/useControlledState-XDkshuLc.js",
533 − "/assets/mergeRefs-BAuglitV.js",
534 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
535 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
536 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
537 − "/assets/proxy-DfkJuQz0.js",
538 − "/assets/create-visual-element-ZgQz5_Xg.js",
539 − "/assets/accelerated-values-Ceq7jgwI.js",
540 − "/assets/layout-D897SnWT.js",
541 − "/assets/use-email-otp-auth-Dotj0x79.js",
542 − "/assets/useFormValidation-DV_spCMP.js",
543 − "/assets/useControlledState-DQzmlyV_.js",
544 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
545 − "/assets/chunk-T45N425O-C34bNx0L.js",
546 − "/assets/roles-DMMiQTyo.js",
547 − "/assets/modal-BFX8Hcaa.js",
548 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
549 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
550 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
551 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
552 − "/assets/index-DtAX5rCj.js",
553 − "/assets/index-BWrthP4T.js",
554 − "/assets/index-C3aLSQj3.js",
555 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
556 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
557 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
558 − "/assets/useField-Bmx16mGJ.js",
559 − "/assets/useLabel-C485U_L6.js",
560 − "/assets/chunk-M3MASYO7-D515YSCq.js",
561 − "/assets/user-menu-DExrpneA.js",
562 − "/assets/use-show-profile-modal-BkxThqgM.js",
563 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
564 − "/assets/Section-C964evx_.js",
565 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
566 − "/assets/Item-DkDXZBz9.js",
567 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
568 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
569 − "/assets/number-BTko6OQO.js",
570 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
571 − "/assets/getItemCount-Crui8d86.js",
572 − "/assets/SelectionManager-8Hskx3sY.js",
573 − "/assets/scrollIntoView-CC6GVFhU.js",
574 − "/assets/useSelectableItem-CAYhKQ6f.js",
575 − "/assets/useDescription-C0BDNkOP.js",
576 − "/assets/index-D0MIspu5.js",
577 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
578 − "/assets/useSelectableList-CXujeS_9.js",
579 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
580 − "/assets/useCollator-Fuf-UA_6.js",
581 − "/assets/useTreeState-Dqa76uUL.js",
582 − "/assets/useMenuTriggerState-BqO-tvnv.js",
583 − "/assets/useMenuTrigger-D7_8ZcRM.js",
584 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
585 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
586 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
587 − "/assets/index-B9ugVS9k.js",
588 − "/assets/show-4ksMJO84.js",
589 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
590 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
591 − "/assets/use-tenant-BWWCVgWC.js",
592 − "/assets/listingTypes-DriVo5bw.js",
593 − "/assets/floor-label-CflkOBoK.js",
594 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
595 − "/assets/useNumberFormatter-CoKItVmT.js",
596 − "/assets/NumberFormatter-C5-jiHvj.js",
597 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
598 − "/assets/useModal-CeS5iZMH.js",
599 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
600 − "/assets/useToggleState-CuQlkmOj.js",
601 − "/assets/useToggle-DvTjx68e.js",
602 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
603 − "/assets/useButton-DpP98b4N.js",
604 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
605 − "/assets/index-3DzB9Uk2.js",
606 − "/assets/index-D-QzV5oA.js",
607 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
608 − "/assets/index-7d5art0_.js",
609 − "/assets/use-debounce-C3COWfZf.js",
610 − "/assets/use-debounced-callback-y3H-ARAr.js",
611 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
612 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
613 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
614 − "/assets/settings.types-DE5bLdHg.js",
615 − "/assets/client-COEiaTPU.js",
616 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
617 − "/assets/useProgressBar-BHwKhJ6d.js",
618 − "/assets/index-tlxTS5dy.js",
619 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
620 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
621 − "/assets/date-CSj-D1fs.js",
622 − "/assets/CalendarDate-ecH25Spu.js",
623 − "/assets/format-leGP5Oeh.js",
624 − "/assets/use-is-iframe-DMIWGDya.js",
625 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
626 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
627 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
628 − "/assets/link-DBd_8VBO.js",
629 − "/assets/exports-mapbox-Bx3w98cJ.js",
630 − "/assets/rich-text-display-BlrZ_1h7.js",
631 − "/assets/utils-CvVRVFAc.js",
632 − "/assets/signature-block-C-ZZEVGr.js",
633 − "/assets/index-BnPmUpYq.js",
634 − "/assets/use-rich-text-editor-osHrkC4A.js",
635 − "/assets/client-only-BvFCVX3P.js",
636 − "/assets/use-hydrated-D950Dr4H.js",
637 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
638 − "/assets/create-rpc-stub-BbU9ptcF.js",
639 − "/assets/index-BL9R5Cz9.js",
640 − "/assets/zod-DGDtP7Md.js",
641 − "/assets/use-server-command-CsT9c6Aj.js",
642 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
643 − "/assets/form-hidden-input-PkDAaWy5.js",
644 − "/assets/form-input-CIKylvmI.js",
645 − "/assets/input-B_zvg1Nd.js",
646 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
647 − "/assets/extends-BQWZ3hUO.js",
648 − "/assets/system-preferences-DWMBYQ-w.js",
649 − "/assets/app-form-D4qVp9Qh.js",
650 − "/assets/button-CI3vN0fP.js",
651 − "/assets/spinner-DfOLdSP8.js",
652 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
653 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
654 − "/assets/use-in-view-BcUotcrM.js",
655 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
656 − ],
657 − "css": [
658 − "/assets/listing-card-BJU93aco.css",
659 − "/assets/use-rich-text-editor-D9Rskyfk.css"
660 − ]
661 − },
662 − "PublicListingsIndexPage": {
663 − "id": "PublicListingsIndexPage",
664 − "parentId": "PublicListingsLayoutPage",
665 − "path": "/listings",
666 − "hasAction": false,
667 − "hasLoader": false,
668 − "hasClientAction": false,
669 − "hasClientLoader": false,
670 − "hasClientMiddleware": false,
671 − "hasDefaultExport": true,
672 − "hasErrorBoundary": false,
673 − "module": "/assets/listings-index.page-DAV3YHK6.js",
674 − "imports": [
675 − "/assets/chunk-QUQL4437-DDCENzgx.js",
676 − "/assets/jsx-runtime-BfnRc3yc.js",
677 − "/assets/runtime-DIxKkQKN.js",
678 − "/assets/listing-card-vLpuwroq.js",
679 − "/assets/types-BlrrbiGM.js",
680 − "/assets/use-tenant-BWWCVgWC.js",
681 − "/assets/settings.types-DE5bLdHg.js",
682 − "/assets/index-C5vezUBD.js",
683 − "/assets/client-COEiaTPU.js",
684 − "/assets/index-Jaw8JklF.js",
685 − "/assets/index-DoORTE4j.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
688 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
689 − "/assets/useProgressBar-BHwKhJ6d.js",
690 − "/assets/preload-helper-Djj1Qpxo.js",
691 − "/assets/index-yaZ7Ke31.js",
692 − "/assets/number-BTko6OQO.js",
693 − "/assets/useLabel-C485U_L6.js",
694 − "/assets/useLabels-DROhzITC.js",
695 − "/assets/useNumberFormatter-CoKItVmT.js",
696 − "/assets/context-wzUK1HrR.js",
697 − "/assets/NumberFormatter-C5-jiHvj.js",
698 − "/assets/index-tlxTS5dy.js",
699 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
700 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
701 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
702 − "/assets/mergeRefs-BAuglitV.js",
703 − "/assets/useControlledState-XDkshuLc.js",
704 − "/assets/FocusScope-DMvIZi1w.js",
705 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
706 − "/assets/useField-Bmx16mGJ.js",
707 − "/assets/useFormValidation-DV_spCMP.js",
708 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
709 − "/assets/date-CSj-D1fs.js",
710 − "/assets/CalendarDate-ecH25Spu.js",
711 − "/assets/format-leGP5Oeh.js",
712 − "/assets/show-4ksMJO84.js",
713 − "/assets/listingTypes-DriVo5bw.js",
714 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
715 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
716 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
717 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
718 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
719 − "/assets/useButton-DpP98b4N.js",
720 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
721 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
722 − "/assets/index-3DzB9Uk2.js",
723 − "/assets/accelerated-values-Ceq7jgwI.js",
724 − "/assets/useTreeState-Dqa76uUL.js",
725 − "/assets/SelectionManager-8Hskx3sY.js",
726 − "/assets/scrollIntoView-CC6GVFhU.js",
727 − "/assets/isScrollable-BgFbDMO0.js",
728 − "/assets/index-CeC9Jgeb.js",
729 − "/assets/useSelectableList-CXujeS_9.js",
730 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
731 − "/assets/useCollator-Fuf-UA_6.js",
732 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
733 − "/assets/index-D-QzV5oA.js",
734 − "/assets/Item-DkDXZBz9.js",
735 − "/assets/use-is-iframe-DMIWGDya.js",
736 − "/assets/floor-label-CflkOBoK.js",
737 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
738 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
739 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
740 − "/assets/storage-image-C6eMpyTJ.js",
741 − "/assets/debug-build-DNp6-6bg.js",
742 − "/assets/empty-image-BpIKAHRR.js",
743 − "/assets/storage-jxJOIM7G.js",
744 − "/assets/eversa-modal-BB1_Xp8i.js",
745 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
746 − "/assets/useDialog-gW_0vaQG.js",
747 − "/assets/VisuallyHidden-Bws6oXbu.js",
748 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
749 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
750 − "/assets/useOverlayTriggerState-BxqwFvox.js",
751 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
752 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
753 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
754 − "/assets/proxy-DfkJuQz0.js",
755 − "/assets/create-visual-element-ZgQz5_Xg.js",
756 − "/assets/layout-D897SnWT.js",
757 − "/assets/link-DBd_8VBO.js",
758 − "/assets/chunk-T45N425O-C34bNx0L.js",
759 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
760 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
761 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
762 − "/assets/index-C3aLSQj3.js",
763 − "/assets/useModal-CeS5iZMH.js",
764 − "/assets/exports-mapbox-Bx3w98cJ.js",
765 − "/assets/index-7d5art0_.js",
766 − "/assets/rich-text-display-BlrZ_1h7.js",
767 − "/assets/utils-CvVRVFAc.js",
768 − "/assets/signature-block-C-ZZEVGr.js",
769 − "/assets/index-BnPmUpYq.js",
770 − "/assets/use-rich-text-editor-osHrkC4A.js",
771 − "/assets/client-only-BvFCVX3P.js",
772 − "/assets/use-hydrated-D950Dr4H.js",
773 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
774 − "/assets/chunk-M3MASYO7-D515YSCq.js",
775 − "/assets/create-rpc-stub-BbU9ptcF.js",
776 − "/assets/index-BL9R5Cz9.js",
777 − "/assets/zod-DGDtP7Md.js",
778 − "/assets/use-server-command-CsT9c6Aj.js",
779 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
780 − "/assets/form-hidden-input-PkDAaWy5.js",
781 − "/assets/form-input-CIKylvmI.js",
782 − "/assets/input-B_zvg1Nd.js",
783 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
784 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
785 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
786 − "/assets/useControlledState-DQzmlyV_.js",
787 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
788 − "/assets/extends-BQWZ3hUO.js",
789 − "/assets/system-preferences-DWMBYQ-w.js",
790 − "/assets/app-form-D4qVp9Qh.js",
791 − "/assets/button-CI3vN0fP.js",
792 − "/assets/spinner-DfOLdSP8.js",
793 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
794 − "/assets/index-D0MIspu5.js",
795 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
796 − "/assets/use-in-view-BcUotcrM.js",
797 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
798 − ],
799 − "css": [
800 − "/assets/listing-card-BJU93aco.css",
801 − "/assets/use-rich-text-editor-D9Rskyfk.css"
802 − ]
803 − }
804 − },
805 − "url": "/assets/manifest-61bb538b.js",
806 − "version": "61bb538b"
807 −};
808 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicListingsListPage":route2};
809 −
810 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8},\"actionData\",\"errors\",\"root\",{\"_2814\":-5,\"_2815\":-7,\"_2816\":2817,\"_2818\":2819,\"_2820\":240,\"_9\":2821,\"_2822\":-5,\"_2823\":2824,\"_21\":22,\"_2825\":-5,\"_2826\":-5},\"PublicListingsLayoutPage\",{\"_9\":10,\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22,\"_23\":24,\"_25\":24,\"_26\":24},\"tenant\",{\"_2737\":2738,\"_2739\":2740,\"_49\":2741,\"_2742\":2743,\"_2744\":2745,\"_565\":2746,\"_2747\":-7,\"_2748\":2749,\"_236\":2750,\"_2751\":2752,\"_2753\":-5,\"_233\":2754,\"_2755\":2756,\"_2757\":-5,\"_594\":2758},\"listings\",[394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558],\"initialFilters\",{\"_131\":132,\"_133\":134,\"_135\":136,\"_137\":138,\"_139\":140,\"_141\":16,\"_142\":143,\"_144\":145,\"_146\":24,\"_147\":16,\"_148\":149,\"_150\":151},\"defaultView\",true,\"count\",165,\"filters\",{},\"configs\",{\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":28,\"_36\":37,\"_38\":39},\"isEmbed\",false,\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[117],\"analysisProductsPrice\",{\"_117\":118,\"_119\":120,\"_121\":122,\"_123\":124,\"_125\":122,\"_126\":122,\"_127\":128,\"_129\":130},\"notifications\",{\"_99\":100},\"form\",{\"_92\":16,\"_93\":24,\"_94\":16,\"_95\":16,\"_96\":24,\"_97\":24,\"_98\":24},\"enabledSkus\",\"submissions\",{\"_41\":42,\"_43\":44,\"_45\":46,\"_47\":48,\"_49\":50,\"_51\":-5},\"agent\",{\"_40\":24},\"hideAgentNewSubmissionBtn\",\"all\",[78,79,80,81,82,83,84,88,89,90,91],\"steps\",[78,79,80,81,82,83,84],\"badges\",[68,69,70,71,72,73],\"statuses\",[62,52,54,56,58,60,63,64,65,66,67],\"colors\",{\"_52\":53,\"_54\":55,\"_56\":57,\"_58\":59,\"_60\":61},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_74\":52,\"_76\":53},{\"_74\":54,\"_76\":55},{\"_74\":56,\"_76\":57},{\"_74\":58,\"_76\":59},{\"_74\":60,\"_76\":61},{\"_74\":75,\"_76\":77},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_74\":62,\"_76\":-5,\"_85\":24},{\"_74\":52,\"_76\":53,\"_85\":16,\"_86\":24,\"_87\":24},{\"_74\":54,\"_76\":55,\"_85\":16,\"_86\":24,\"_87\":24},{\"_74\":56,\"_76\":57,\"_85\":16,\"_86\":24,\"_87\":24},{\"_74\":58,\"_76\":59,\"_85\":16,\"_86\":24,\"_87\":24},{\"_74\":60,\"_76\":61,\"_85\":16,\"_86\":24,\"_87\":24},{\"_74\":63,\"_76\":-5,\"_85\":16},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_74\":64,\"_76\":-5,\"_85\":24},{\"_74\":65,\"_76\":-5,\"_85\":24},{\"_74\":66,\"_76\":-5,\"_85\":24},{\"_74\":67,\"_76\":-5,\"_85\":24},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_38\":101,\"_102\":103,\"_9\":104,\"_105\":106},[114,115,116],\"manager\",[],[108,109,110,111,112,113],\"admin\",[107],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,\"price\",[176,393],\"pricePerMonth\",[176,393],\"pricePerSqft\",[389,389],\"area\",[389,392],\"floor\",[391,172],\"hasFloor\",\"bathrooms\",[389,178],\"bedrooms\",[389,390],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232],\"availableNeighborhoods\",[152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169],{\"_170\":198,\"_17\":176},{\"_170\":197,\"_17\":176},{\"_170\":196,\"_17\":176},{\"_170\":194,\"_17\":195},{\"_170\":193,\"_17\":176},{\"_170\":192,\"_17\":178},{\"_170\":190,\"_17\":191},{\"_170\":188,\"_17\":189},{\"_170\":186,\"_17\":187},{\"_170\":185,\"_17\":178},{\"_170\":184,\"_17\":176},{\"_170\":182,\"_17\":183},{\"_170\":181,\"_17\":176},{\"_170\":179,\"_17\":180},{\"_170\":177,\"_17\":178},{\"_170\":175,\"_17\":176},{\"_170\":173,\"_17\":174},{\"_170\":171,\"_17\":172},\"name\",\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",1,\"Québec\",2,\"Pointe-Gatineau\",5,\"Plateau \",\"Plateau\",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,\"Gatineau\",39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"2\",\"1\",{\"_233\":385,\"_170\":386,\"_236\":258},{\"_233\":380,\"_170\":381,\"_236\":382},{\"_233\":376,\"_170\":377,\"_236\":237},{\"_233\":372,\"_170\":373,\"_236\":253},{\"_233\":367,\"_170\":368,\"_236\":369},{\"_233\":363,\"_170\":364,\"_236\":237},{\"_233\":358,\"_170\":359,\"_236\":360},{\"_233\":354,\"_170\":355,\"_236\":299},{\"_233\":350,\"_170\":351,\"_236\":253},{\"_233\":345,\"_170\":346,\"_236\":347},{\"_233\":341,\"_170\":342,\"_236\":244},{\"_233\":337,\"_170\":338,\"_236\":237},{\"_233\":333,\"_170\":334,\"_236\":286},{\"_233\":329,\"_170\":330,\"_236\":268},{\"_233\":324,\"_170\":325,\"_236\":326},{\"_233\":320,\"_170\":321,\"_236\":268},{\"_233\":315,\"_170\":316,\"_236\":317},{\"_233\":311,\"_170\":312,\"_236\":273},{\"_233\":306,\"_170\":307,\"_236\":308},{\"_233\":302,\"_170\":303,\"_236\":299},{\"_233\":297,\"_170\":298,\"_236\":299},{\"_233\":293,\"_170\":294,\"_236\":286},{\"_233\":289,\"_170\":290,\"_236\":291},{\"_233\":284,\"_170\":285,\"_236\":286},{\"_233\":280,\"_170\":281,\"_236\":244},{\"_233\":276,\"_170\":277,\"_236\":258},{\"_233\":271,\"_170\":272,\"_236\":273},{\"_233\":266,\"_170\":267,\"_236\":268},{\"_233\":261,\"_170\":262,\"_236\":263},{\"_233\":256,\"_170\":257,\"_236\":258},{\"_233\":251,\"_170\":252,\"_236\":253},{\"_233\":247,\"_170\":248,\"_236\":249},{\"_233\":242,\"_170\":243,\"_236\":244},{\"_233\":234,\"_170\":235,\"_236\":237},\"slug\",\"counter-type\",{\"_238\":239,\"_240\":241},\"icon\",\"lucide:check\",\"en\",\"Counter Type\",\"fr\",\"Type de comptoir\",\"yard-access\",{\"_238\":245,\"_240\":246},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_238\":250,\"_240\":250},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_238\":254,\"_240\":255},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_238\":259,\"_240\":260},\"lucide:car\",\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_238\":264,\"_240\":265},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_238\":269,\"_240\":270},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_238\":274,\"_240\":275},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_238\":278,\"_240\":279},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_238\":282,\"_240\":283},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_238\":287,\"_240\":288},\"lucide:washing-machine\",\"Dryer\",\"Sèche-linge\",\"gym\",{\"_238\":292,\"_240\":292},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_238\":295,\"_240\":296},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_238\":300,\"_240\":301},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_238\":304,\"_240\":305},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_238\":309,\"_240\":310},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_238\":313,\"_240\":314},\"Oven\",\"Four\",\"refrigerator\",{\"_238\":318,\"_240\":319},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_238\":322,\"_240\":323},\"Cable\",\"Câble\",\"stove\",{\"_238\":327,\"_240\":328},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_238\":331,\"_240\":332},\"Fiber Internet\",\"Internet fibre\",\"washer\",{\"_238\":335,\"_240\":336},\"Washer\",\"Laveuse\",\"elevator\",{\"_238\":339,\"_240\":340},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_238\":343,\"_240\":344},\"Balcony\",\"Balcon\",\"electricity\",{\"_238\":348,\"_240\":349},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"electric-heating\",{\"_238\":352,\"_240\":353},\"Electric Heating\",\"Chauffage Électrique\",\"cats-allowed\",{\"_238\":356,\"_240\":357},\"Cats Allowed\",\"Chats autorisés\",\"blinds\",{\"_238\":361,\"_240\":362},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_238\":365,\"_240\":366},\"Water Tank\",\"Réservoir d'eau\",\"washer-dryer-outlet\",{\"_238\":370,\"_240\":371},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"central-air-conditioning\",{\"_238\":374,\"_240\":375},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_238\":378,\"_240\":379},\"Dishwasher\",\"Lave-vaisselle\",\"water\",{\"_238\":383,\"_240\":384},\"lucide:droplet\",\"Water\",\"Eau\",\"parking\",{\"_238\":387,\"_240\":388},\"Parking\",\"Stationnement\",0,4,-1,2063,3050,{\"_559\":2724,\"_561\":2665,\"_563\":2725,\"_565\":2726,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2727,\"_571\":2728,\"_573\":1768,\"_575\":2384,\"_577\":188,\"_578\":700,\"_579\":2729,\"_581\":2730,\"_583\":24,\"_584\":2731,\"_586\":2732,\"_588\":2728,\"_589\":188,\"_590\":2727,\"_591\":700,\"_592\":2729,\"_593\":2730,\"_594\":2733,\"_595\":2734,\"_131\":2169,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2169,\"_615\":-5,\"_616\":1107,\"_617\":-5,\"_618\":-5},{\"_559\":2704,\"_561\":2665,\"_563\":2705,\"_565\":2706,\"_567\":2707,\"_568\":24,\"_569\":2668,\"_233\":2708,\"_571\":2709,\"_573\":2710,\"_575\":2711,\"_577\":2712,\"_578\":700,\"_579\":2713,\"_581\":2714,\"_583\":24,\"_584\":2715,\"_586\":2716,\"_588\":2709,\"_589\":2712,\"_590\":2708,\"_591\":700,\"_592\":2713,\"_593\":2714,\"_594\":2717,\"_595\":2183,\"_131\":2718,\"_144\":1134,\"_142\":198,\"_137\":2719,\"_599\":16,\"_600\":2678,\"_601\":24,\"_602\":2720,\"_604\":2678,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2718,\"_615\":-5,\"_616\":2721,\"_617\":-5,\"_2681\":390,\"_618\":-5},{\"_559\":2687,\"_561\":2665,\"_563\":2688,\"_565\":2689,\"_567\":-5,\"_568\":24,\"_569\":2668,\"_233\":2690,\"_571\":2691,\"_573\":2692,\"_575\":1445,\"_577\":188,\"_578\":700,\"_579\":2693,\"_581\":2694,\"_583\":24,\"_584\":2695,\"_586\":2696,\"_588\":2691,\"_589\":188,\"_590\":2690,\"_591\":700,\"_592\":2693,\"_593\":2694,\"_594\":2697,\"_595\":2464,\"_131\":718,\"_144\":815,\"_142\":198,\"_137\":2698,\"_599\":16,\"_600\":2640,\"_601\":16,\"_602\":2699,\"_604\":2640,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":718,\"_615\":-5,\"_616\":2700,\"_617\":-5,\"_2681\":926,\"_618\":-5},{\"_559\":2664,\"_561\":2665,\"_563\":2666,\"_565\":2667,\"_567\":-5,\"_568\":24,\"_569\":2668,\"_233\":2669,\"_571\":2670,\"_573\":2671,\"_575\":760,\"_577\":188,\"_578\":700,\"_579\":2672,\"_581\":2673,\"_583\":24,\"_584\":2674,\"_586\":2675,\"_588\":2670,\"_589\":188,\"_590\":2669,\"_591\":700,\"_592\":2672,\"_593\":2673,\"_594\":2676,\"_595\":2565,\"_131\":2451,\"_144\":1134,\"_142\":198,\"_137\":2677,\"_599\":16,\"_600\":2678,\"_601\":16,\"_602\":2679,\"_604\":2678,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2451,\"_615\":-5,\"_616\":2680,\"_617\":-5,\"_2681\":926,\"_618\":-5},{\"_559\":2654,\"_561\":562,\"_563\":2655,\"_565\":2656,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2657,\"_571\":2658,\"_573\":641,\"_575\":2011,\"_577\":188,\"_578\":188,\"_579\":2659,\"_581\":2660,\"_583\":24,\"_584\":2661,\"_586\":2662,\"_588\":2658,\"_589\":188,\"_590\":2657,\"_591\":188,\"_592\":2659,\"_593\":2660,\"_594\":1423,\"_595\":1652,\"_131\":2096,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2096,\"_615\":-5,\"_616\":1214,\"_617\":-5,\"_618\":-5},{\"_559\":2642,\"_561\":562,\"_563\":2643,\"_565\":2644,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2645,\"_571\":2646,\"_573\":698,\"_575\":2647,\"_577\":188,\"_578\":182,\"_579\":2648,\"_581\":2649,\"_583\":24,\"_584\":2650,\"_586\":2651,\"_588\":2646,\"_589\":188,\"_590\":2645,\"_591\":182,\"_592\":2648,\"_593\":2649,\"_594\":2646,\"_595\":1254,\"_131\":633,\"_144\":197,\"_142\":198,\"_137\":2566,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":633,\"_615\":-5,\"_616\":2652,\"_617\":-5,\"_618\":-5},{\"_559\":2630,\"_561\":562,\"_563\":2631,\"_565\":2632,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2633,\"_571\":2634,\"_573\":2537,\"_575\":2635,\"_577\":188,\"_578\":188,\"_579\":2636,\"_581\":2637,\"_583\":24,\"_584\":2638,\"_586\":2639,\"_588\":2634,\"_589\":188,\"_590\":2633,\"_591\":188,\"_592\":2636,\"_593\":2637,\"_594\":2634,\"_595\":1254,\"_131\":650,\"_144\":197,\"_142\":198,\"_137\":899,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":2640,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":650,\"_615\":-5,\"_616\":898,\"_617\":-5,\"_618\":-5},{\"_559\":2619,\"_561\":562,\"_563\":2620,\"_565\":1020,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2621,\"_571\":2622,\"_573\":1353,\"_575\":2623,\"_577\":188,\"_578\":188,\"_579\":2624,\"_581\":2625,\"_583\":24,\"_584\":2626,\"_586\":2627,\"_588\":2622,\"_589\":188,\"_590\":2621,\"_591\":188,\"_592\":2624,\"_593\":2625,\"_594\":2628,\"_595\":1462,\"_131\":2026,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2026,\"_615\":-5,\"_616\":925,\"_617\":-5,\"_618\":-5},{\"_559\":2607,\"_561\":562,\"_563\":2608,\"_565\":2609,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2610,\"_571\":2611,\"_573\":1353,\"_575\":2612,\"_577\":188,\"_578\":188,\"_579\":2613,\"_581\":2614,\"_583\":24,\"_584\":2615,\"_586\":2616,\"_588\":2611,\"_589\":188,\"_590\":2610,\"_591\":188,\"_592\":2613,\"_593\":2614,\"_594\":2617,\"_595\":1254,\"_131\":1937,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1937,\"_615\":-5,\"_616\":633,\"_617\":-5,\"_618\":-5},{\"_559\":2595,\"_561\":562,\"_563\":2596,\"_565\":2597,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2598,\"_571\":2599,\"_573\":2223,\"_575\":907,\"_577\":188,\"_578\":186,\"_579\":2600,\"_581\":2601,\"_583\":24,\"_584\":2602,\"_586\":2603,\"_588\":2599,\"_589\":188,\"_590\":2598,\"_591\":186,\"_592\":2600,\"_593\":2601,\"_594\":2599,\"_595\":2604,\"_131\":2327,\"_144\":1134,\"_142\":198,\"_137\":2605,\"_599\":16,\"_600\":191,\"_601\":24,\"_602\":172,\"_604\":191,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2327,\"_615\":-5,\"_616\":678,\"_617\":-5,\"_618\":-5},{\"_559\":2583,\"_561\":562,\"_563\":2584,\"_565\":2585,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2586,\"_571\":2587,\"_573\":2223,\"_575\":2588,\"_577\":188,\"_578\":700,\"_579\":2589,\"_581\":2590,\"_583\":24,\"_584\":2591,\"_586\":2592,\"_588\":2587,\"_589\":188,\"_590\":2586,\"_591\":700,\"_592\":2589,\"_593\":2590,\"_594\":2587,\"_595\":1652,\"_131\":2303,\"_144\":197,\"_142\":198,\"_137\":719,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2303,\"_615\":-5,\"_616\":2593,\"_617\":-5,\"_618\":-5},{\"_559\":2568,\"_561\":562,\"_563\":2569,\"_565\":2570,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2571,\"_571\":2572,\"_573\":2573,\"_575\":2574,\"_577\":188,\"_578\":188,\"_579\":2575,\"_581\":2576,\"_583\":24,\"_584\":2577,\"_586\":2578,\"_588\":2572,\"_589\":188,\"_590\":2571,\"_591\":188,\"_592\":2575,\"_593\":2576,\"_594\":2579,\"_595\":2580,\"_131\":2516,\"_144\":815,\"_142\":1134,\"_137\":2581,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":178,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2516,\"_615\":-5,\"_616\":705,\"_617\":-5,\"_618\":-5},{\"_559\":2555,\"_561\":562,\"_563\":2556,\"_565\":2557,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2558,\"_571\":2559,\"_573\":698,\"_575\":2560,\"_577\":188,\"_578\":182,\"_579\":2561,\"_581\":2562,\"_583\":24,\"_584\":2563,\"_586\":2564,\"_588\":2559,\"_589\":188,\"_590\":2558,\"_591\":182,\"_592\":2561,\"_593\":2562,\"_594\":2559,\"_595\":2565,\"_131\":1937,\"_144\":197,\"_142\":198,\"_137\":2566,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1937,\"_615\":-5,\"_616\":633,\"_617\":-5,\"_618\":-5},{\"_559\":2543,\"_561\":562,\"_563\":2544,\"_565\":2545,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2546,\"_571\":2547,\"_573\":2276,\"_575\":2548,\"_577\":193,\"_578\":700,\"_579\":2549,\"_581\":2550,\"_583\":24,\"_584\":2551,\"_586\":2552,\"_588\":2547,\"_589\":193,\"_590\":2546,\"_591\":700,\"_592\":2549,\"_593\":2550,\"_594\":2547,\"_595\":1411,\"_131\":2553,\"_144\":197,\"_142\":198,\"_137\":719,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":172,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2553,\"_615\":-5,\"_616\":1268,\"_617\":-5,\"_618\":-5},{\"_559\":2532,\"_561\":562,\"_563\":2533,\"_565\":2534,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2535,\"_571\":2536,\"_573\":2537,\"_575\":907,\"_577\":188,\"_578\":188,\"_579\":2538,\"_581\":2539,\"_583\":24,\"_584\":2540,\"_586\":2541,\"_588\":2536,\"_589\":188,\"_590\":2535,\"_591\":188,\"_592\":2538,\"_593\":2539,\"_594\":2536,\"_595\":1319,\"_131\":719,\"_144\":197,\"_142\":198,\"_137\":899,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":762,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":719,\"_615\":-5,\"_616\":705,\"_617\":-5,\"_618\":-5},{\"_559\":2518,\"_561\":562,\"_563\":2519,\"_565\":2520,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2521,\"_571\":2522,\"_573\":2523,\"_575\":2524,\"_577\":188,\"_578\":186,\"_579\":2525,\"_581\":2526,\"_583\":24,\"_584\":2527,\"_586\":2528,\"_588\":2522,\"_589\":188,\"_590\":2521,\"_591\":186,\"_592\":2525,\"_593\":2526,\"_594\":2522,\"_595\":1462,\"_131\":2529,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":926,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2529,\"_615\":-5,\"_616\":2530,\"_617\":-5,\"_618\":-5},{\"_559\":2506,\"_561\":562,\"_563\":2507,\"_565\":2508,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2509,\"_571\":2510,\"_573\":1708,\"_575\":1720,\"_577\":188,\"_578\":198,\"_579\":2511,\"_581\":2512,\"_583\":24,\"_584\":2513,\"_586\":2514,\"_588\":2510,\"_589\":188,\"_590\":2509,\"_591\":198,\"_592\":2511,\"_593\":2512,\"_594\":2515,\"_595\":1254,\"_131\":2516,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":178,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2516,\"_615\":-5,\"_616\":705,\"_617\":-5,\"_618\":-5},{\"_559\":2494,\"_561\":562,\"_563\":2495,\"_565\":2496,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2497,\"_571\":2498,\"_573\":1101,\"_575\":2372,\"_577\":188,\"_578\":194,\"_579\":2499,\"_581\":2500,\"_583\":24,\"_584\":2501,\"_586\":2502,\"_588\":2498,\"_589\":188,\"_590\":2497,\"_591\":194,\"_592\":2499,\"_593\":2500,\"_594\":2498,\"_595\":1254,\"_131\":2503,\"_144\":197,\"_142\":198,\"_137\":634,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":172,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2503,\"_615\":-5,\"_616\":2504,\"_617\":-5,\"_618\":-5},{\"_559\":2482,\"_561\":562,\"_563\":2483,\"_565\":2484,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2485,\"_571\":2486,\"_573\":2383,\"_575\":1209,\"_577\":188,\"_578\":700,\"_579\":2487,\"_581\":2488,\"_583\":24,\"_584\":2489,\"_586\":2490,\"_588\":2486,\"_589\":188,\"_590\":2485,\"_591\":700,\"_592\":2487,\"_593\":2488,\"_594\":2491,\"_595\":1652,\"_131\":2492,\"_144\":197,\"_142\":198,\"_137\":899,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2492,\"_615\":-5,\"_616\":1690,\"_617\":-5,\"_618\":-5},{\"_559\":2468,\"_561\":562,\"_563\":2469,\"_565\":2470,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2471,\"_571\":2472,\"_573\":2473,\"_575\":2474,\"_577\":188,\"_578\":700,\"_579\":2475,\"_581\":2476,\"_583\":24,\"_584\":2477,\"_586\":2478,\"_588\":2472,\"_589\":188,\"_590\":2471,\"_591\":700,\"_592\":2475,\"_593\":2476,\"_594\":2472,\"_595\":2479,\"_131\":2480,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2480,\"_615\":-5,\"_616\":633,\"_617\":-5,\"_618\":-5},{\"_559\":2453,\"_561\":562,\"_563\":2454,\"_565\":2455,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2456,\"_571\":2457,\"_573\":2458,\"_575\":2459,\"_577\":188,\"_578\":186,\"_579\":2460,\"_581\":2461,\"_583\":24,\"_584\":2462,\"_586\":2463,\"_588\":2457,\"_589\":188,\"_590\":2456,\"_591\":186,\"_592\":2460,\"_593\":2461,\"_594\":2457,\"_595\":2464,\"_131\":2465,\"_144\":1160,\"_142\":198,\"_137\":2466,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":172,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2465,\"_615\":-5,\"_616\":1438,\"_617\":-5,\"_618\":-5},{\"_559\":2440,\"_561\":562,\"_563\":2441,\"_565\":2442,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2443,\"_571\":2444,\"_573\":1708,\"_575\":2445,\"_577\":188,\"_578\":194,\"_579\":2446,\"_581\":2447,\"_583\":24,\"_584\":2448,\"_586\":2449,\"_588\":2444,\"_589\":188,\"_590\":2443,\"_591\":194,\"_592\":2446,\"_593\":2447,\"_594\":2450,\"_595\":1254,\"_131\":2147,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2147,\"_615\":-5,\"_616\":2451,\"_617\":-5,\"_618\":-5},{\"_559\":2426,\"_561\":562,\"_563\":2427,\"_565\":2428,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2429,\"_571\":2430,\"_573\":2431,\"_575\":2432,\"_577\":188,\"_578\":186,\"_579\":2433,\"_581\":2434,\"_583\":24,\"_584\":2435,\"_586\":2436,\"_588\":2430,\"_589\":188,\"_590\":2429,\"_591\":186,\"_592\":2433,\"_593\":2434,\"_594\":2430,\"_595\":1254,\"_131\":2437,\"_144\":198,\"_142\":198,\"_137\":1058,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":2438,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2437,\"_615\":-5,\"_616\":728,\"_617\":-5,\"_618\":-5},{\"_559\":2416,\"_561\":562,\"_563\":2417,\"_565\":2418,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2419,\"_571\":2420,\"_573\":698,\"_575\":797,\"_577\":188,\"_578\":182,\"_579\":2421,\"_581\":2422,\"_583\":24,\"_584\":2423,\"_586\":2424,\"_588\":2420,\"_589\":188,\"_590\":2419,\"_591\":182,\"_592\":2421,\"_593\":2422,\"_594\":2420,\"_595\":1913,\"_131\":1937,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1937,\"_615\":-5,\"_616\":633,\"_617\":-5,\"_618\":-5},{\"_559\":2403,\"_561\":562,\"_563\":2404,\"_565\":2405,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2406,\"_571\":2407,\"_573\":2408,\"_575\":2409,\"_577\":188,\"_578\":186,\"_579\":2410,\"_581\":2411,\"_583\":24,\"_584\":2412,\"_586\":2413,\"_588\":2407,\"_589\":188,\"_590\":2406,\"_591\":186,\"_592\":2410,\"_593\":2411,\"_594\":2407,\"_595\":1913,\"_131\":2414,\"_144\":197,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2414,\"_615\":-5,\"_616\":830,\"_617\":-5,\"_618\":-5},{\"_559\":2392,\"_561\":562,\"_563\":2393,\"_565\":2394,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2395,\"_571\":2396,\"_573\":1353,\"_575\":1959,\"_577\":188,\"_578\":188,\"_579\":2397,\"_581\":2398,\"_583\":24,\"_584\":2399,\"_586\":2400,\"_588\":2396,\"_589\":188,\"_590\":2395,\"_591\":188,\"_592\":2397,\"_593\":2398,\"_594\":2396,\"_595\":2401,\"_131\":1937,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1937,\"_615\":-5,\"_616\":633,\"_617\":-5,\"_618\":-5},{\"_559\":2378,\"_561\":562,\"_563\":2379,\"_565\":2380,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2381,\"_571\":2382,\"_573\":2383,\"_575\":2384,\"_577\":188,\"_578\":186,\"_579\":2385,\"_581\":2386,\"_583\":24,\"_584\":2387,\"_586\":2388,\"_588\":2382,\"_589\":188,\"_590\":2381,\"_591\":186,\"_592\":2385,\"_593\":2386,\"_594\":2382,\"_595\":1652,\"_131\":2389,\"_144\":197,\"_142\":198,\"_137\":899,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2389,\"_615\":-5,\"_616\":2390,\"_617\":-5,\"_618\":-5},{\"_559\":2368,\"_561\":562,\"_563\":2369,\"_565\":1603,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2370,\"_571\":2371,\"_573\":1606,\"_575\":2372,\"_577\":188,\"_578\":188,\"_579\":2373,\"_581\":2374,\"_583\":24,\"_584\":2375,\"_586\":2376,\"_588\":2371,\"_589\":188,\"_590\":2370,\"_591\":188,\"_592\":2373,\"_593\":2374,\"_594\":2371,\"_595\":1462,\"_131\":2096,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2096,\"_615\":-5,\"_616\":718,\"_617\":-5,\"_618\":-5},{\"_559\":2355,\"_561\":562,\"_563\":2356,\"_565\":2357,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2358,\"_571\":2359,\"_573\":974,\"_575\":2360,\"_577\":188,\"_578\":194,\"_579\":2361,\"_581\":2362,\"_583\":24,\"_584\":2363,\"_586\":2364,\"_588\":2359,\"_589\":188,\"_590\":2358,\"_591\":194,\"_592\":2361,\"_593\":2362,\"_594\":2359,\"_595\":1254,\"_131\":2365,\"_144\":1134,\"_142\":198,\"_137\":2366,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":2053,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2365,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":2342,\"_561\":562,\"_563\":2343,\"_565\":2344,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2345,\"_571\":2346,\"_573\":2347,\"_575\":576,\"_577\":188,\"_578\":186,\"_579\":2348,\"_581\":2349,\"_583\":24,\"_584\":2350,\"_586\":2351,\"_588\":2346,\"_589\":188,\"_590\":2345,\"_591\":186,\"_592\":2348,\"_593\":2349,\"_594\":2346,\"_595\":1319,\"_131\":2352,\"_144\":197,\"_142\":198,\"_137\":2353,\"_599\":16,\"_600\":191,\"_601\":24,\"_602\":1202,\"_604\":191,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2352,\"_615\":-5,\"_616\":597,\"_617\":-5,\"_618\":-5},{\"_559\":2329,\"_561\":562,\"_563\":2330,\"_565\":2331,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2332,\"_571\":2333,\"_573\":1036,\"_575\":2334,\"_577\":188,\"_578\":188,\"_579\":2335,\"_581\":2336,\"_583\":24,\"_584\":2337,\"_586\":2338,\"_588\":2333,\"_589\":188,\"_590\":2332,\"_591\":188,\"_592\":2335,\"_593\":2336,\"_594\":2333,\"_595\":2339,\"_131\":2340,\"_144\":197,\"_142\":198,\"_137\":1504,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":2053,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2340,\"_615\":-5,\"_616\":734,\"_617\":-5,\"_618\":-5},{\"_559\":2318,\"_561\":562,\"_563\":2319,\"_565\":2320,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2321,\"_571\":2322,\"_573\":671,\"_575\":1418,\"_577\":188,\"_578\":182,\"_579\":2323,\"_581\":2324,\"_583\":24,\"_584\":2325,\"_586\":2326,\"_588\":2322,\"_589\":188,\"_590\":2321,\"_591\":182,\"_592\":2323,\"_593\":2324,\"_594\":2322,\"_595\":1319,\"_131\":2327,\"_144\":1134,\"_142\":198,\"_137\":816,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":390,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2327,\"_615\":-5,\"_616\":678,\"_617\":-5,\"_618\":-5},{\"_559\":2305,\"_561\":562,\"_563\":2306,\"_565\":2307,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2308,\"_571\":2309,\"_573\":2310,\"_575\":2311,\"_577\":193,\"_578\":193,\"_579\":2312,\"_581\":2313,\"_583\":24,\"_584\":2314,\"_586\":2315,\"_588\":2309,\"_589\":193,\"_590\":2308,\"_591\":193,\"_592\":2312,\"_593\":2313,\"_594\":2309,\"_595\":1652,\"_131\":2316,\"_144\":197,\"_142\":198,\"_137\":899,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2316,\"_615\":-5,\"_616\":1690,\"_617\":-5,\"_618\":-5},{\"_559\":2293,\"_561\":562,\"_563\":2294,\"_565\":2173,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2295,\"_571\":2296,\"_573\":2176,\"_575\":2297,\"_577\":188,\"_578\":173,\"_579\":2298,\"_581\":2299,\"_583\":24,\"_584\":2300,\"_586\":2301,\"_588\":2296,\"_589\":188,\"_590\":2295,\"_591\":173,\"_592\":2298,\"_593\":2299,\"_594\":2296,\"_595\":1254,\"_131\":2302,\"_144\":197,\"_142\":198,\"_137\":1160,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2302,\"_615\":-5,\"_616\":2303,\"_617\":-5,\"_618\":-5},{\"_559\":2283,\"_561\":562,\"_563\":2284,\"_565\":2285,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2286,\"_571\":2287,\"_573\":892,\"_575\":1088,\"_577\":188,\"_578\":188,\"_579\":2288,\"_581\":2289,\"_583\":24,\"_584\":2290,\"_586\":2291,\"_588\":2287,\"_589\":188,\"_590\":2286,\"_591\":188,\"_592\":2288,\"_593\":2289,\"_594\":2287,\"_595\":2183,\"_131\":719,\"_144\":197,\"_142\":198,\"_137\":899,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":762,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":719,\"_615\":-5,\"_616\":718,\"_617\":-5,\"_618\":-5},{\"_559\":2271,\"_561\":562,\"_563\":2272,\"_565\":2273,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2274,\"_571\":2275,\"_573\":2276,\"_575\":2277,\"_577\":188,\"_578\":192,\"_579\":2278,\"_581\":2279,\"_583\":24,\"_584\":2280,\"_586\":2281,\"_588\":2275,\"_589\":188,\"_590\":2274,\"_591\":192,\"_592\":2278,\"_593\":2279,\"_594\":2275,\"_595\":1254,\"_131\":1937,\"_144\":649,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1937,\"_615\":-5,\"_616\":633,\"_617\":-5,\"_618\":-5},{\"_559\":2259,\"_561\":562,\"_563\":2260,\"_565\":2261,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2262,\"_571\":2263,\"_573\":2264,\"_575\":2130,\"_577\":188,\"_578\":188,\"_579\":2265,\"_581\":2266,\"_583\":24,\"_584\":2267,\"_586\":2268,\"_588\":2263,\"_589\":188,\"_590\":2262,\"_591\":188,\"_592\":2265,\"_593\":2266,\"_594\":2263,\"_595\":1652,\"_131\":898,\"_144\":1134,\"_142\":198,\"_137\":2269,\"_599\":16,\"_600\":191,\"_601\":24,\"_602\":2053,\"_604\":191,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":898,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":2245,\"_561\":562,\"_563\":2246,\"_565\":2247,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2248,\"_571\":2249,\"_573\":1167,\"_575\":2250,\"_577\":188,\"_578\":188,\"_579\":2251,\"_581\":2252,\"_583\":24,\"_584\":2253,\"_586\":2254,\"_588\":2249,\"_589\":188,\"_590\":2248,\"_591\":188,\"_592\":2251,\"_593\":2252,\"_594\":2255,\"_595\":1319,\"_131\":2256,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2256,\"_615\":-5,\"_616\":2257,\"_617\":-5,\"_618\":-5},{\"_559\":2232,\"_561\":562,\"_563\":2233,\"_565\":930,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2234,\"_571\":2235,\"_573\":769,\"_575\":2236,\"_577\":188,\"_578\":194,\"_579\":2237,\"_581\":2238,\"_583\":24,\"_584\":2239,\"_586\":2240,\"_588\":2235,\"_589\":188,\"_590\":2234,\"_591\":194,\"_592\":2237,\"_593\":2238,\"_594\":2241,\"_595\":2242,\"_131\":2243,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2243,\"_615\":-5,\"_616\":775,\"_617\":-5,\"_618\":-5},{\"_559\":2218,\"_561\":562,\"_563\":2219,\"_565\":2220,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2221,\"_571\":2222,\"_573\":2223,\"_575\":2224,\"_577\":188,\"_578\":700,\"_579\":2225,\"_581\":2226,\"_583\":24,\"_584\":2227,\"_586\":2228,\"_588\":2222,\"_589\":188,\"_590\":2221,\"_591\":700,\"_592\":2225,\"_593\":2226,\"_594\":2222,\"_595\":1254,\"_131\":2229,\"_144\":198,\"_142\":198,\"_137\":1517,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2229,\"_615\":-5,\"_616\":2230,\"_617\":-5,\"_618\":-5},{\"_559\":2207,\"_561\":562,\"_563\":2208,\"_565\":1020,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2209,\"_571\":2210,\"_573\":1353,\"_575\":2211,\"_577\":188,\"_578\":173,\"_579\":2212,\"_581\":2213,\"_583\":24,\"_584\":2214,\"_586\":2215,\"_588\":2210,\"_589\":188,\"_590\":2209,\"_591\":173,\"_592\":2212,\"_593\":2213,\"_594\":2210,\"_595\":2216,\"_131\":1937,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1937,\"_615\":-5,\"_616\":633,\"_617\":-5,\"_618\":-5},{\"_559\":2197,\"_561\":562,\"_563\":2198,\"_565\":1020,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2199,\"_571\":2200,\"_573\":1353,\"_575\":2201,\"_577\":188,\"_578\":173,\"_579\":2202,\"_581\":2203,\"_583\":24,\"_584\":2204,\"_586\":2205,\"_588\":2200,\"_589\":188,\"_590\":2199,\"_591\":173,\"_592\":2202,\"_593\":2203,\"_594\":2200,\"_595\":1462,\"_131\":2026,\"_144\":197,\"_142\":198,\"_137\":1552,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2026,\"_615\":-5,\"_616\":925,\"_617\":-5,\"_618\":-5},{\"_559\":2186,\"_561\":562,\"_563\":2187,\"_565\":654,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2188,\"_571\":2189,\"_573\":657,\"_575\":1594,\"_577\":188,\"_578\":182,\"_579\":2190,\"_581\":2191,\"_583\":24,\"_584\":2192,\"_586\":2193,\"_588\":2189,\"_589\":188,\"_590\":2188,\"_591\":182,\"_592\":2190,\"_593\":2191,\"_594\":691,\"_595\":1254,\"_131\":2194,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2194,\"_615\":-5,\"_616\":2195,\"_617\":-5,\"_618\":-5},{\"_559\":2171,\"_561\":562,\"_563\":2172,\"_565\":2173,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2174,\"_571\":2175,\"_573\":2176,\"_575\":2177,\"_577\":188,\"_578\":700,\"_579\":2178,\"_581\":2179,\"_583\":24,\"_584\":2180,\"_586\":2181,\"_588\":2175,\"_589\":188,\"_590\":2174,\"_591\":700,\"_592\":2178,\"_593\":2179,\"_594\":2182,\"_595\":2183,\"_131\":2184,\"_144\":197,\"_142\":198,\"_137\":1504,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2184,\"_615\":-5,\"_616\":966,\"_617\":-5,\"_618\":-5},{\"_559\":2161,\"_561\":562,\"_563\":2162,\"_565\":1788,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2163,\"_571\":2164,\"_573\":698,\"_575\":1583,\"_577\":188,\"_578\":700,\"_579\":2165,\"_581\":2166,\"_583\":24,\"_584\":2167,\"_586\":2168,\"_588\":2164,\"_589\":188,\"_590\":2163,\"_591\":700,\"_592\":2165,\"_593\":2166,\"_594\":2164,\"_595\":1319,\"_131\":2169,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2169,\"_615\":-5,\"_616\":1107,\"_617\":-5,\"_618\":-5},{\"_559\":2149,\"_561\":562,\"_563\":2150,\"_565\":2151,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2152,\"_571\":2153,\"_573\":1944,\"_575\":2154,\"_577\":188,\"_578\":173,\"_579\":2155,\"_581\":2156,\"_583\":24,\"_584\":2157,\"_586\":2158,\"_588\":2153,\"_589\":188,\"_590\":2152,\"_591\":173,\"_592\":2155,\"_593\":2156,\"_594\":2153,\"_595\":1652,\"_131\":633,\"_144\":197,\"_142\":198,\"_137\":1951,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":633,\"_615\":-5,\"_616\":2159,\"_617\":-5,\"_618\":-5},{\"_559\":2138,\"_561\":562,\"_563\":2139,\"_565\":668,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2140,\"_571\":2141,\"_573\":671,\"_575\":2011,\"_577\":188,\"_578\":188,\"_579\":2142,\"_581\":2143,\"_583\":24,\"_584\":2144,\"_586\":2145,\"_588\":2141,\"_589\":188,\"_590\":2140,\"_591\":188,\"_592\":2142,\"_593\":2143,\"_594\":2146,\"_595\":1254,\"_131\":2147,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2147,\"_615\":-5,\"_616\":829,\"_617\":-5,\"_618\":-5},{\"_559\":2125,\"_561\":562,\"_563\":2126,\"_565\":2127,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2128,\"_571\":2129,\"_573\":1051,\"_575\":2130,\"_577\":188,\"_578\":186,\"_579\":2131,\"_581\":2132,\"_583\":24,\"_584\":2133,\"_586\":2134,\"_588\":2129,\"_589\":188,\"_590\":2128,\"_591\":186,\"_592\":2131,\"_593\":2132,\"_594\":2129,\"_595\":2135,\"_131\":967,\"_144\":198,\"_142\":198,\"_137\":2136,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":720,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":967,\"_615\":-5,\"_616\":597,\"_617\":-5,\"_618\":-5},{\"_559\":2112,\"_561\":562,\"_563\":2113,\"_565\":2114,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2115,\"_571\":2116,\"_573\":2117,\"_575\":2118,\"_577\":188,\"_578\":700,\"_579\":2119,\"_581\":2120,\"_583\":24,\"_584\":2121,\"_586\":2122,\"_588\":2116,\"_589\":188,\"_590\":2115,\"_591\":700,\"_592\":2119,\"_593\":2120,\"_594\":2116,\"_595\":1319,\"_131\":830,\"_144\":815,\"_142\":1134,\"_137\":2123,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":390,\"_604\":178,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":830,\"_615\":-5,\"_616\":650,\"_617\":-5,\"_618\":-5},{\"_559\":2098,\"_561\":562,\"_563\":2099,\"_565\":2100,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2101,\"_571\":2102,\"_573\":1456,\"_575\":2103,\"_577\":188,\"_578\":700,\"_579\":2104,\"_581\":2105,\"_583\":24,\"_584\":2106,\"_586\":2107,\"_588\":2102,\"_589\":188,\"_590\":2101,\"_591\":700,\"_592\":2104,\"_593\":2105,\"_594\":2108,\"_595\":1254,\"_131\":2109,\"_144\":649,\"_142\":197,\"_137\":597,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2109,\"_615\":-5,\"_616\":2110,\"_617\":-5,\"_618\":-5},{\"_559\":2085,\"_561\":562,\"_563\":2086,\"_565\":2087,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2088,\"_571\":2089,\"_573\":1606,\"_575\":2090,\"_577\":188,\"_578\":173,\"_579\":2091,\"_581\":2092,\"_583\":24,\"_584\":2093,\"_586\":2094,\"_588\":2089,\"_589\":188,\"_590\":2088,\"_591\":173,\"_592\":2091,\"_593\":2092,\"_594\":2089,\"_595\":2095,\"_131\":2096,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2096,\"_615\":-5,\"_616\":718,\"_617\":-5,\"_618\":-5},{\"_559\":2070,\"_561\":562,\"_563\":2071,\"_565\":2072,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2073,\"_571\":2074,\"_573\":2075,\"_575\":2076,\"_577\":2077,\"_578\":196,\"_579\":2078,\"_581\":2079,\"_583\":24,\"_584\":2080,\"_586\":2081,\"_588\":2074,\"_589\":2077,\"_590\":2073,\"_591\":196,\"_592\":2078,\"_593\":2079,\"_594\":2074,\"_595\":2082,\"_131\":2083,\"_144\":197,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2083,\"_615\":-5,\"_616\":1268,\"_617\":-5,\"_618\":-5},{\"_559\":2056,\"_561\":562,\"_563\":2057,\"_565\":2058,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2059,\"_571\":2060,\"_573\":1944,\"_575\":2061,\"_577\":188,\"_578\":173,\"_579\":2062,\"_581\":2063,\"_583\":24,\"_584\":2064,\"_586\":2065,\"_588\":2060,\"_589\":188,\"_590\":2059,\"_591\":173,\"_592\":2062,\"_593\":2063,\"_594\":2066,\"_595\":1652,\"_131\":829,\"_144\":197,\"_142\":198,\"_137\":2067,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":829,\"_615\":-5,\"_616\":2068,\"_617\":-5,\"_618\":-5},{\"_559\":2041,\"_561\":562,\"_563\":2042,\"_565\":2043,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2044,\"_571\":2045,\"_573\":974,\"_575\":2046,\"_577\":188,\"_578\":194,\"_579\":2047,\"_581\":2048,\"_583\":24,\"_584\":2049,\"_586\":2050,\"_588\":2045,\"_589\":188,\"_590\":2044,\"_591\":194,\"_592\":2047,\"_593\":2048,\"_594\":2045,\"_595\":1254,\"_131\":2051,\"_144\":197,\"_142\":198,\"_137\":2052,\"_599\":16,\"_600\":191,\"_601\":24,\"_602\":2053,\"_604\":191,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2051,\"_615\":-5,\"_616\":2054,\"_617\":-5,\"_618\":-5},{\"_559\":2028,\"_561\":562,\"_563\":2029,\"_565\":2030,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2031,\"_571\":2032,\"_573\":1985,\"_575\":2033,\"_577\":188,\"_578\":173,\"_579\":2034,\"_581\":2035,\"_583\":24,\"_584\":2036,\"_586\":2037,\"_588\":2032,\"_589\":188,\"_590\":2031,\"_591\":173,\"_592\":2034,\"_593\":2035,\"_594\":2032,\"_595\":1652,\"_131\":2038,\"_144\":197,\"_142\":198,\"_137\":634,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2038,\"_615\":-5,\"_616\":2039,\"_617\":-5,\"_618\":-5},{\"_559\":2017,\"_561\":562,\"_563\":2018,\"_565\":1929,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2019,\"_571\":2020,\"_573\":1353,\"_575\":2021,\"_577\":188,\"_578\":188,\"_579\":2022,\"_581\":2023,\"_583\":24,\"_584\":2024,\"_586\":2025,\"_588\":2020,\"_589\":188,\"_590\":2019,\"_591\":188,\"_592\":2022,\"_593\":2023,\"_594\":2020,\"_595\":632,\"_131\":2026,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":16,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2026,\"_615\":-5,\"_616\":925,\"_617\":-5,\"_618\":-5},{\"_559\":2006,\"_561\":562,\"_563\":2007,\"_565\":2008,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":2009,\"_571\":2010,\"_573\":892,\"_575\":2011,\"_577\":188,\"_578\":179,\"_579\":2012,\"_581\":2013,\"_583\":24,\"_584\":2014,\"_586\":2015,\"_588\":2010,\"_589\":188,\"_590\":2009,\"_591\":179,\"_592\":2012,\"_593\":2013,\"_594\":2010,\"_595\":632,\"_131\":898,\"_144\":197,\"_142\":198,\"_137\":1188,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":762,\"_604\":176,\"_605\":16,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":898,\"_615\":-5,\"_616\":597,\"_617\":-5,\"_618\":-5},{\"_559\":1994,\"_561\":562,\"_563\":1995,\"_565\":1996,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1997,\"_571\":1998,\"_573\":671,\"_575\":1999,\"_577\":188,\"_578\":182,\"_579\":2000,\"_581\":2001,\"_583\":24,\"_584\":2002,\"_586\":2003,\"_588\":1998,\"_589\":188,\"_590\":1997,\"_591\":182,\"_592\":2000,\"_593\":2001,\"_594\":1998,\"_595\":632,\"_131\":2004,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":16,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":2004,\"_615\":-5,\"_616\":664,\"_617\":-5,\"_618\":-5},{\"_559\":1980,\"_561\":562,\"_563\":1981,\"_565\":1982,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1983,\"_571\":1984,\"_573\":1985,\"_575\":1986,\"_577\":188,\"_578\":173,\"_579\":1987,\"_581\":1988,\"_583\":24,\"_584\":1989,\"_586\":1990,\"_588\":1984,\"_589\":188,\"_590\":1983,\"_591\":173,\"_592\":1987,\"_593\":1988,\"_594\":1991,\"_595\":885,\"_131\":664,\"_144\":649,\"_142\":198,\"_137\":634,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":16,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":664,\"_615\":-5,\"_616\":1992,\"_617\":-5,\"_618\":-5},{\"_559\":1968,\"_561\":562,\"_563\":1969,\"_565\":1970,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1971,\"_571\":1972,\"_573\":1973,\"_575\":1974,\"_577\":188,\"_578\":182,\"_579\":1975,\"_581\":1000,\"_583\":24,\"_584\":1976,\"_586\":1977,\"_588\":1972,\"_589\":188,\"_590\":1971,\"_591\":182,\"_592\":1975,\"_593\":1000,\"_594\":1972,\"_595\":632,\"_131\":1978,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1978,\"_615\":-5,\"_616\":705,\"_617\":-5,\"_618\":-5},{\"_559\":1954,\"_561\":562,\"_563\":1955,\"_565\":1956,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1957,\"_571\":1958,\"_573\":671,\"_575\":1959,\"_577\":188,\"_578\":182,\"_579\":1960,\"_581\":1961,\"_583\":24,\"_584\":1962,\"_586\":1963,\"_588\":1958,\"_589\":188,\"_590\":1957,\"_591\":182,\"_592\":1960,\"_593\":1961,\"_594\":1964,\"_595\":632,\"_131\":1965,\"_144\":649,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":16,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1965,\"_615\":-5,\"_616\":1966,\"_617\":-5,\"_618\":-5},{\"_559\":1939,\"_561\":562,\"_563\":1940,\"_565\":1941,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1942,\"_571\":1943,\"_573\":1944,\"_575\":1945,\"_577\":188,\"_578\":188,\"_579\":1946,\"_581\":1947,\"_583\":24,\"_584\":1948,\"_586\":1949,\"_588\":1943,\"_589\":188,\"_590\":1942,\"_591\":188,\"_592\":1946,\"_593\":1947,\"_594\":1943,\"_595\":632,\"_131\":1950,\"_144\":197,\"_142\":198,\"_137\":1951,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":16,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1950,\"_615\":-5,\"_616\":1952,\"_617\":-5,\"_618\":-5},{\"_559\":1927,\"_561\":562,\"_563\":1928,\"_565\":1929,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1930,\"_571\":1931,\"_573\":1353,\"_575\":1168,\"_577\":188,\"_578\":173,\"_579\":1932,\"_581\":1933,\"_583\":24,\"_584\":1934,\"_586\":1935,\"_588\":1931,\"_589\":188,\"_590\":1930,\"_591\":173,\"_592\":1932,\"_593\":1933,\"_594\":1936,\"_595\":632,\"_131\":1937,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":16,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1937,\"_615\":-5,\"_616\":633,\"_617\":-5,\"_618\":-5},{\"_559\":1916,\"_561\":562,\"_563\":1917,\"_565\":766,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1918,\"_571\":1919,\"_573\":1920,\"_575\":1921,\"_577\":188,\"_578\":197,\"_579\":1922,\"_581\":1923,\"_583\":24,\"_584\":1924,\"_586\":1925,\"_588\":1919,\"_589\":188,\"_590\":1918,\"_591\":197,\"_592\":1922,\"_593\":1923,\"_594\":1919,\"_595\":1254,\"_131\":775,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":775,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1904,\"_561\":562,\"_563\":1905,\"_565\":1392,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1906,\"_571\":1907,\"_573\":1395,\"_575\":1908,\"_577\":188,\"_578\":188,\"_579\":1909,\"_581\":1910,\"_583\":24,\"_584\":1911,\"_586\":1912,\"_588\":1907,\"_589\":188,\"_590\":1906,\"_591\":188,\"_592\":1909,\"_593\":1910,\"_594\":1907,\"_595\":1913,\"_131\":745,\"_144\":197,\"_142\":198,\"_137\":1914,\"_599\":16,\"_600\":191,\"_601\":24,\"_602\":191,\"_604\":191,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":745,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1894,\"_561\":562,\"_563\":1895,\"_565\":1392,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1896,\"_571\":1897,\"_573\":1395,\"_575\":1898,\"_577\":188,\"_578\":190,\"_579\":1899,\"_581\":1900,\"_583\":24,\"_584\":1901,\"_586\":1902,\"_588\":1897,\"_589\":188,\"_590\":1896,\"_591\":190,\"_592\":1899,\"_593\":1900,\"_594\":1897,\"_595\":1254,\"_131\":745,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":745,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1884,\"_561\":562,\"_563\":1885,\"_565\":1392,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1886,\"_571\":1887,\"_573\":1395,\"_575\":1888,\"_577\":188,\"_578\":188,\"_579\":1889,\"_581\":1890,\"_583\":24,\"_584\":1891,\"_586\":1892,\"_588\":1887,\"_589\":188,\"_590\":1886,\"_591\":188,\"_592\":1889,\"_593\":1890,\"_594\":1887,\"_595\":1516,\"_131\":745,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":745,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1873,\"_561\":562,\"_563\":1874,\"_565\":1875,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1876,\"_571\":1877,\"_573\":1559,\"_575\":1878,\"_577\":188,\"_578\":186,\"_579\":1879,\"_581\":1880,\"_583\":24,\"_584\":1881,\"_586\":1882,\"_588\":1877,\"_589\":188,\"_590\":1876,\"_591\":186,\"_592\":1879,\"_593\":1880,\"_594\":1877,\"_595\":1319,\"_131\":967,\"_144\":198,\"_142\":198,\"_137\":1517,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":967,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1859,\"_561\":562,\"_563\":1860,\"_565\":1861,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1862,\"_571\":1863,\"_573\":1864,\"_575\":1865,\"_577\":188,\"_578\":186,\"_579\":1866,\"_581\":1867,\"_583\":24,\"_584\":1868,\"_586\":1869,\"_588\":1863,\"_589\":188,\"_590\":1862,\"_591\":186,\"_592\":1866,\"_593\":1867,\"_594\":1863,\"_595\":1652,\"_131\":1870,\"_144\":1134,\"_142\":198,\"_137\":816,\"_599\":16,\"_600\":172,\"_601\":16,\"_602\":1871,\"_604\":172,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1870,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1845,\"_561\":562,\"_563\":1846,\"_565\":1847,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1848,\"_571\":1849,\"_573\":752,\"_575\":1850,\"_577\":188,\"_578\":171,\"_579\":1851,\"_581\":1852,\"_583\":24,\"_584\":1853,\"_586\":1854,\"_588\":1849,\"_589\":188,\"_590\":1848,\"_591\":171,\"_592\":1851,\"_593\":1852,\"_594\":1855,\"_595\":1254,\"_131\":1856,\"_144\":1108,\"_142\":198,\"_137\":1857,\"_599\":16,\"_600\":191,\"_601\":16,\"_602\":762,\"_604\":191,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1856,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1833,\"_561\":562,\"_563\":1834,\"_565\":1835,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1836,\"_571\":1837,\"_573\":1838,\"_575\":824,\"_577\":188,\"_578\":188,\"_579\":1839,\"_581\":1840,\"_583\":24,\"_584\":1841,\"_586\":1842,\"_588\":1837,\"_589\":188,\"_590\":1836,\"_591\":188,\"_592\":1839,\"_593\":1840,\"_594\":1843,\"_595\":1652,\"_131\":597,\"_144\":197,\"_142\":198,\"_137\":719,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":597,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1820,\"_561\":562,\"_563\":1821,\"_565\":1822,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1823,\"_571\":1824,\"_573\":1313,\"_575\":1825,\"_577\":188,\"_578\":186,\"_579\":1826,\"_581\":1827,\"_583\":24,\"_584\":1828,\"_586\":1829,\"_588\":1824,\"_589\":188,\"_590\":1823,\"_591\":186,\"_592\":1826,\"_593\":1827,\"_594\":1824,\"_595\":1652,\"_131\":1830,\"_144\":197,\"_142\":198,\"_137\":1831,\"_599\":16,\"_600\":390,\"_601\":24,\"_602\":926,\"_604\":390,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1830,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1808,\"_561\":562,\"_563\":1809,\"_565\":1810,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1811,\"_571\":1812,\"_573\":769,\"_575\":1813,\"_577\":188,\"_578\":194,\"_579\":1814,\"_581\":1815,\"_583\":24,\"_584\":1816,\"_586\":1817,\"_588\":1812,\"_589\":188,\"_590\":1811,\"_591\":194,\"_592\":1814,\"_593\":1815,\"_594\":1812,\"_595\":1319,\"_131\":1818,\"_144\":649,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1818,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1796,\"_561\":562,\"_563\":1797,\"_565\":1798,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1799,\"_571\":1800,\"_573\":727,\"_575\":1801,\"_577\":188,\"_578\":188,\"_579\":1802,\"_581\":1803,\"_583\":24,\"_584\":1804,\"_586\":1805,\"_588\":1800,\"_589\":188,\"_590\":1799,\"_591\":188,\"_592\":1802,\"_593\":1803,\"_594\":1800,\"_595\":1254,\"_131\":718,\"_144\":1134,\"_142\":198,\"_137\":1806,\"_599\":16,\"_600\":191,\"_601\":24,\"_602\":180,\"_604\":191,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":718,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1786,\"_561\":562,\"_563\":1787,\"_565\":1788,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1789,\"_571\":1790,\"_573\":698,\"_575\":824,\"_577\":188,\"_578\":182,\"_579\":1791,\"_581\":1792,\"_583\":24,\"_584\":1793,\"_586\":1794,\"_588\":1790,\"_589\":188,\"_590\":1789,\"_591\":182,\"_592\":1791,\"_593\":1792,\"_594\":1790,\"_595\":1462,\"_131\":979,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":979,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1776,\"_561\":562,\"_563\":1777,\"_565\":1778,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1779,\"_571\":1780,\"_573\":671,\"_575\":809,\"_577\":188,\"_578\":182,\"_579\":1781,\"_581\":1782,\"_583\":24,\"_584\":1783,\"_586\":1784,\"_588\":1780,\"_589\":188,\"_590\":1779,\"_591\":182,\"_592\":1781,\"_593\":1782,\"_594\":1780,\"_595\":1462,\"_131\":871,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":871,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1763,\"_561\":562,\"_563\":1764,\"_565\":1765,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1766,\"_571\":1767,\"_573\":1768,\"_575\":920,\"_577\":188,\"_578\":700,\"_579\":1769,\"_581\":1770,\"_583\":24,\"_584\":1771,\"_586\":1772,\"_588\":1767,\"_589\":188,\"_590\":1766,\"_591\":700,\"_592\":1769,\"_593\":1770,\"_594\":1767,\"_595\":1254,\"_131\":1773,\"_144\":649,\"_142\":198,\"_137\":1774,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1773,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1753,\"_561\":562,\"_563\":1754,\"_565\":1755,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1756,\"_571\":1757,\"_573\":1367,\"_575\":1758,\"_577\":188,\"_578\":173,\"_579\":389,\"_581\":389,\"_583\":24,\"_584\":1759,\"_586\":1760,\"_588\":1757,\"_589\":188,\"_590\":1756,\"_591\":173,\"_592\":389,\"_593\":389,\"_594\":1761,\"_595\":1762,\"_131\":718,\"_144\":198,\"_142\":198,\"_137\":899,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":718,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1741,\"_561\":562,\"_563\":1742,\"_565\":1743,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1744,\"_571\":1745,\"_573\":1708,\"_575\":1746,\"_577\":188,\"_578\":194,\"_579\":1747,\"_581\":1748,\"_583\":24,\"_584\":1749,\"_586\":1750,\"_588\":1745,\"_589\":188,\"_590\":1744,\"_591\":194,\"_592\":1747,\"_593\":1748,\"_594\":691,\"_595\":1254,\"_131\":1751,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1751,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1726,\"_561\":562,\"_563\":1727,\"_565\":1728,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1729,\"_571\":1730,\"_573\":1731,\"_575\":1732,\"_577\":188,\"_578\":179,\"_579\":1733,\"_581\":1734,\"_583\":24,\"_584\":1735,\"_586\":1736,\"_588\":1730,\"_589\":188,\"_590\":1729,\"_591\":179,\"_592\":1733,\"_593\":1734,\"_594\":1737,\"_595\":1462,\"_131\":1738,\"_144\":658,\"_142\":197,\"_137\":1739,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1738,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1715,\"_561\":562,\"_563\":1716,\"_565\":1717,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1718,\"_571\":1719,\"_573\":641,\"_575\":1720,\"_577\":188,\"_578\":188,\"_579\":1236,\"_581\":1721,\"_583\":24,\"_584\":1722,\"_586\":1723,\"_588\":1719,\"_589\":188,\"_590\":1718,\"_591\":188,\"_592\":1236,\"_593\":1721,\"_594\":1724,\"_595\":1254,\"_131\":1241,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1241,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1703,\"_561\":562,\"_563\":1704,\"_565\":1705,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1706,\"_571\":1707,\"_573\":1708,\"_575\":1709,\"_577\":188,\"_578\":700,\"_579\":1710,\"_581\":1711,\"_583\":24,\"_584\":1712,\"_586\":1713,\"_588\":1707,\"_589\":188,\"_590\":1706,\"_591\":700,\"_592\":1710,\"_593\":1711,\"_594\":1707,\"_595\":1462,\"_131\":705,\"_144\":198,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":705,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1692,\"_561\":562,\"_563\":1693,\"_565\":1694,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1695,\"_571\":1696,\"_573\":1167,\"_575\":1697,\"_577\":188,\"_578\":185,\"_579\":1698,\"_581\":1699,\"_583\":24,\"_584\":1700,\"_586\":1701,\"_588\":1696,\"_589\":188,\"_590\":1695,\"_591\":185,\"_592\":1698,\"_593\":1699,\"_594\":1696,\"_595\":1625,\"_131\":1626,\"_144\":197,\"_142\":198,\"_137\":1627,\"_599\":16,\"_600\":926,\"_601\":24,\"_602\":195,\"_604\":926,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1626,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1678,\"_561\":562,\"_563\":1679,\"_565\":1680,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1681,\"_571\":1682,\"_573\":1683,\"_575\":1684,\"_577\":188,\"_578\":700,\"_579\":1685,\"_581\":1686,\"_583\":24,\"_584\":1687,\"_586\":1688,\"_588\":1682,\"_589\":188,\"_590\":1681,\"_591\":700,\"_592\":1685,\"_593\":1686,\"_594\":1689,\"_595\":1652,\"_131\":1690,\"_144\":197,\"_142\":198,\"_137\":1160,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1690,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1664,\"_561\":562,\"_563\":1665,\"_565\":1666,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1667,\"_571\":1668,\"_573\":1669,\"_575\":1670,\"_577\":188,\"_578\":700,\"_579\":1671,\"_581\":1672,\"_583\":24,\"_584\":1673,\"_586\":1674,\"_588\":1668,\"_589\":188,\"_590\":1667,\"_591\":700,\"_592\":1671,\"_593\":1672,\"_594\":1675,\"_595\":1652,\"_131\":1676,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":180,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1676,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1654,\"_561\":562,\"_563\":1655,\"_565\":1392,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1656,\"_571\":1657,\"_573\":1395,\"_575\":1658,\"_577\":188,\"_578\":190,\"_579\":1659,\"_581\":1660,\"_583\":24,\"_584\":1661,\"_586\":1662,\"_588\":1657,\"_589\":188,\"_590\":1656,\"_591\":190,\"_592\":1659,\"_593\":1660,\"_594\":1657,\"_595\":1424,\"_131\":745,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":745,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1642,\"_561\":562,\"_563\":1643,\"_565\":1392,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1644,\"_571\":1645,\"_573\":1395,\"_575\":1646,\"_577\":188,\"_578\":700,\"_579\":1647,\"_581\":1648,\"_583\":24,\"_584\":1649,\"_586\":1650,\"_588\":1645,\"_589\":188,\"_590\":1644,\"_591\":700,\"_592\":1647,\"_593\":1648,\"_594\":1651,\"_595\":1652,\"_131\":745,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":745,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1629,\"_561\":562,\"_563\":1630,\"_565\":1631,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1632,\"_571\":1633,\"_573\":1634,\"_575\":1635,\"_577\":188,\"_578\":186,\"_579\":1636,\"_581\":1637,\"_583\":24,\"_584\":1638,\"_586\":1639,\"_588\":1633,\"_589\":188,\"_590\":1632,\"_591\":186,\"_592\":1636,\"_593\":1637,\"_594\":1633,\"_595\":1254,\"_131\":1640,\"_144\":649,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1640,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1614,\"_561\":562,\"_563\":1615,\"_565\":1616,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1617,\"_571\":1618,\"_573\":1619,\"_575\":1620,\"_577\":188,\"_578\":185,\"_579\":1621,\"_581\":1622,\"_583\":24,\"_584\":1623,\"_586\":1624,\"_588\":1618,\"_589\":188,\"_590\":1617,\"_591\":185,\"_592\":1621,\"_593\":1622,\"_594\":1618,\"_595\":1625,\"_131\":1626,\"_144\":197,\"_142\":198,\"_137\":1627,\"_599\":16,\"_600\":390,\"_601\":24,\"_602\":195,\"_604\":390,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1626,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1601,\"_561\":562,\"_563\":1602,\"_565\":1603,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1604,\"_571\":1605,\"_573\":1606,\"_575\":1607,\"_577\":188,\"_578\":188,\"_579\":1608,\"_581\":1609,\"_583\":24,\"_584\":1610,\"_586\":1611,\"_588\":1605,\"_589\":188,\"_590\":1604,\"_591\":188,\"_592\":1608,\"_593\":1609,\"_594\":1605,\"_595\":1254,\"_131\":1612,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1612,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1589,\"_561\":562,\"_563\":1590,\"_565\":1591,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1592,\"_571\":1593,\"_573\":1116,\"_575\":1594,\"_577\":188,\"_578\":188,\"_579\":389,\"_581\":389,\"_583\":24,\"_584\":1595,\"_586\":1596,\"_588\":1593,\"_589\":188,\"_590\":1592,\"_591\":188,\"_592\":389,\"_593\":389,\"_594\":1597,\"_595\":1598,\"_131\":1599,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1599,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1577,\"_561\":562,\"_563\":1578,\"_565\":1579,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1580,\"_571\":1581,\"_573\":1582,\"_575\":1583,\"_577\":188,\"_578\":700,\"_579\":1584,\"_581\":1585,\"_583\":24,\"_584\":1586,\"_586\":1587,\"_588\":1581,\"_589\":188,\"_590\":1580,\"_591\":700,\"_592\":1584,\"_593\":1585,\"_594\":1581,\"_595\":1372,\"_131\":1360,\"_144\":198,\"_142\":198,\"_137\":1058,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1360,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1567,\"_561\":562,\"_563\":1568,\"_565\":1020,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1569,\"_571\":1570,\"_573\":1353,\"_575\":1571,\"_577\":188,\"_578\":173,\"_579\":1572,\"_581\":1573,\"_583\":24,\"_584\":1574,\"_586\":1575,\"_588\":1570,\"_589\":188,\"_590\":1569,\"_591\":173,\"_592\":1572,\"_593\":1573,\"_594\":1570,\"_595\":1319,\"_131\":1029,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1029,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1554,\"_561\":562,\"_563\":1555,\"_565\":1556,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1557,\"_571\":1558,\"_573\":1559,\"_575\":1560,\"_577\":188,\"_578\":186,\"_579\":1561,\"_581\":1562,\"_583\":24,\"_584\":1563,\"_586\":1564,\"_588\":1558,\"_589\":188,\"_590\":1557,\"_591\":186,\"_592\":1561,\"_593\":1562,\"_594\":1558,\"_595\":1411,\"_131\":1565,\"_144\":197,\"_142\":198,\"_137\":719,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":178,\"_604\":178,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1565,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1542,\"_561\":562,\"_563\":1543,\"_565\":1544,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1545,\"_571\":1546,\"_573\":671,\"_575\":1547,\"_577\":188,\"_578\":182,\"_579\":1548,\"_581\":1549,\"_583\":24,\"_584\":1550,\"_586\":1551,\"_588\":1546,\"_589\":188,\"_590\":1545,\"_591\":182,\"_592\":1548,\"_593\":1549,\"_594\":1546,\"_595\":1424,\"_131\":664,\"_144\":197,\"_142\":198,\"_137\":1552,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":664,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1530,\"_561\":562,\"_563\":1531,\"_565\":1532,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1533,\"_571\":1534,\"_573\":657,\"_575\":1535,\"_577\":188,\"_578\":182,\"_579\":1536,\"_581\":1537,\"_583\":24,\"_584\":1538,\"_586\":1539,\"_588\":1534,\"_589\":188,\"_590\":1533,\"_591\":182,\"_592\":1536,\"_593\":1537,\"_594\":1534,\"_595\":1319,\"_131\":1540,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1540,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1519,\"_561\":562,\"_563\":1520,\"_565\":1392,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1521,\"_571\":1522,\"_573\":1395,\"_575\":1523,\"_577\":188,\"_578\":188,\"_579\":1524,\"_581\":1525,\"_583\":24,\"_584\":1526,\"_586\":1527,\"_588\":1522,\"_589\":188,\"_590\":1521,\"_591\":188,\"_592\":1524,\"_593\":1525,\"_594\":1528,\"_595\":1254,\"_131\":745,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":745,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1506,\"_561\":562,\"_563\":1507,\"_565\":1508,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1509,\"_571\":1510,\"_573\":1511,\"_575\":197,\"_577\":188,\"_578\":700,\"_579\":1512,\"_581\":1513,\"_583\":24,\"_584\":1514,\"_586\":1515,\"_588\":1510,\"_589\":188,\"_590\":1509,\"_591\":700,\"_592\":1512,\"_593\":1513,\"_594\":1510,\"_595\":1516,\"_131\":705,\"_144\":1134,\"_142\":198,\"_137\":1517,\"_599\":16,\"_600\":191,\"_601\":24,\"_602\":390,\"_604\":191,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":705,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1491,\"_561\":562,\"_563\":1492,\"_565\":1493,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1494,\"_571\":1495,\"_573\":752,\"_575\":1496,\"_577\":188,\"_578\":171,\"_579\":1497,\"_581\":1498,\"_583\":24,\"_584\":1499,\"_586\":1500,\"_588\":1495,\"_589\":188,\"_590\":1494,\"_591\":171,\"_592\":1497,\"_593\":1498,\"_594\":1501,\"_595\":1502,\"_131\":1503,\"_144\":649,\"_142\":198,\"_137\":1504,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":762,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1503,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1480,\"_561\":562,\"_563\":1481,\"_565\":1482,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1483,\"_571\":1484,\"_573\":698,\"_575\":893,\"_577\":188,\"_578\":182,\"_579\":1485,\"_581\":1486,\"_583\":24,\"_584\":1487,\"_586\":1488,\"_588\":1484,\"_589\":188,\"_590\":1483,\"_591\":182,\"_592\":1485,\"_593\":1486,\"_594\":1484,\"_595\":1254,\"_131\":1489,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1489,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1466,\"_561\":562,\"_563\":1467,\"_565\":1468,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1469,\"_571\":1470,\"_573\":1431,\"_575\":1471,\"_577\":188,\"_578\":186,\"_579\":1472,\"_581\":1473,\"_583\":24,\"_584\":1474,\"_586\":1475,\"_588\":1470,\"_589\":188,\"_590\":1469,\"_591\":186,\"_592\":1472,\"_593\":1473,\"_594\":1470,\"_595\":1254,\"_131\":1438,\"_144\":1476,\"_142\":198,\"_137\":1477,\"_599\":16,\"_600\":180,\"_601\":24,\"_602\":1478,\"_604\":180,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1438,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1451,\"_561\":562,\"_563\":1452,\"_565\":1453,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1454,\"_571\":1455,\"_573\":1456,\"_575\":1457,\"_577\":188,\"_578\":700,\"_579\":1458,\"_581\":1459,\"_583\":24,\"_584\":1460,\"_586\":1461,\"_588\":1455,\"_589\":188,\"_590\":1454,\"_591\":700,\"_592\":1458,\"_593\":1459,\"_594\":1455,\"_595\":1462,\"_131\":1463,\"_144\":815,\"_142\":1134,\"_137\":1464,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":178,\"_604\":178,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1463,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1441,\"_561\":562,\"_563\":1442,\"_565\":1232,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1443,\"_571\":1444,\"_573\":641,\"_575\":1445,\"_577\":188,\"_578\":194,\"_579\":1446,\"_581\":1447,\"_583\":24,\"_584\":1448,\"_586\":1449,\"_588\":1444,\"_589\":188,\"_590\":1443,\"_591\":194,\"_592\":1446,\"_593\":1447,\"_594\":1444,\"_595\":1424,\"_131\":1241,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1241,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1426,\"_561\":562,\"_563\":1427,\"_565\":1428,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1429,\"_571\":1430,\"_573\":1431,\"_575\":1432,\"_577\":188,\"_578\":186,\"_579\":1433,\"_581\":1434,\"_583\":24,\"_584\":1435,\"_586\":1436,\"_588\":1430,\"_589\":188,\"_590\":1429,\"_591\":186,\"_592\":1433,\"_593\":1434,\"_594\":1430,\"_595\":1437,\"_131\":1438,\"_144\":856,\"_142\":198,\"_137\":1439,\"_599\":16,\"_600\":180,\"_601\":24,\"_602\":174,\"_604\":180,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1438,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1413,\"_561\":562,\"_563\":1414,\"_565\":1415,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1416,\"_571\":1417,\"_573\":641,\"_575\":1418,\"_577\":188,\"_578\":700,\"_579\":1419,\"_581\":1420,\"_583\":24,\"_584\":1421,\"_586\":1422,\"_588\":1417,\"_589\":188,\"_590\":1416,\"_591\":700,\"_592\":1419,\"_593\":1420,\"_594\":1423,\"_595\":1424,\"_131\":814,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":814,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1401,\"_561\":562,\"_563\":1402,\"_565\":1403,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1404,\"_571\":1405,\"_573\":1395,\"_575\":1406,\"_577\":188,\"_578\":188,\"_579\":1407,\"_581\":1408,\"_583\":24,\"_584\":1409,\"_586\":1410,\"_588\":1405,\"_589\":188,\"_590\":1404,\"_591\":188,\"_592\":1407,\"_593\":1408,\"_594\":1405,\"_595\":1411,\"_131\":745,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":745,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1390,\"_561\":562,\"_563\":1391,\"_565\":1392,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1393,\"_571\":1394,\"_573\":1395,\"_575\":648,\"_577\":188,\"_578\":190,\"_579\":1396,\"_581\":1397,\"_583\":24,\"_584\":1398,\"_586\":1399,\"_588\":1394,\"_589\":188,\"_590\":1393,\"_591\":190,\"_592\":1396,\"_593\":1397,\"_594\":1394,\"_595\":1319,\"_131\":745,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":745,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1374,\"_561\":562,\"_563\":1375,\"_565\":1376,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1377,\"_571\":1378,\"_573\":1379,\"_575\":1380,\"_577\":188,\"_578\":188,\"_579\":1381,\"_581\":1382,\"_583\":24,\"_584\":1383,\"_586\":1384,\"_588\":1378,\"_589\":188,\"_590\":1377,\"_591\":188,\"_592\":1381,\"_593\":1382,\"_594\":1385,\"_595\":1386,\"_131\":1387,\"_144\":197,\"_142\":198,\"_137\":1388,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1387,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1362,\"_561\":562,\"_563\":1363,\"_565\":1364,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1365,\"_571\":1366,\"_573\":1367,\"_575\":1368,\"_577\":188,\"_578\":173,\"_579\":389,\"_581\":389,\"_583\":24,\"_584\":1369,\"_586\":1370,\"_588\":1366,\"_589\":188,\"_590\":1365,\"_591\":173,\"_592\":389,\"_593\":389,\"_594\":1371,\"_595\":1372,\"_131\":718,\"_144\":198,\"_142\":198,\"_137\":899,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":718,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1349,\"_561\":562,\"_563\":1350,\"_565\":1020,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1351,\"_571\":1352,\"_573\":1353,\"_575\":1354,\"_577\":188,\"_578\":173,\"_579\":1355,\"_581\":1356,\"_583\":24,\"_584\":1357,\"_586\":1358,\"_588\":1352,\"_589\":188,\"_590\":1351,\"_591\":173,\"_592\":1355,\"_593\":1356,\"_594\":1352,\"_595\":1359,\"_131\":1360,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1360,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1337,\"_561\":562,\"_563\":1338,\"_565\":1339,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1340,\"_571\":1341,\"_573\":1342,\"_575\":642,\"_577\":188,\"_578\":188,\"_579\":1343,\"_581\":1344,\"_583\":24,\"_584\":1345,\"_586\":1346,\"_588\":1341,\"_589\":188,\"_590\":1340,\"_591\":188,\"_592\":1343,\"_593\":1344,\"_594\":1341,\"_595\":1347,\"_131\":633,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":633,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1323,\"_561\":562,\"_563\":1324,\"_565\":1325,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1326,\"_571\":1327,\"_573\":1328,\"_575\":1329,\"_577\":188,\"_578\":700,\"_579\":1330,\"_581\":1331,\"_583\":24,\"_584\":1332,\"_586\":1333,\"_588\":1327,\"_589\":188,\"_590\":1326,\"_591\":700,\"_592\":1330,\"_593\":1331,\"_594\":1327,\"_595\":1254,\"_131\":705,\"_144\":1134,\"_142\":198,\"_137\":1334,\"_599\":16,\"_600\":191,\"_601\":24,\"_602\":1335,\"_604\":191,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":705,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1308,\"_561\":562,\"_563\":1309,\"_565\":1310,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1311,\"_571\":1312,\"_573\":1313,\"_575\":1314,\"_577\":188,\"_578\":700,\"_579\":1315,\"_581\":1316,\"_583\":24,\"_584\":1317,\"_586\":1318,\"_588\":1312,\"_589\":188,\"_590\":1311,\"_591\":700,\"_592\":1315,\"_593\":1316,\"_594\":1312,\"_595\":1319,\"_131\":1320,\"_144\":197,\"_142\":198,\"_137\":1321,\"_599\":16,\"_600\":390,\"_601\":24,\"_602\":180,\"_604\":390,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1320,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1295,\"_561\":562,\"_563\":1296,\"_565\":1297,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1298,\"_571\":1299,\"_573\":671,\"_575\":1300,\"_577\":188,\"_578\":188,\"_579\":1301,\"_581\":1302,\"_583\":24,\"_584\":1303,\"_586\":1304,\"_588\":1299,\"_589\":188,\"_590\":1298,\"_591\":188,\"_592\":1301,\"_593\":1302,\"_594\":1305,\"_595\":1254,\"_131\":1306,\"_144\":649,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1306,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1283,\"_561\":562,\"_563\":1284,\"_565\":1285,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1286,\"_571\":1287,\"_573\":641,\"_575\":1288,\"_577\":188,\"_578\":194,\"_579\":1289,\"_581\":1290,\"_583\":24,\"_584\":1291,\"_586\":1292,\"_588\":1287,\"_589\":188,\"_590\":1286,\"_591\":194,\"_592\":1289,\"_593\":1290,\"_594\":1287,\"_595\":1293,\"_131\":814,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":814,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1270,\"_561\":562,\"_563\":1271,\"_565\":1272,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1273,\"_571\":1274,\"_573\":1167,\"_575\":1275,\"_577\":188,\"_578\":188,\"_579\":1276,\"_581\":1277,\"_583\":24,\"_584\":1278,\"_586\":1279,\"_588\":1274,\"_589\":188,\"_590\":1273,\"_591\":188,\"_592\":1276,\"_593\":1277,\"_594\":1274,\"_595\":1280,\"_131\":1281,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1281,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1257,\"_561\":562,\"_563\":1258,\"_565\":1259,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1260,\"_571\":1261,\"_573\":1262,\"_575\":893,\"_577\":188,\"_578\":188,\"_579\":1263,\"_581\":1264,\"_583\":24,\"_584\":1265,\"_586\":1266,\"_588\":1261,\"_589\":188,\"_590\":1260,\"_591\":188,\"_592\":1263,\"_593\":1264,\"_594\":1261,\"_595\":1267,\"_131\":1268,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1268,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1243,\"_561\":562,\"_563\":1244,\"_565\":1245,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1246,\"_571\":1247,\"_573\":641,\"_575\":1248,\"_577\":188,\"_578\":194,\"_579\":1249,\"_581\":1250,\"_583\":24,\"_584\":1251,\"_586\":1252,\"_588\":1247,\"_589\":188,\"_590\":1246,\"_591\":194,\"_592\":1249,\"_593\":1250,\"_594\":1253,\"_595\":1254,\"_131\":1255,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":16,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1255,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1230,\"_561\":562,\"_563\":1231,\"_565\":1232,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1233,\"_571\":1234,\"_573\":641,\"_575\":1235,\"_577\":188,\"_578\":188,\"_579\":1236,\"_581\":1237,\"_583\":24,\"_584\":1238,\"_586\":1239,\"_588\":1234,\"_589\":188,\"_590\":1233,\"_591\":188,\"_592\":1236,\"_593\":1237,\"_594\":1240,\"_595\":632,\"_131\":1241,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1241,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1216,\"_561\":562,\"_563\":1217,\"_565\":1218,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1219,\"_571\":1220,\"_573\":1221,\"_575\":1222,\"_577\":188,\"_578\":700,\"_579\":1223,\"_581\":1224,\"_583\":24,\"_584\":1225,\"_586\":1226,\"_588\":1220,\"_589\":188,\"_590\":1219,\"_591\":700,\"_592\":1223,\"_593\":1224,\"_594\":1227,\"_595\":885,\"_131\":1228,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1228,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1204,\"_561\":562,\"_563\":1205,\"_565\":1206,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1207,\"_571\":1208,\"_573\":641,\"_575\":1209,\"_577\":188,\"_578\":194,\"_579\":1210,\"_581\":1211,\"_583\":24,\"_584\":1212,\"_586\":1213,\"_588\":1208,\"_589\":188,\"_590\":1207,\"_591\":194,\"_592\":1210,\"_593\":1211,\"_594\":1208,\"_595\":885,\"_131\":1214,\"_144\":198,\"_142\":198,\"_137\":1160,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1214,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1191,\"_561\":562,\"_563\":1192,\"_565\":1193,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1194,\"_571\":1195,\"_573\":974,\"_575\":1196,\"_577\":188,\"_578\":194,\"_579\":1197,\"_581\":1198,\"_583\":24,\"_584\":1199,\"_586\":1200,\"_588\":1195,\"_589\":188,\"_590\":1194,\"_591\":194,\"_592\":1197,\"_593\":1198,\"_594\":1195,\"_595\":842,\"_131\":1201,\"_144\":649,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":1202,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1201,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1175,\"_561\":562,\"_563\":1176,\"_565\":1177,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1178,\"_571\":1179,\"_573\":1167,\"_575\":1180,\"_577\":188,\"_578\":179,\"_579\":1181,\"_581\":1182,\"_583\":24,\"_584\":1183,\"_586\":1184,\"_588\":1179,\"_589\":188,\"_590\":1178,\"_591\":179,\"_592\":1181,\"_593\":1182,\"_594\":1185,\"_595\":1186,\"_131\":1187,\"_144\":197,\"_142\":198,\"_137\":1188,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":1189,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1187,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1162,\"_561\":562,\"_563\":1163,\"_565\":1164,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1165,\"_571\":1166,\"_573\":1167,\"_575\":1168,\"_577\":188,\"_578\":179,\"_579\":1169,\"_581\":1170,\"_583\":24,\"_584\":1171,\"_586\":1172,\"_588\":1166,\"_589\":188,\"_590\":1165,\"_591\":179,\"_592\":1169,\"_593\":1170,\"_594\":1173,\"_595\":733,\"_131\":967,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":967,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1149,\"_561\":562,\"_563\":1150,\"_565\":1151,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1152,\"_571\":1153,\"_573\":1154,\"_575\":1155,\"_577\":188,\"_578\":186,\"_579\":1156,\"_581\":1157,\"_583\":24,\"_584\":1158,\"_586\":1159,\"_588\":1153,\"_589\":188,\"_590\":1152,\"_591\":186,\"_592\":1156,\"_593\":1157,\"_594\":1153,\"_595\":842,\"_131\":899,\"_144\":1160,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":180,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":899,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1137,\"_561\":562,\"_563\":1138,\"_565\":1139,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1140,\"_571\":1141,\"_573\":671,\"_575\":1142,\"_577\":188,\"_578\":182,\"_579\":1143,\"_581\":1144,\"_583\":24,\"_584\":1145,\"_586\":1146,\"_588\":1141,\"_589\":188,\"_590\":1140,\"_591\":182,\"_592\":1143,\"_593\":1144,\"_594\":1141,\"_595\":632,\"_131\":1147,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1147,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1123,\"_561\":562,\"_563\":1124,\"_565\":1125,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1126,\"_571\":1127,\"_573\":574,\"_575\":1128,\"_577\":188,\"_578\":171,\"_579\":1129,\"_581\":1130,\"_583\":24,\"_584\":1131,\"_586\":1132,\"_588\":1127,\"_589\":188,\"_590\":1126,\"_591\":171,\"_592\":1129,\"_593\":1130,\"_594\":1133,\"_595\":632,\"_131\":966,\"_144\":1134,\"_142\":198,\"_137\":1135,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":603,\"_604\":178,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":966,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1111,\"_561\":562,\"_563\":1112,\"_565\":1113,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1114,\"_571\":1115,\"_573\":1116,\"_575\":626,\"_577\":188,\"_578\":700,\"_579\":1117,\"_581\":1118,\"_583\":24,\"_584\":1119,\"_586\":1120,\"_588\":1115,\"_589\":188,\"_590\":1114,\"_591\":700,\"_592\":1117,\"_593\":1118,\"_594\":1121,\"_595\":733,\"_131\":664,\"_144\":649,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":664,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1096,\"_561\":562,\"_563\":1097,\"_565\":1098,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1099,\"_571\":1100,\"_573\":1101,\"_575\":1102,\"_577\":188,\"_578\":194,\"_579\":1103,\"_581\":1104,\"_583\":24,\"_584\":1105,\"_586\":1106,\"_588\":1100,\"_589\":188,\"_590\":1099,\"_591\":194,\"_592\":1103,\"_593\":1104,\"_594\":1100,\"_595\":733,\"_131\":1107,\"_144\":1108,\"_142\":198,\"_137\":1109,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":172,\"_604\":178,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1107,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1083,\"_561\":562,\"_563\":1084,\"_565\":1085,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1086,\"_571\":1087,\"_573\":641,\"_575\":1088,\"_577\":188,\"_578\":188,\"_579\":1089,\"_581\":1090,\"_583\":24,\"_584\":1091,\"_586\":1092,\"_588\":1087,\"_589\":188,\"_590\":1086,\"_591\":188,\"_592\":1089,\"_593\":1090,\"_594\":1093,\"_595\":632,\"_131\":1094,\"_144\":649,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1094,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1073,\"_561\":562,\"_563\":1074,\"_565\":766,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1075,\"_571\":1076,\"_573\":769,\"_575\":1077,\"_577\":188,\"_578\":194,\"_579\":1078,\"_581\":1079,\"_583\":24,\"_584\":1080,\"_586\":1081,\"_588\":1076,\"_589\":188,\"_590\":1075,\"_591\":194,\"_592\":1078,\"_593\":1079,\"_594\":1076,\"_595\":632,\"_131\":734,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":734,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1060,\"_561\":562,\"_563\":1061,\"_565\":1062,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1063,\"_571\":1064,\"_573\":1065,\"_575\":1066,\"_577\":175,\"_578\":175,\"_579\":1067,\"_581\":1068,\"_583\":24,\"_584\":1069,\"_586\":1070,\"_588\":1064,\"_589\":175,\"_590\":1063,\"_591\":175,\"_592\":1067,\"_593\":1068,\"_594\":1064,\"_595\":1071,\"_131\":728,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":728,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1046,\"_561\":562,\"_563\":1047,\"_565\":1048,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1049,\"_571\":1050,\"_573\":1051,\"_575\":1052,\"_577\":188,\"_578\":700,\"_579\":1053,\"_581\":1054,\"_583\":24,\"_584\":1055,\"_586\":1056,\"_588\":1050,\"_589\":188,\"_590\":1049,\"_591\":700,\"_592\":1053,\"_593\":1054,\"_594\":1050,\"_595\":733,\"_131\":1057,\"_144\":198,\"_142\":198,\"_137\":1058,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1057,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1031,\"_561\":562,\"_563\":1032,\"_565\":1033,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1034,\"_571\":1035,\"_573\":1036,\"_575\":1037,\"_577\":188,\"_578\":179,\"_579\":1038,\"_581\":1039,\"_583\":24,\"_584\":1040,\"_586\":1041,\"_588\":1035,\"_589\":188,\"_590\":1034,\"_591\":179,\"_592\":1038,\"_593\":1039,\"_594\":1035,\"_595\":632,\"_131\":1042,\"_144\":197,\"_142\":198,\"_137\":1043,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":1044,\"_604\":178,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1042,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1018,\"_561\":562,\"_563\":1019,\"_565\":1020,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1021,\"_571\":1022,\"_573\":1023,\"_575\":1024,\"_577\":188,\"_578\":188,\"_579\":1025,\"_581\":1026,\"_583\":24,\"_584\":1027,\"_586\":1028,\"_588\":1022,\"_589\":188,\"_590\":1021,\"_591\":188,\"_592\":1025,\"_593\":1026,\"_594\":1022,\"_595\":733,\"_131\":1029,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1029,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":1005,\"_561\":562,\"_563\":1006,\"_565\":1007,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":1008,\"_571\":1009,\"_573\":752,\"_575\":1010,\"_577\":188,\"_578\":171,\"_579\":1011,\"_581\":1012,\"_583\":24,\"_584\":1013,\"_586\":1014,\"_588\":1009,\"_589\":188,\"_590\":1008,\"_591\":171,\"_592\":1011,\"_593\":1012,\"_594\":1015,\"_595\":885,\"_131\":1016,\"_144\":197,\"_142\":198,\"_137\":598,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":762,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1016,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":993,\"_561\":562,\"_563\":994,\"_565\":995,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":996,\"_571\":997,\"_573\":657,\"_575\":998,\"_577\":188,\"_578\":700,\"_579\":999,\"_581\":1000,\"_583\":24,\"_584\":1001,\"_586\":1002,\"_588\":997,\"_589\":188,\"_590\":996,\"_591\":700,\"_592\":999,\"_593\":1000,\"_594\":997,\"_595\":885,\"_131\":1003,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":1003,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":982,\"_561\":562,\"_563\":983,\"_565\":738,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":984,\"_571\":985,\"_573\":657,\"_575\":986,\"_577\":188,\"_578\":188,\"_579\":987,\"_581\":988,\"_583\":24,\"_584\":989,\"_586\":990,\"_588\":985,\"_589\":188,\"_590\":984,\"_591\":188,\"_592\":987,\"_593\":988,\"_594\":985,\"_595\":632,\"_131\":991,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":991,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":969,\"_561\":562,\"_563\":970,\"_565\":971,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":972,\"_571\":973,\"_573\":974,\"_575\":713,\"_577\":188,\"_578\":700,\"_579\":975,\"_581\":976,\"_583\":24,\"_584\":977,\"_586\":978,\"_588\":973,\"_589\":188,\"_590\":972,\"_591\":700,\"_592\":975,\"_593\":976,\"_594\":973,\"_595\":842,\"_131\":979,\"_144\":649,\"_142\":198,\"_137\":980,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":172,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":979,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":955,\"_561\":562,\"_563\":956,\"_565\":957,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":958,\"_571\":959,\"_573\":960,\"_575\":961,\"_577\":188,\"_578\":186,\"_579\":962,\"_581\":963,\"_583\":24,\"_584\":964,\"_586\":965,\"_588\":959,\"_589\":188,\"_590\":958,\"_591\":186,\"_592\":962,\"_593\":963,\"_594\":959,\"_595\":733,\"_131\":966,\"_144\":197,\"_142\":198,\"_137\":967,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":180,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":966,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":942,\"_561\":562,\"_563\":943,\"_565\":944,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":945,\"_571\":946,\"_573\":947,\"_575\":948,\"_577\":188,\"_578\":700,\"_579\":949,\"_581\":950,\"_583\":24,\"_584\":951,\"_586\":952,\"_588\":946,\"_589\":188,\"_590\":945,\"_591\":700,\"_592\":949,\"_593\":950,\"_594\":946,\"_595\":842,\"_131\":953,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":953,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":928,\"_561\":562,\"_563\":929,\"_565\":930,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":931,\"_571\":932,\"_573\":933,\"_575\":934,\"_577\":188,\"_578\":188,\"_579\":935,\"_581\":936,\"_583\":24,\"_584\":937,\"_586\":938,\"_588\":932,\"_589\":188,\"_590\":931,\"_591\":188,\"_592\":935,\"_593\":936,\"_594\":939,\"_595\":632,\"_131\":940,\"_144\":198,\"_142\":198,\"_137\":857,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":178,\"_604\":178,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":940,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":914,\"_561\":562,\"_563\":915,\"_565\":916,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":917,\"_571\":918,\"_573\":919,\"_575\":920,\"_577\":188,\"_578\":186,\"_579\":921,\"_581\":922,\"_583\":24,\"_584\":923,\"_586\":924,\"_588\":918,\"_589\":188,\"_590\":917,\"_591\":186,\"_592\":921,\"_593\":922,\"_594\":918,\"_595\":632,\"_131\":925,\"_144\":649,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":926,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":925,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":901,\"_561\":562,\"_563\":902,\"_565\":903,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":904,\"_571\":905,\"_573\":906,\"_575\":907,\"_577\":188,\"_578\":177,\"_579\":908,\"_581\":909,\"_583\":24,\"_584\":910,\"_586\":911,\"_588\":905,\"_589\":188,\"_590\":904,\"_591\":177,\"_592\":908,\"_593\":909,\"_594\":905,\"_595\":885,\"_131\":912,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":603,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":912,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":887,\"_561\":562,\"_563\":888,\"_565\":889,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":890,\"_571\":891,\"_573\":892,\"_575\":893,\"_577\":188,\"_578\":188,\"_579\":894,\"_581\":895,\"_583\":24,\"_584\":896,\"_586\":897,\"_588\":891,\"_589\":188,\"_590\":890,\"_591\":188,\"_592\":894,\"_593\":895,\"_594\":891,\"_595\":885,\"_131\":898,\"_144\":197,\"_142\":198,\"_137\":899,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":180,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":898,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":873,\"_561\":562,\"_563\":874,\"_565\":875,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":876,\"_571\":877,\"_573\":878,\"_575\":879,\"_577\":188,\"_578\":192,\"_579\":880,\"_581\":881,\"_583\":24,\"_584\":882,\"_586\":883,\"_588\":877,\"_589\":188,\"_590\":876,\"_591\":192,\"_592\":880,\"_593\":881,\"_594\":884,\"_595\":885,\"_131\":650,\"_144\":197,\"_142\":198,\"_137\":719,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":650,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":860,\"_561\":562,\"_563\":861,\"_565\":862,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":863,\"_571\":864,\"_573\":865,\"_575\":866,\"_577\":188,\"_578\":182,\"_579\":867,\"_581\":868,\"_583\":24,\"_584\":869,\"_586\":870,\"_588\":864,\"_589\":188,\"_590\":863,\"_591\":182,\"_592\":867,\"_593\":868,\"_594\":864,\"_595\":632,\"_131\":871,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":871,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":844,\"_561\":562,\"_563\":845,\"_565\":846,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":847,\"_571\":848,\"_573\":849,\"_575\":850,\"_577\":188,\"_578\":177,\"_579\":851,\"_581\":852,\"_583\":24,\"_584\":853,\"_586\":854,\"_588\":848,\"_589\":188,\"_590\":847,\"_591\":177,\"_592\":851,\"_593\":852,\"_594\":848,\"_595\":733,\"_131\":855,\"_144\":856,\"_142\":198,\"_137\":857,\"_599\":16,\"_600\":390,\"_601\":16,\"_602\":858,\"_604\":390,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":855,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":832,\"_561\":562,\"_563\":833,\"_565\":834,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":835,\"_571\":836,\"_573\":657,\"_575\":837,\"_577\":188,\"_578\":182,\"_579\":838,\"_581\":839,\"_583\":24,\"_584\":840,\"_586\":841,\"_588\":836,\"_589\":188,\"_590\":835,\"_591\":182,\"_592\":838,\"_593\":839,\"_594\":836,\"_595\":842,\"_131\":678,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":678,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":818,\"_561\":562,\"_563\":819,\"_565\":820,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":821,\"_571\":822,\"_573\":823,\"_575\":824,\"_577\":188,\"_578\":182,\"_579\":825,\"_581\":826,\"_583\":24,\"_584\":827,\"_586\":828,\"_588\":822,\"_589\":188,\"_590\":821,\"_591\":182,\"_592\":825,\"_593\":826,\"_594\":691,\"_595\":632,\"_131\":829,\"_144\":197,\"_142\":198,\"_137\":830,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":191,\"_604\":178,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":829,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":804,\"_561\":562,\"_563\":805,\"_565\":806,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":807,\"_571\":808,\"_573\":641,\"_575\":809,\"_577\":188,\"_578\":194,\"_579\":810,\"_581\":811,\"_583\":24,\"_584\":812,\"_586\":813,\"_588\":808,\"_589\":188,\"_590\":807,\"_591\":194,\"_592\":810,\"_593\":811,\"_594\":808,\"_595\":733,\"_131\":814,\"_144\":815,\"_142\":198,\"_137\":816,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":390,\"_604\":178,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":814,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":791,\"_561\":562,\"_563\":792,\"_565\":793,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":794,\"_571\":795,\"_573\":796,\"_575\":797,\"_577\":188,\"_578\":186,\"_579\":798,\"_581\":799,\"_583\":24,\"_584\":800,\"_586\":801,\"_588\":795,\"_589\":188,\"_590\":794,\"_591\":186,\"_592\":798,\"_593\":799,\"_594\":795,\"_595\":632,\"_131\":650,\"_144\":198,\"_142\":198,\"_137\":802,\"_599\":16,\"_600\":178,\"_601\":16,\"_602\":720,\"_604\":178,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":650,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":777,\"_561\":562,\"_563\":778,\"_565\":779,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":780,\"_571\":781,\"_573\":782,\"_575\":783,\"_577\":188,\"_578\":188,\"_579\":784,\"_581\":785,\"_583\":24,\"_584\":786,\"_586\":787,\"_588\":781,\"_589\":188,\"_590\":780,\"_591\":188,\"_592\":784,\"_593\":785,\"_594\":781,\"_595\":733,\"_131\":788,\"_144\":197,\"_142\":198,\"_137\":789,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":180,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":788,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":764,\"_561\":562,\"_563\":765,\"_565\":766,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":767,\"_571\":768,\"_573\":769,\"_575\":770,\"_577\":188,\"_578\":194,\"_579\":771,\"_581\":772,\"_583\":24,\"_584\":773,\"_586\":774,\"_588\":768,\"_589\":188,\"_590\":767,\"_591\":194,\"_592\":771,\"_593\":772,\"_594\":768,\"_595\":733,\"_131\":775,\"_144\":197,\"_142\":198,\"_137\":705,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":775,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":747,\"_561\":562,\"_563\":748,\"_565\":749,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":750,\"_571\":751,\"_573\":752,\"_575\":753,\"_577\":188,\"_578\":171,\"_579\":754,\"_581\":755,\"_583\":24,\"_584\":756,\"_586\":757,\"_588\":751,\"_589\":188,\"_590\":750,\"_591\":171,\"_592\":754,\"_593\":755,\"_594\":758,\"_595\":759,\"_131\":760,\"_144\":198,\"_142\":198,\"_137\":761,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":762,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":760,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":736,\"_561\":562,\"_563\":737,\"_565\":738,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":739,\"_571\":740,\"_573\":657,\"_575\":626,\"_577\":188,\"_578\":700,\"_579\":741,\"_581\":742,\"_583\":24,\"_584\":743,\"_586\":744,\"_588\":740,\"_589\":188,\"_590\":739,\"_591\":700,\"_592\":741,\"_593\":742,\"_594\":740,\"_595\":733,\"_131\":745,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":191,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":745,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":722,\"_561\":562,\"_563\":723,\"_565\":724,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":725,\"_571\":726,\"_573\":727,\"_575\":728,\"_577\":188,\"_578\":188,\"_579\":729,\"_581\":730,\"_583\":24,\"_584\":731,\"_586\":732,\"_588\":726,\"_589\":188,\"_590\":725,\"_591\":188,\"_592\":729,\"_593\":730,\"_594\":726,\"_595\":733,\"_131\":734,\"_144\":649,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":734,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":707,\"_561\":562,\"_563\":708,\"_565\":709,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":710,\"_571\":711,\"_573\":712,\"_575\":713,\"_577\":188,\"_578\":188,\"_579\":714,\"_581\":715,\"_583\":24,\"_584\":716,\"_586\":717,\"_588\":711,\"_589\":188,\"_590\":710,\"_591\":188,\"_592\":714,\"_593\":715,\"_594\":711,\"_595\":632,\"_131\":718,\"_144\":197,\"_142\":198,\"_137\":719,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":720,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":718,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":693,\"_561\":562,\"_563\":694,\"_565\":695,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":696,\"_571\":697,\"_573\":698,\"_575\":699,\"_577\":188,\"_578\":700,\"_579\":701,\"_581\":702,\"_583\":24,\"_584\":703,\"_586\":704,\"_588\":697,\"_589\":188,\"_590\":696,\"_591\":700,\"_592\":701,\"_593\":702,\"_594\":697,\"_595\":632,\"_131\":705,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":705,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":681,\"_561\":562,\"_563\":682,\"_565\":683,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":684,\"_571\":685,\"_573\":641,\"_575\":686,\"_577\":188,\"_578\":194,\"_579\":687,\"_581\":688,\"_583\":24,\"_584\":689,\"_586\":690,\"_588\":685,\"_589\":188,\"_590\":684,\"_591\":194,\"_592\":687,\"_593\":688,\"_594\":691,\"_595\":632,\"_131\":648,\"_144\":649,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":390,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":648,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":666,\"_561\":562,\"_563\":667,\"_565\":668,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":669,\"_571\":670,\"_573\":671,\"_575\":672,\"_577\":188,\"_578\":182,\"_579\":673,\"_581\":674,\"_583\":24,\"_584\":675,\"_586\":676,\"_588\":670,\"_589\":188,\"_590\":669,\"_591\":182,\"_592\":673,\"_593\":674,\"_594\":677,\"_595\":632,\"_131\":678,\"_144\":198,\"_142\":198,\"_137\":679,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":678,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":652,\"_561\":562,\"_563\":653,\"_565\":654,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":655,\"_571\":656,\"_573\":657,\"_575\":658,\"_577\":188,\"_578\":182,\"_579\":659,\"_581\":660,\"_583\":24,\"_584\":661,\"_586\":662,\"_588\":656,\"_589\":188,\"_590\":655,\"_591\":182,\"_592\":659,\"_593\":660,\"_594\":663,\"_595\":632,\"_131\":664,\"_144\":197,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":664,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":636,\"_561\":562,\"_563\":637,\"_565\":638,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":639,\"_571\":640,\"_573\":641,\"_575\":642,\"_577\":188,\"_578\":188,\"_579\":643,\"_581\":644,\"_583\":24,\"_584\":645,\"_586\":646,\"_588\":640,\"_589\":188,\"_590\":639,\"_591\":188,\"_592\":643,\"_593\":644,\"_594\":647,\"_595\":632,\"_131\":648,\"_144\":649,\"_142\":198,\"_137\":650,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":176,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":648,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":620,\"_561\":562,\"_563\":621,\"_565\":622,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":623,\"_571\":624,\"_573\":625,\"_575\":626,\"_577\":188,\"_578\":184,\"_579\":627,\"_581\":628,\"_583\":24,\"_584\":629,\"_586\":630,\"_588\":624,\"_589\":188,\"_590\":623,\"_591\":184,\"_592\":627,\"_593\":628,\"_594\":631,\"_595\":632,\"_131\":633,\"_144\":197,\"_142\":198,\"_137\":634,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":178,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":633,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},{\"_559\":560,\"_561\":562,\"_563\":564,\"_565\":566,\"_567\":-5,\"_568\":24,\"_569\":-5,\"_233\":570,\"_571\":572,\"_573\":574,\"_575\":576,\"_577\":188,\"_578\":171,\"_579\":580,\"_581\":582,\"_583\":24,\"_584\":585,\"_586\":587,\"_588\":572,\"_589\":188,\"_590\":570,\"_591\":171,\"_592\":580,\"_593\":582,\"_594\":572,\"_595\":596,\"_131\":597,\"_144\":197,\"_142\":198,\"_137\":598,\"_599\":24,\"_600\":176,\"_601\":16,\"_602\":603,\"_604\":176,\"_605\":24,\"_606\":24,\"_607\":608,\"_609\":610,\"_611\":612,\"_613\":24,\"_614\":597,\"_615\":-5,\"_616\":-5,\"_617\":-5,\"_618\":-5},\"buildingId\",\"be36cf3f-00b1-47f5-a05e-7e69aff700da\",\"listingType\",\"default\",\"listingId\",\"e2100148-c65a-44a4-bf2a-848428577715\",\"description\",\"{\\\"en\\\":\\\"✨ Available now!\\\\nFully renovated building and units (2019). Bright and modern apartment with stainless steel stove \u0026 refrigerator plus wall-mounted air conditioning for year-round comfort.\\\\n📍 Prime location:\\\\n•\\\\tAcross from Riviera Shopping Center (grocery, restaurants, pharmacy, salons, dentist, optometry)\\\\n•\\\\t±15 min from Ottawa 🚗\\\\n•\\\\t2 min walk to Rapibus La Gappe 🚌\\\\nFeatures:\\\\n•\\\\tHeating \u0026 electricity included\\\\n•\\\\t1 parking spot included 🚗\\\\n•\\\\tShared laundry with electronic payment 🧺\\\\n•\\\\tMinimum 12-month lease 📄\\\\n•\\\\tCredit check required ✅\\\\n•\\\\tNo dogs allowed ❌\\\\n📞 Contact Halfred today to book a visit: 819-593-3304\\\\n\\\",\\\"fr\\\":\\\"✨ Disponible dès maintenant !\\\\nImmeuble et appartements entièrement rénovés en 2019. Logement moderne et lumineux, avec cuisinière et réfrigérateur en acier inoxydable ainsi qu’air climatisé mural pour un confort optimal.\\\\n📍 Emplacement de choix :\\\\n•\\\\tEn face du Centre d’achat Riviera (épicerie, restos, pharmacie, coiffeurs, dentiste, optométrie)\\\\n•\\\\tÀ ±15 min d’Ottawa 🚗\\\\n•\\\\tÀ 2 min à pied du Rapibus La Gappe 🚌\\\\nCaractéristiques :\\\\n•\\\\tChauffé et éclairé inclus\\\\n•\\\\t1 stationnement inclus 🚗\\\\n•\\\\tBuanderie commune avec paiement électronique 🧺\\\\n•\\\\tBail minimum 12 mois 📄\\\\n•\\\\tEnquête de crédit obligatoire ✅\\\\n•\\\\tChiens non acceptés ❌\\\\n📞 Contactez Halfred dès maintenant pour une visite : 819-593-3304\\\\n\\\"}\",\"featureSiteSubdomain\",\"featureSiteEnabled\",\"projectStage\",\"25-rue-des-flandres\",\"street\",\"25 Rue Des Flandres\",\"streetName\",\"Rue Des Flandres\",\"streetNumber\",\"25\",\"city\",\"neighborhood\",\"latitude\",45.469936,\"longitude\",-75.7188,\"isFullyBooked\",\"images\",[619],\"buildingImages\",[619],\"mainBuildingStreet\",\"mainBuildingCity\",\"mainBuildingSlug\",\"mainBuildingNeighborhood\",\"mainBuildingLatitude\",\"mainBuildingLongitude\",\"title\",\"availability\",\"2026-08-15\",\"1400\",\"750\",\"isMultipleUnits\",\"unitCount\",\"isScarce\",\"totalUnitCount\",32,\"listedUnitCount\",\"isPromoted\",\"isAvailableNow\",\"unitListingType\",\"Unit\",\"pricingStrategy\",\"per_month\",\"spaceType\",\"apartment\",\"isAllCommercial\",\"minPricePerMonth\",\"minPricePerSqft\",\"originalPricePerMonth\",\"originalPricePerSqft\",\"featureSiteUrl\",\"/storage/v1/object/public/halfred/buildings/be36cf3f-00b1-47f5-a05e-7e69aff700da/25_Rue_des_Flandres_17-01.jpg\",\"578ff7aa-8048-43d4-8d36-23154bc95d01\",\"6f60782a-0249-4c4f-87be-7e37ed4ffa86\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"heading\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null,\\\\\\\"level\\\\\\\":3},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"BEAUTIFUL APARTMENT FOR RENT – QUIET PLATEAU LOCATION\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Enjoy this beautiful apartment located in the highly desirable \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" neighborhood in Hull. Situated on a quiet street, this unit offers comfort, convenience, and easy access to everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Private storage shed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ 1 outdoor parking space included 🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"(Second parking space available for $50/month)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air conditioning ❄️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Separate bathtub and shower 🛁🚿\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Large private balcony 🌿\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Bright and spacious living areas\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Quiet residential street\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Close to grocery stores, restaurants, schools, parks, and public transit\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Quick access to downtown Ottawa and Hull\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental Conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are of a model unit and may vary slightly from the available apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"***Possible to rent it with applicances for 1750$***\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"***Possible to rent all inclusive for 1900$***\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today to schedule a viewing!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"heading\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null,\\\\\\\"level\\\\\\\":3},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"SUPERBE APPARTEMENT À LOUER – SECTEUR PLATEAU\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Découvrez ce magnifique appartement situé dans le secteur recherché du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau à Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Profitez d'une rue calme et paisible, tout en étant à proximité de tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Remise extérieure incluse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ 1 stationnement extérieur inclus 🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"(Possibilité d'un 2ᵉ stationnement pour 50 $/mois)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air climatisé ❄️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Bain et douche séparés 🛁🚿\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Grand balcon privé 🌿\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Logement lumineux et spacieux\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Quartier tranquille et recherché\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À proximité des épiceries, restaurants, écoles, parcs et transports en commun\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Accès rapide au centre-ville de Hull et d'Ottawa\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos sont celles du logement modèle et peuvent différer légèrement de l'unité disponible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"***Possibilité d'inclure les électroménagers pour 1750$/mois***\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"***Possibilité de louer tout inclus pour 1900$/mois***\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred dès aujourd'hui pour planifier une visite !\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]}]}\\\"}\",\"6-rue-des-beaux-arts\",\"6 Rue Des Beaux-Arts\",\"Rue Des Beaux-Arts\",\"6\",45.436969,-75.807839,[635],[635],\"6 rue des Beaux-Arts\",\"2026-09-01\",\"1650\",\"1260\",\"/storage/v1/object/public/halfred/buildings/578ff7aa-8048-43d4-8d36-23154bc95d01/5cd59b082d009-5f1291fb.jpg\",\"19b68190-c4a1-49da-ad12-5f91e07a96a5\",\"f932036c-2bd2-45a3-b528-8257b5089678\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in one of Aylmer’s most desirable areas? Discover this beautiful recently built unit located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"46 De la Fabrique Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of comfort, convenience, and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Recent construction with modern finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Private parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright, practical, and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after neighborhood close to shops, services, trails, and everyday essentials.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement moderne dans un secteur recherché d’Aylmer? Découvrez ce superbe appartement récemment construit au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"46 rue de la Fabrique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Construction récente avec finition moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Stationnement privé inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie lumineux, pratique et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier paisible et recherché, à proximité des services, commerces, sentiers et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour un quotidien confortable et sans tracas!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"46-rue-de-la-fabrique\",\"46 Rue De La Fabrique\",\"Rue De La Fabrique\",\"46\",45.410351,-75.858869,[651],[651],\"46 fabrique\",\"1804\",\"3\",\"1200\",\"/storage/v1/object/public/halfred/buildings/19b68190-c4a1-49da-ad12-5f91e07a96a5/chatgpt-image-10-juin-2026-105814.png\",\"d4b45d49-f0ca-4d3a-9ce9-36e58bfebee1\",\"ff7926b4-db39-4e25-9454-58f47ea140e8\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"FOR RENT – Beautiful Modern Condo on Katimavik Street, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Located in one of the most sought-after areas of the Plateau, this beautiful condo-style apartment offers comfort, tranquility, and a prime location directly across from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"D’Arcy McGee School\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Exceptional Location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚴 Just steps from the Pioneers Trail bike path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 Only 10 minutes from Aylmer Marina and Main Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Just 10 minutes from Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to schools, shops, restaurants, and all essential services\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What This Unit Offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Separate bathtub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Recent construction with modern finishes and bright living spaces\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love It:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a comfortable lifestyle in a vibrant neighborhood close to nature, bike paths, and all the conveniences you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule a visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique condo à louer – Rue Katimavik, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement de style condo de construction récente, situé dans l’un des secteurs les plus recherchés du Plateau, directement en face de l’école \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"D’Arcy McGee\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚴 À deux pas du sentier des Pionniers (piste cyclable)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 À seulement 10 minutes de la marina et de la rue Principale d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 À 10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des écoles, commerces, restaurants et services essentiels\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Construction récente avec finition moderne et espace lumineux\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un mode de vie confortable dans un quartier dynamique, près de la nature et de toutes les commodités.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"4-rue-katimavik\",\"4 Rue Katimavik\",\"Rue Katimavik\",\"4\",45.421664,-75.807438,[665],[665],\"4 Katimavik\",\"1695\",\"/storage/v1/object/public/halfred/buildings/d4b45d49-f0ca-4d3a-9ce9-36e58bfebee1/955katimavik-19.jpg\",\"ca884e1e-5cd9-4871-9497-28ba5f212791\",\"6e4143f6-a289-40ec-84c6-2591204ede39\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent in Aylmer – Exceptional Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy an outstanding lifestyle in one of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Aylmer’s most desirable neighborhoods\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"! Located directly across from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"D’Arcy McGee School\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", just steps from the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pioneers Trail bike path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes from Aylmer Marina and Main Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", and just \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes from Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌳 Private balcony to enjoy the outdoors\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🪵 Engineered wood flooring for a modern and stylish look\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏠 Elegant ceramic finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔲 Concrete construction between floors for better soundproofing\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Separate bathtub and shower for added convenience\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A perfect location combining \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature, tranquility, and easy access to all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The ideal home for comfortable and convenient living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement à louer à Aylmer – Emplacement exceptionnel!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un cadre de vie unique dans l’un des secteurs les plus recherchés d’\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"! Situé juste en face de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"l’école D’Arcy McGee\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à quelques pas du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"sentier des Pionniers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes de la marina et de la rue Principale d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", et à \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌳 Balcon privé pour profiter de l’extérieur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🪵 Planchers en bois d’ingénierie pour un style moderne et chaleureux\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏠 Finition en céramique élégante\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔲 Construction en béton entre les étages pour une meilleure insonorisation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Bain et douche séparés pour plus de commodité\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement parfait combinant \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature, tranquillité et proximité de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour un quotidien confortable et pratique!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"26-boulevard-d-amsterdam\",\"26 Boulevard D'amsterdam\",\"Boulevard D'amsterdam\",\"26\",45.431984,-75.807089,[680],[680],\"26 Bd d'Amsterdam, Gatineau\",\"1275\",\"600\",\"/storage/v1/object/public/halfred/buildings/ca884e1e-5cd9-4871-9497-28ba5f212791/955katimavik-19.jpg\",\"140f3eca-df2c-4ab3-922a-ee5dcbad432f\",\"6a3570b1-d43e-460d-9244-3f58cf17eb16\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in one of Aylmer’s most desirable areas? Discover this beautiful recently built unit located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"16 De la Fabrique Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of comfort, convenience, and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Recent construction with modern finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Private parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright, practical, and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after neighborhood close to shops, services, trails, and everyday essentials.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement moderne dans un secteur recherché d’Aylmer? Découvrez ce superbe appartement récemment construit au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"16 rue de la Fabrique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Construction récente avec finition moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Stationnement privé inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie lumineux, pratique et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier paisible et recherché, à proximité des services, commerces, sentiers et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour un quotidien confortable et sans tracas!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite.\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]}]}\\\"}\",\"16-rue-de-la-fabrique\",\"16 Rue De La Fabrique\",\"16\",45.410383,-75.858153,[692],[692],\"Unnamed Building\",\"/storage/v1/object/public/halfred/buildings/140f3eca-df2c-4ab3-922a-ee5dcbad432f/chatgpt-image-5-juin-2026-153827.png\",\"ff199afb-12ea-45df-aa08-017ace88926d\",\"c49c8a98-b87b-45aa-be79-e406210e1d62\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Modern Condos for Rent – Prime Aylmer Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover these stunning modern condos located just steps from the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pioneers Trail\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes from Aylmer Marina\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", Main Street, and downtown \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ottawa and Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". The perfect location to enjoy a lifestyle that combines \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, tranquility, and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Multiple unit options available:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Private balcony\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🪵 Engineered wood and ceramic flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧱 Concrete construction between floors for superior soundproofing\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Wall-mounted air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Separate bathtub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included (option for a second $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Additional option:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A modern and highly desirable environment, perfect for \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"young professionals, small families, or semi-retired residents\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" looking for exceptional quality of life.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking units\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifiques condos modernes à louer – Emplacement de choix à Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ces superbes condos modernes situés à quelques pas du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"sentier des Pionniers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes de la marina d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", de la rue Principale ainsi que des centres-villes d’\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ottawa et de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Un emplacement idéal pour profiter d’un style de vie alliant \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, tranquillité et accessibilité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plusieurs options disponibles :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Balcon privé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🪵 Planchers en bois d’ingénierie et céramique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧱 Construction en béton entre les étages pour une insonorisation supérieure\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Climatisation murale\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus (possibilité d’un 2e $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Option supplémentaire :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez les adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un environnement moderne et recherché, parfait pour les \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"jeunes professionnels, petites familles ou semi-retraités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" cherchant une qualité de vie exceptionnelle.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"23-rue-de-liverpool\",\"23 Rue De Liverpool\",\"Rue De Liverpool\",\"23\",\"\",45.429494,-75.806436,[706],[706],\"1250\",\"/storage/v1/object/public/halfred/buildings/ff199afb-12ea-45df-aa08-017ace88926d/chatgpt-image-11-mai-2026-095521.png\",\"eba5ab26-2c0a-4768-8469-70d9c3aef8ad\",\"8a144da5-6329-4457-81a8-ace4bef5eaca\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Charming Apartment for Rent in Masson – Comfort \u0026 Peaceful Living!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this inviting apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and sought-after area of Masson\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"bright, functional, and comfortable living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Enjoy a peaceful environment while staying close to everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Designed for everyday comfort:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright and well-designed living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional layout maximizing comfort and practicality\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Washer/dryer connections directly in the unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🅿️ 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A convenient location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Just minutes from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"schools, grocery stores, essential services, and Papineau Hospital\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", with easy access to main roads for effortless commuting.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"The perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquility, accessibility, and comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" in a welcoming neighborhood.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐾 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Great opportunity—don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Charmant logement à louer à Masson – Confort \u0026 tranquillité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce joli appartement situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"secteur paisible et recherché de Masson\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour une personne seule ou un couple à la recherche d’un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"pratique, lumineux et agréable à vivre\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Profitez d’un environnement calme tout en restant à proximité de tout.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un espace qui répond à votre quotidien :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Appartement confortable et lumineux\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition fonctionnelle et bien pensée\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Entrées laveuse/sécheuse directement dans l’unité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🅿️ 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement stratégique :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À quelques minutes des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"écoles, épiceries, services essentiels et de l’hôpital de Papineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", avec un accès facile aux principales routes.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité, accessibilité et confort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", dans un quartier agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐾 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une belle opportunité à ne pas manquer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"130-rue-lombard\",\"130 Rue Lombard\",\"Rue Lombard\",\"130\",45.547448,-75.409384,[721],[721],\"1295\",\"1000\",10,\"/storage/v1/object/public/halfred/buildings/eba5ab26-2c0a-4768-8469-70d9c3aef8ad/chatgpt-image-4-mai-2026-155321.png\",\"167980e1-91f0-4c50-9d79-c079730671ca\",\"e479661d-fdf2-468c-8fea-2f548f4e5546\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartments for Rent – Maloney Boulevard, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Enjoy living in a conveniently located building close to everything you need for comfortable everyday living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Just minutes from Lac-Beauchamp Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to grocery stores, pharmacies, and shopping\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Quick access to major roadways\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Building features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Parking available\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Quiet and well-maintained building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Comfortable and functional apartments\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a convenient location close to essential services, green spaces, and everyday amenities.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed under any circumstances\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are from a model unit and may vary from the available apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À LOUER – Boulevard Maloney, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Profitez d’un logement bien situé dans un secteur pratique et recherché, à proximité de tout ce dont vous avez besoin au quotidien!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 À quelques minutes du parc du Lac-Beauchamp\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des épiceries, pharmacies et commerces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Transport en commun facilement accessible\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Accès rapide aux principaux axes routiers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre l’immeuble :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Stationnement disponible\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Environnement calme et bien entretenu\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Logements confortables et fonctionnels\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement stratégique près des services, des espaces verts et des commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Immeuble non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Aucun chien accepté\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos proviennent d’un logement modèle et peuvent différer du logement offert.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"1075-boulevard-maloney-est\",\"1075 Boulevard Maloney Est\",\"Boulevard Maloney Est\",\"1075\",45.492235,-75.589065,[735],[735],\"2026-10-01\",\"1425\",\"/storage/v1/object/public/halfred/buildings/167980e1-91f0-4c50-9d79-c079730671ca/chatgpt-image-5-juin-2026-150918.png\",\"c7e4d4f1-02b1-4cf4-9dd1-f3bef076656e\",\"cbffaa33-8944-4d4b-9088-605b00938854\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Condo-Style Apartment for Rent – Katimavik Street, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning recently built condo-style apartment located on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Katimavik Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", in one of the most desirable areas of the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", directly across from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"D’Arcy McGee School\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". The perfect location combining tranquility, nature, and easy access to all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Exceptional location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚴 Just steps from the Pioneers Trail bike path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌊 Only 10 minutes from Aylmer Marina and Main Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 Just 10 minutes from Ottawa and downtown Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included (option for a second depending on availability)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern recent construction with bright and stylish living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy modern living in a vibrant and highly sought-after neighborhood close to schools, shops, restaurants, and green spaces.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement style condo à louer – Rue Katimavik, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement de construction récente situé sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue Katimavik\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", dans l’un des secteurs les plus recherchés du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", directement en face de l’école \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"D’Arcy McGee\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Un emplacement idéal combinant tranquillité, nature et proximité de tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚴 À deux pas du sentier des Pionniers (piste cyclable)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌊 À seulement 10 minutes de la marina et de la rue Principale d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 À 10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus (possibilité d’un 2e selon disponibilité)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Construction récente avec finition moderne et espace lumineux\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un mode de vie moderne dans un quartier dynamique et très recherché, à proximité des écoles, commerces, restaurants et espaces verts.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens interdits\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"6-rue-katimavik\",\"6 Rue Katimavik\",45.421617,-75.807357,[746],[746],\"1595\",\"/storage/v1/object/public/halfred/buildings/c7e4d4f1-02b1-4cf4-9dd1-f3bef076656e/0__5cf3755a-4140-459d-ba3a-e4c42f34c6fa.webp?version=29854b62-9d72-4c5f-a030-4c9b9e1ab07d\",\"70ffc37f-8fb3-4f54-adb1-2bc6e438fe9a\",\"f41d298c-4c77-4b4b-a53d-38061d0b98ee\",\"{\\\"en\\\":\\\"Live in a bright and convenient apartment ideally located in Gatineau, right across from the Riviera Shopping Center! Enjoy easy access to grocery stores, restaurants, pharmacies, hair salons, a dentist, and an optometry clinic. Just ±15 minutes from Ottawa and only a 2-minute walk to the Rapibus La Gappe station—perfect for daily commuting.\\\\n\\\\nApartment Features:\\\\n\\\\n• Utilities included (heated and lit)\\\\n• Internet and cable included 📶📺\\\\n• Stove and refrigerator included\\\\n• 1 parking spot included\\\\n• Shared laundry (electronic payment machines coming soon)\\\\n\\\\nLease Details:\\\\n\\\\n❌ No dogs allowed, no exceptions\\\\n📄 Minimum 12-month lease\\\\n✅ Credit check required\\\\n\\\\n📞 For more information or to schedule a visit, contact Halfred: 819-593-3304\\\",\\\"fr\\\":\\\"Vivez dans un appartement lumineux et pratique, idéalement situé à Gatineau, directement en face du centre commercial Riviera ! Profitez d’un accès rapide à l’épicerie, aux restaurants, à la pharmacie, aux salons de coiffure, au dentiste et à la clinique d’optométrie. À ±15 minutes d’Ottawa et à seulement 2 minutes à pied de la station Rapibus La Gappe — parfait pour les déplacements quotidiens.\\\\n\\\\nCaractéristiques du logement :\\\\n\\\\n• Chauffé et éclairé\\\\n• Internet et câble inclus 📶📺\\\\n• Cuisinière et réfrigérateur inclus\\\\n• 1 stationnement inclus\\\\n• Buanderie commune (machines à paiement électronique bientôt disponibles)\\\\n\\\\nConditions du bail :\\\\n\\\\n❌ Chiens non acceptés, sans exception\\\\n📄 Bail minimum de 12 mois\\\\n✅ Enquête de crédit obligatoire\\\\n\\\\n📞 Pour plus d’informations ou pour planifier une visite, contactez Halfred : 819-593-3304\\\"}\",\"1845-rue-saint-louis\",\"1845 Rue Saint-Louis\",\"Rue Saint-Louis\",\"1845\",45.471691,-75.72622,[763],[763],\"1845 Saint Louis\",\"2026-09-30\",\"921\",\"650\",24,\"/storage/v1/object/public/halfred/buildings/70ffc37f-8fb3-4f54-adb1-2bc6e438fe9a/1855_Rue_Saint-Louis_6-01.jpg\",\"34795aef-8938-4001-82bd-fa052e32aa00\",\"ae03bae3-a9a3-4831-a3a9-0c7a3e3792db\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"All-Inclusive Apartment – McConnell Street | Comfort \u0026 Peaceful Living!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"move-in ready, all-inclusive apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" in a quiet and desirable area? This beautiful unit on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"McConnell Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" is perfect for a single person or a couple seeking \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, convenience, and a stress-free lifestyle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Heat \u0026 electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" – no extra worries\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📦 Storage shed for extra space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A peaceful and well-maintained environment, ideal for enjoying a simple and comfortable daily life close to services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement tout inclus – Rue McConnell | Confort \u0026 tranquillité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"clé en main\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dans un secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"paisible et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"? Ce superbe appartement situé sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue McConnell\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" est parfait pour une personne seule ou un couple souhaitant allier \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, simplicité et qualité de vie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chauffage et électricité inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" – aucun souci supplémentaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📦 Remise pratique pour du rangement supplémentaire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un environnement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"calme et agréable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", idéal pour profiter d’un quotidien sans tracas, à proximité des services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une opportunité à ne pas manquer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"191-chemin-mcconnell\",\"191 Chemin Mcconnell\",\"Chemin Mcconnell\",\"191\",45.410797,-75.832904,[776],[776],\"1860\",\"/storage/v1/object/public/halfred/buildings/34795aef-8938-4001-82bd-fa052e32aa00/chatgpt-image-9-juin-2026-161743.png\",\"ceac451a-df09-438c-abbc-6d2b03ed4ef0\",\"c4ecef4c-5a9f-4f64-a385-dc57bcd72048\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment for Rent – 34 Rochefort Street!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful spacious and modern apartment offering a comfortable and peaceful living environment, perfect for a family, couple, or professionals looking for convenience and comfort.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛠️ Outdoor storage shed included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning for optimal comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a quiet neighborhood while staying close to shops, restaurants, schools, and essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐾 No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📅 Available July 1st\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacieux appartement à louer – 34 rue Rochefort!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique appartement spacieux et moderne offrant un cadre de vie confortable et paisible, idéal pour une famille, un couple ou des professionnels recherchant un environnement pratique et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛠️ 1 remise pour rangement supplémentaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Grand espace lumineux et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier calme tout en étant à proximité des commerces, restaurants, écoles et services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐾 Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📅 Disponible le 1er juillet\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"34-rue-de-rochefort\",\"34 Rue De Rochefort\",\"Rue De Rochefort\",\"34\",45.486355,-75.716442,[790],[790],\"1995\",\"1070\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/ceac451a-df09-438c-abbc-6d2b03ed4ef0/0__ceac451a-df09-438c-abbc-6d2b03ed4ef0.webp?version=301c05dc-6345-41db-b039-2fcf85695aeb\",\"0f7da5ad-cfa9-46d0-9433-bb6f758a3323\",\"f3187129-b92c-4ec8-861c-950d9c13f139\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏙️✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment for Rent – Downtown Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏙️\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in the heart of downtown Hull, just steps away from government buildings and only minutes from downtown Ottawa! Perfect for young professionals looking to enjoy an urban lifestyle with restaurants, cafés, shops, and essential services nearby.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏢 Close to government offices\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌉 Minutes from downtown Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Surrounded by restaurants, cafés, and local businesses\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚶 Walking distance to many amenities\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What This Unit Offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Full bathroom\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍳 Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Parking available for rent (subject to availability)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love It:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy the convenience of living in a vibrant downtown neighborhood with everything you need just steps from your door.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed under any circumstances\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 for more information or to schedule a visit!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don't miss this opportunity to live in the heart of Hull!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏙️✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À LOUER – Au cœur du centre-ville de Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏙️\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe logement idéalement situé au centre-ville de Hull, à quelques pas des édifices gouvernementaux et à seulement quelques minutes du centre-ville d’Ottawa. Un emplacement parfait pour les professionnels, étudiants ou toute personne souhaitant profiter d’un mode de vie urbain dynamique.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏢 À proximité des édifices gouvernementaux\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌉 À quelques minutes d’Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Restaurants, cafés et commerces à distance de marche\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile au transport en commun\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚶 Tous les services essentiels à proximité\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Salle de bain complète\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍳 Cuisinière et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Possibilité de louer un stationnement (selon disponibilité)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement de choix qui vous permet de vivre, travailler et vous divertir sans avoir à parcourir de longues distances.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés sous aucune condition\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred au 819-593-3304 dès aujourd’hui pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une occasion à ne pas manquer au cœur de Hull!\\\\\\\"}]}]}\\\"}\",\"235-rue-papineau\",\"235 Rue Papineau\",\"Rue Papineau\",\"235\",45.429889,-75.71184,[803],[803],\"600 - 700\",\"/storage/v1/object/public/halfred/buildings/0f7da5ad-cfa9-46d0-9433-bb6f758a3323/chatgpt-image-12-juin-2026-104948.png\",\"60ca83de-3ad2-44d1-b3b3-7d2ba774bf7f\",\"d19293ec-79b8-4db7-a1aa-be874af2278d\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Modern Apartment for Rent \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in one of Aylmer’s most desirable areas? Discover this beautiful recently built unit located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"32 De la Fabrique Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of comfort, convenience, and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Recent construction with modern finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Private parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright, practical, and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after neighborhood close to shops, services, trails, and everyday essentials.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement moderne à louer \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement moderne dans un secteur recherché d’Aylmer? Découvrez ce superbe appartement récemment construit au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"32 rue de la Fabrique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Construction récente avec finition moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Stationnement privé inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie lumineux, pratique et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier paisible et recherché, à proximité des services, commerces, sentiers et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour un quotidien confortable et sans tracas!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"36-rue-de-la-fabrique\",\"36 Rue De La Fabrique\",\"36\",45.409972,-75.858618,[817],[817],\"1335\",\"1 - 3\",\"650 - 1250\",\"/storage/v1/object/public/halfred/buildings/60ca83de-3ad2-44d1-b3b3-7d2ba774bf7f/chatgpt-image-11-mai-2026-153814.png\",\"cc97da83-3eee-406a-8752-563e588a4631\",\"b531cef8-1233-46d1-9818-561045725feb\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful 2-Bedroom Apartment for Rent – Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 Just \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes from Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this beautiful apartment offers a peaceful living environment close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Gatineau Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", shops, restaurants, schools, and all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 spacious bedrooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Hardwood-style and ceramic flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁🚿 Separate bathtub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"☀️ Large private balcony\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included (option for a second parking space available)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a bright, modern, and comfortable apartment in a quiet neighborhood while being just minutes away from Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 Photos are for reference only and may vary from the available unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Superbe appartement 2 chambres à louer – Secteur recherché!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 À seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce magnifique appartement vous offre un cadre de vie paisible à proximité du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Parc de la Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", des commerces, restaurants, écoles et de tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 chambres spacieuses\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Planchers en bois flottant et céramique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁🚿 Bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"☀️ Grand balcon privé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus (possibilité d’un 2e stationnement)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement lumineux, moderne et confortable dans un secteur paisible, tout en étant à quelques minutes seulement d’Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 Photos à titre indicatif seulement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\"}]}]}\\\"}\",\"9-rue-du-glenbow\",\"9 Rue Du Glenbow\",\"Rue Du Glenbow\",\"9\",45.439139,-75.809929,[831],[831],\"1625\",\"1100\",\"/storage/v1/object/public/halfred/buildings/cc97da83-3eee-406a-8752-563e588a4631/chatgpt-image-5-juin-2026-162226.png\",\"fa001da8-92aa-41d1-8724-aac2310af599\",\"1ca48494-e05b-46a0-badd-ecd9e1b05dee\",\"{\\\"en\\\":\\\"This beautiful, recently built condo-style apartment is located on Katimavik Street, in a desirable area of the Plateau, directly across from Arcy McGee School. Enjoy the prime location just steps from the Pioneers' Trail (bike path), 10 minutes from the Marina and Aylmer’s main street, and only 10 minutes to Ottawa and downtown Hull.\\\\r\\\\n\\\\r\\\\nInclusions:\\\\r\\\\n\\\\r\\\\nDishwasher included\\\\r\\\\nAir exchanger\\\\r\\\\nAir conditioning\\\\r\\\\n1 parking space included\\\\r\\\\nSeparate bathtub and shower\\\\r\\\\nAdditional Information:\\\\r\\\\n\\\\r\\\\nCredit check required\\\\r\\\\nMinimum 1-year lease\\\\r\\\\n📞 Contact Halfred at 819-593-3304 for more information or to schedule a visit.\\\",\\\"fr\\\":\\\"Ce superbe appartement de style condo, de construction récente, est situé sur la rue Katimavik, dans un secteur recherché du Plateau, juste en face de l'école d'Arcy McGee. Profitez de l'emplacement idéal à deux pas du sentier des pionniers (piste cyclable), à 10 minutes de la Marina et de la rue principale d'Aylmer, et à seulement 10 minutes d'Ottawa et du centre-ville de Hull.\\\\r\\\\n\\\\r\\\\nInclusions :\\\\r\\\\n\\\\r\\\\nLave-vaisselle inclus\\\\r\\\\nÉchangeur d'air\\\\r\\\\nAir climatisé\\\\r\\\\n1 stationnement inclus\\\\r\\\\nBain douche séparé\\\\r\\\\nInformations supplémentaires :\\\\r\\\\n\\\\r\\\\nEnquête de crédit obligatoire\\\\r\\\\nBail minimum d'un an\\\\r\\\\n📞 Contactez Halfred au 819-593-3304 pour plus d’informations ou pour planifier une visite.\\\"}\",\"122-rue-katimavik\",\"122 Rue Katimavik\",\"122\",45.41934,-75.806326,[843],[843],\"2026-12-01\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/fa001da8-92aa-41d1-8724-aac2310af599/0__fa001da8-92aa-41d1-8724-aac2310af599.webp?version=d5fa1051-0f47-481e-a875-956352e54de2\",\"89ebc6a5-94ac-43df-9412-0557ff224d37\",\"504b6411-88d2-4775-b179-7e60f2712974\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"FOR RENT – 545 Pointe-Gatineau Street!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Comfort, convenience, and a great location!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this charming apartment located in a convenient and desirable area of Gatineau, close to all essential services and only minutes from Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌉 Just 10 minutes from Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to grocery stores, pharmacies, and shopping\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Near restaurants and everyday services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to public transportation\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What This Unit Offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 Heating included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 Electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍳 Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛗 Elevator in the building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Shared laundry facilities on site\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💳 Electronic payment for laundry coming soon\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love It:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a hassle-free lifestyle with several utilities included, all while living close to everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À LOUER – 545 rue Pointe-Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Confort, simplicité et emplacement idéal!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce charmant appartement situé dans un secteur pratique et recherché de Gatineau, à proximité de tous les services essentiels et à seulement quelques minutes d’Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement de choix :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌉 À seulement 10 minutes d’Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des épiceries, pharmacies et commerces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Restaurants et services à proximité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile au transport en commun\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 Chauffage inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 Électricité incluse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍳 Cuisinière et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛗 Ascenseur dans l’immeuble\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Buanderie commune sur place\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💳 Paiement électronique bientôt disponible pour la buanderie\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement pratique avec plusieurs inclusions qui vous permettront de simplifier votre quotidien tout en demeurant près de tout.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred au 819-593-3304 dès aujourd’hui pour planifier votre visite!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}}]}\\\"}\",\"545-rue-de-pointe-gatineau\",\"545 rue de Pointe Gatineau\",\"rue de Pointe Gatineau\",\"545\",45.467052,-75.704903,[859],[859],\"1103\",\"0 - 1\",\"600 - 650\",86,\"/storage/v1/object/public/halfred/buildings/89ebc6a5-94ac-43df-9412-0557ff224d37/545_Rue_de_Pointe-Gatineau_115-03.jpg\",\"ff657b33-e7e5-41e3-bb59-377a0e321bbf\",\"3d36bcb7-39ab-47e5-94df-df8882f3a6bd\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Modern Apartment for Rent – Amérique-Française Boulevard, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Amérique-Française Boulevard\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" in the highly desirable \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this beautiful and spacious apartment is just steps from essential services, parks, and a primary school. Modern, bright, and ideally located, this unit offers everything you need for comfortable living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Private balcony to enjoy sunny days\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌱 Air exchanger for improved air quality\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a vibrant and sought-after neighborhood close to schools, shops, restaurants, parks, and public transportation.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Grand appartement moderne à louer – Boulevard Amérique-Française, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé sur le \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"boulevard Amérique-Française\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", dans le secteur recherché du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce superbe grand appartement offre un emplacement idéal à quelques pas des services essentiels, plusieurs parcs et d’une école primaire. Moderne, spacieux et lumineux, ce logement est parfait pour ceux qui recherchent confort et qualité de vie.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Prises laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Balcon privé pour profiter de l’extérieur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌱 Échangeur d’air pour une meilleure qualité de l’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier dynamique et très recherché, à proximité des écoles, commerces, restaurants, parcs et transport en commun.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"43-boulevard-de-l-amerique-francaise\",\"43 Boulevard De L'amérique-Française \",\"Boulevard De L'amérique-Française \",\"43\",45.436447,-75.817272,[872],[872],\"1600\",\"/storage/v1/object/public/halfred/buildings/ff657b33-e7e5-41e3-bb59-377a0e321bbf/2583850f-fca0-44ea-849d-422f9ac17761.png\",\"6981e517-69e1-48d3-a3d2-8214b9ac3227\",\"7eac0018-cee9-4d78-a101-5b41c56d11c8\",\"{\\\"en\\\":\\\"Looking for accommodation in Buckingham in a quiet area?\\\\nLe 70 Latour is the building for you! \\\\nLocated very close to public transport, primary and secondary school as well as all services. This accommodation is perfect for quiet people or a young family.\\\\n\\\\nApartment Features:\\\\n\\\\n🚗 1 parking space included\\\\n🧺 Laundry facilities on-site\\\\n⚡ Not heated, not lit (utilities not included)\\\\nConditions:\\\\n\\\\n🐶 No dogs allowed\\\\n📅 Minimum 1-year lease\\\\n📋 Credit check required\\\\n📞 Contact Halfred at 819-593-3304 for more information or to schedule a visit!\\\",\\\"fr\\\":\\\"Vous cherchez un logement à Buckingham dans un secteur calme?\\\\nLe 70 Latour est le bâtiment pour vous! \\\\nSitué tout près des transports en communs, école primaire et secondaire ainsi que les tous les services. Ce logement est parfait pour des personnes calmes ou une jeune famille.\\\\n\\\\nCaractéristiques du logement :\\\\n\\\\n🚗 1 stationnement inclus\\\\n🧺 Buanderie dans l’immeuble\\\\n⚡ Non chauffé, non éclairé (charges non incluses)\\\\nConditions :\\\\n\\\\n🐶 Chiens non acceptés\\\\n📅 Bail minimum de 1 an\\\\n📋 Enquête de crédit obligatoire\\\\n📞 Contactez Halfred au 819-593-3304 pour plus d’infos ou planifier une visite !\\\\n\\\"}\",\"70-rue-latour\",\"70 Rue Latour\",\"Rue Latour\",\"70\",45.584942,-75.399393,[886],[886],\"70 Latour\",\"2026-11-01\",\"/storage/v1/object/public/halfred/buildings/6981e517-69e1-48d3-a3d2-8214b9ac3227/capture.PNG\",\"1b289572-c06a-4dc5-a038-0efc1f2ed2f5\",\"f1eb3c89-5f07-4b45-9bee-d8c5e55bec35\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment for Rent – 19 Matapédia Street | Comfort \u0026 Convenience!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this well-located apartment at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"19 Matapédia Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", situated in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and convenient neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfortable and practical living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional and comfortable living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Peaceful and well-maintained environment\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A location you’ll appreciate:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"essential services, shops, restaurants, and public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", making everyday life simple and convenient.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"The perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, tranquility, and accessibility\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement à louer – 19 rue de Matapédia | Confort \u0026 tranquillité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce logement idéalement situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"19 rue de Matapédia\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", dans un secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"paisible et pratique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour ceux qui recherchent un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confortable et bien localisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie fonctionnel et agréable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Environnement calme et bien entretenu\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement avantageux :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services essentiels, commerces, restaurants et transports\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", pour un quotidien simple et pratique.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un logement offrant le parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité, accessibilité et confort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"19-rue-de-matapedia\",\"19 Rue De Matapédia\",\"Rue De Matapédia\",\"19\",45.482559,-75.704669,[900],[900],\"1300\",\"900\",\"/storage/v1/object/public/halfred/buildings/1b289572-c06a-4dc5-a038-0efc1f2ed2f5/chatgpt-image-may-6-2026-at-091033-am.png\",\"389afe55-631b-45fe-a1d7-8e3c19c47111\",\"dd2e94f8-da00-47e9-87f0-184f0370101b\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in a Perfectly Located Apartment in Gatineau!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Ideally situated right across from Centre d’achat Riviera, offering a grocery store, restaurants, pharmacy, hair salons, dentist, and optometry clinic — everything you need just steps away. Only about 15 minutes from Ottawa and a 2-minute walk from the La Gappe Rapibus station, this location is perfect for a convenient and comfortable lifestyle.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Apartment Features:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Stove and refrigerator included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 parking spot included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Shared laundry facilities on-site\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Conditions:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No dogs allowed — no exceptions\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📄 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 For more information or to schedule a visit, contact Halfred at 819-593-3304\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vivez dans un logement idéalement situé à Gatineau, juste en face du Centre d’achat Riviera avec épicerie, restaurants, pharmacie, salons de coiffure, dentiste et clinique d’optométrie. À seulement ±15 minutes d’Ottawa et à 2 minutes à pied du station Rapibus La Gappe, cet emplacement est parfait pour un quotidien pratique et confortable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques du logement :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"•\\\\\\\\tCuisinière et réfrigérateur\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"•\\\\\\\\t1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"•\\\\\\\\tBuanderie commune \\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Chiens non acceptés, sans exception\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📄 Bail minimum 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Pour plus d’informations ou pour planifier une visite, contactez Halfred : 819-593-3304\\\\\\\"}]}]}\\\"}\",\"31-rue-des-flandres\",\"31 rue des Flandres\",\"rue des Flandres\",\"31\",45.471128,-75.720385,[913],[913],\"1182\",\"/storage/v1/object/public/halfred/buildings/389afe55-631b-45fe-a1d7-8e3c19c47111/29-rue-des-flandres-01.jpg\",\"7914359c-2606-46af-82da-110907c1e98b\",\"f5d12e1a-36d5-4312-90ce-8c405291070f\",\"{\\\"en\\\":\\\"Bright and comfortable apartments available in a quiet and well-maintained building in Gatineau.\\\\n\\\\nInternet included\\\\n\\\\nNon-smoking\\\\n\\\\nNo pets allowed\\\\n\\\\nThese units offer a practical and comfortable living space, ideal for students, professionals, or couples looking for a clean and peaceful environment.\\\\n\\\\nConveniently located close to essential services, public transportation, and just minutes from downtown, this location combines comfort and accessibility.\\\\n\\\\nHalfred \\\\n819-593-3304\\\",\\\"fr\\\":\\\"Beaux logements disponibles dans un immeuble tranquille et bien situé à Gatineau.\\\\n\\\\nInternet inclus\\\\n\\\\nNon-fumeur\\\\n\\\\nAucun animal permis\\\\n\\\\nLes appartements offrent un espace confortable et fonctionnel, idéal pour étudiants, travailleurs ou couples recherchant un environnement calme et propre.\\\\n\\\\nSitué près des services essentiels, du transport en commun et à quelques minutes du centre-ville, cet emplacement est parfait pour combiner confort et commodité.\\\\n\\\\nHalfred \\\\n819-593-3304\\\"}\",\"14-rue-roy\",\"14 Rue Roy\",\"Rue Roy\",\"14\",45.448672,-75.735629,[927],[927],\"1675\",8,\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/7914359c-2606-46af-82da-110907c1e98b/0__7914359c-2606-46af-82da-110907c1e98b.webp?version=e49bae62-f081-488c-8ecc-b438e634d8fd\",\"0d8681e9-d0d1-4e86-8c58-c1b86a22cc11\",\"c2499732-cfd6-47ed-9f03-8a858ed9a0b7\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"All-Inclusive Apartment for Rent – 193 McConnell | Comfort \u0026 Convenience!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"move-in ready apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and desirable neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"? This beautiful unit at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"193 McConnell\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" is perfect for a single person or a couple seeking a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfortable, stress-free lifestyle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 Heat \u0026 electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📦 Storage shed for extra space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment while staying close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"shops, services, and everyday essentials\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Designed for easy and comfortable living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 1-year lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐶 No dogs allowed\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement tout inclus à louer – 193 McConnell | Confort \u0026 tranquillité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"clé en main\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dans un secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"paisible et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"? Ce superbe appartement situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"193 rue McConnell\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" est parfait pour ceux qui souhaitent profiter d’un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confortable, pratique et sans tracas\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 Chauffage et électricité inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal toute l’année\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📦 Remise pratique pour rangement supplémentaire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un environnement calme et agréable, tout en étant à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services essentiels, commerces et transports\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement pensé pour simplifier votre quotidien!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"195-mcconnell-road\",\"195 McConnell Road\",\"McConnell Road\",\"195\",45.410819,-75.832434,[941],[941],\"195 Chemin McConnell\",\"1380\",\"/storage/v1/object/public/halfred/buildings/0d8681e9-d0d1-4e86-8c58-c1b86a22cc11/chatgpt-image-22-mai-2026-121048.png\",\"a3ed2e8c-3635-4b79-b86a-9cc6fff6bfa8\",\"e3276aba-1eba-437b-8697-9abad403bdc8\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this charming 2-bedroom apartment located in a peaceful and convenient neighborhood, close to Labrosse Boulevard and Vérendrye East Boulevard. Perfect for a couple, small family, or professionals looking for comfort and accessibility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to grocery stores and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Near primary schools\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⛽ Gas stations just minutes away\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Steps from beautiful Lac-Beauchamp Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to major roads and public transportation\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 outdoor parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📦 1 storage space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Comfortable and functional living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright apartment in a welcoming neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a quiet area while staying close to everything you need for everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Charmant logement 2 chambres à louer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce sympathique appartement de 2 chambres situé dans un secteur paisible et pratique, tout près du boulevard Labrosse et du boulevard de la Vérendrye Est. Parfait pour un couple, une petite famille ou des professionnels recherchant confort et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À proximité des épiceries et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Près des écoles primaires\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⛽ Stations-service à quelques minutes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Tout près du magnifique parc du Lac-Beauchamp\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile aux grands axes routiers et au transport en commun\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement extérieur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📦 1 espace de rangement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Espace confortable et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Appartement lumineux dans un quartier agréable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un secteur tranquille tout en étant près de tout ce dont vous avez besoin au quotidien.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"220-rue-de-malartic\",\"220 Rue De Malartic\",\"Rue De Malartic\",\"220\",45.502467,-75.638421,[954],[954],\"1470\",\"/storage/v1/object/public/halfred/buildings/a3ed2e8c-3635-4b79-b86a-9cc6fff6bfa8/chatgpt-image-22-mai-2026-141642.png\",\"5b58e3a4-6629-4700-bb91-2deae5053af0\",\"4b9b9618-14e2-48b8-b700-2fb1e148a2d5\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Comfortable Apartment for Rent!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Looking for a practical and well-located apartment? Discover this charming unit, perfect for a single person or a couple, located close to shops, public transportation, and only minutes from downtown Hull and Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Functional kitchen with plenty of storage\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and comfortable living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a welcoming apartment in a convenient and accessible area close to all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ À la recherche d’un logement pratique et bien situé? Découvrez ce charmant appartement idéal pour une personne seule ou un couple, situé à proximité des commerces, transports en commun et à quelques minutes du centre-ville de Hull et d’Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Cuisine fonctionnelle avec beaucoup de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace lumineux et confortable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement accueillant dans un secteur pratique et accessible, près de tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"74-boulevard-saint-raymond\",\"74 Boulevard Saint-Raymond\",\"Boulevard Saint-Raymond\",\"74\",45.447287,-75.740336,[968],[968],\"1450\",\"1150\",\"/storage/v1/object/public/halfred/buildings/5b58e3a4-6629-4700-bb91-2deae5053af0/5439a31a-ae56-4bdd-bccd-e0e5e6c197e6.png\",\"c228126d-942b-46b4-9621-df0e7ec2e9bc\",\"ae63c5ee-c03e-4a04-a6ab-187d6d766df7\",\"{\\\"en\\\":\\\"Located in the charming Aylmer area, this modern apartment offers a comfortable and convenient living environment. The 16-unit building is ideally situated in front of a bus stop and close to various services such as grocery stores, restaurants, banks, and pharmacies.\\\\n\\\\nApartment Features:\\\\n\\\\n🌬️ Air exchanger\\\\n❄️ Air conditioning\\\\n🚗 1 parking space included\\\\n🏡 Storage shed\\\\nConditions:\\\\n\\\\n🚭 Non-smoking unit\\\\n🐶 No dogs allowed\\\\n⚡ Not heated or lit (utilities at tenant's expense)\\\\n📋 Credit check required\\\\n📆 Minimum one-year lease\\\\nOption to rent with appliances available.\\\\n\\\\nFor more information or to schedule a visit, contact Halfred at 819-593-3304.\\\\n\\\",\\\"fr\\\":\\\"Situé dans le charmant secteur d'Aylmer, cet appartement moderne offre un cadre de vie confortable et pratique. L'immeuble de 16 unités est idéalement placé devant un arrêt de bus et à proximité de nombreux services tels que des épiceries, restaurants, banques et pharmacies.\\\\n\\\\nCaractéristiques du logement :\\\\n\\\\n🌬️ Échangeur d'air\\\\n❄️ Air climatisé\\\\n🚗 1 stationnement inclus\\\\n🏡 Cabanon\\\\nConditions :\\\\n\\\\n🚭 Logement non-fumeurs\\\\n🐶 Chiens non acceptés\\\\n⚡ Non chauffé, non éclairé (charges à la charge du locataire)\\\\n📋 Enquête de crédit obligatoire\\\\n📆 Bail minimum d'un an\\\\nPossibilité de location avec électroménagers.\\\\n\\\\nPour plus d'informations ou pour planifier une visite, contactez Halfred au 819-593-3304.\\\\n\\\"}\",\"130-rue-du-maquis\",\"130 Rue Du Maquis\",\"Rue Du Maquis\",45.41145,-75.836667,[981],[981],\"1775\",\"1298\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/c228126d-942b-46b4-9621-df0e7ec2e9bc/24b9a430-5293-8274-b936-e24e505a6bb9?version=ee8b0802-91d9-4548-9da5-adaab1d0aa1b\",\"38b42c3c-f240-4f74-b45e-05c18c6441d5\",\"06033978-82cc-4338-8b67-c668a833c512\",\"104-rue-katimavik\",\"104 Rue Katimavik\",\"104\",45.420113,-75.806502,[992],[992],\"1305\",\"/storage/v1/object/public/halfred/buildings/38b42c3c-f240-4f74-b45e-05c18c6441d5/chatgpt-image-12-mai-2026-115205.png\",\"e679b965-dff7-4831-ad1a-61dc86152395\",\"6f97252c-f9d1-4228-8da3-d3caeab8dad1\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Enjoy modern living in this beautiful condo-style apartment located in a recent building in the highly sought-after Plateau neighborhood. Conveniently situated directly across from D'Arcy McGee School and close to all essential amenities.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Steps from the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Sentier des Pionniers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" bike path 🚴\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Just 10 minutes from the Aylmer Marina and Main Street 🌊\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Only 10 minutes from downtown Ottawa and downtown Hull\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Dishwasher included 🍽️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air conditioning ❄️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air exchanger 🌬️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ 1 outdoor parking space included 🚗\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Second parking space available (subject to availability)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental Conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Heat and electricity not included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today to schedule a viewing!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Availability is limited. Contact us today to book your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Découvrez ce magnifique appartement de style condo, situé dans une construction récente au cœur du secteur recherché du Plateau. Profitez d'un emplacement idéal, en face de l'école d'Arcy McGee et à proximité de tous les services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement de choix :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À deux pas du Sentier des Pionniers (piste cyclable) 🚴\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À 10 minutes de la marina et de la rue Principale d'Aylmer 🌊\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À seulement 10 minutes d'Ottawa et du centre-ville de Hull\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Lave-vaisselle inclus 🍽️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air climatisé ❄️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Échangeur d'air 🌬️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ 1 stationnement inclus 🚗\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Possibilité d'un 2ᵉ stationnement (selon disponibilité)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred dès aujourd'hui pour planifier une visite !\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les disponibilités sont limitées. Contactez-nous rapidement pour réserver votre visite !\\\\\\\"}]}]}\\\"}\",\"124-rue-katimavik\",\"124 Rue Katimavik\",\"124\",45.419277,-75.806259,[1004],[1004],\"1685\",\"/storage/v1/object/public/halfred/buildings/e679b965-dff7-4831-ad1a-61dc86152395/chatgpt-image-4-mars-2026-160532.png\",\"56e79a73-5a86-4dda-86b6-0ee66508e5c3\",\"45dbc34e-45a3-4137-bed5-f3d82cb40864\",\"{\\\"en\\\":\\\"Live in a bright and convenient apartment ideally located in Gatineau, right across from the Riviera Shopping Center! Enjoy easy access to grocery stores, restaurants, pharmacies, hair salons, dentist, and optometry clinic. Just ±15 minutes from Ottawa and a 2-minute walk to Rapibus La Gappe station, perfect for daily commuting.\\\\nApartment Features:\\\\n•\\\\tUtilities included (heated and lit)\\\\n•\\\\tStove and refrigerator included\\\\n•\\\\t1 parking spot included\\\\n•\\\\tShared laundry (electronic payment machines coming soon)\\\\nLease Details:\\\\n❌ No dogs allowed, no exceptions\\\\n📄 Minimum 12-month lease\\\\n✅ Credit check required\\\\n📞 For more information or to schedule a visit, contact Halfred: 819-593-3304\\\\n\\\",\\\"fr\\\":\\\"\\\\nVivez dans un logement lumineux et pratique, idéalement situé à Gatineau, juste en face du Centre d’achat Riviera ! Profitez d’un accès facile à épiceries, restaurants, pharmacies, salons de coiffure, dentiste et clinique d’optométrie. À seulement ±15 minutes d’Ottawa et à 2 minutes à pied du station Rapibus La Gappe, cet emplacement est parfait pour vos déplacements quotidiens.\\\\nCaractéristiques du logement :\\\\n•\\\\tChauffé et éclairé\\\\n•\\\\tCuisinière et réfrigérateur inclus\\\\n•\\\\t1 stationnement inclus\\\\n•\\\\tBuanderie commune (machines à paiement électronique bientôt disponibles)\\\\nConditions :\\\\n❌ Chiens non acceptés, sans exception\\\\n📄 Bail minimum 12 mois\\\\n✅ Enquête de crédit obligatoire\\\\n📞 Pour plus d’informations ou pour planifier une visite, contactez Halfred : 819-593-3304\\\"}\",\"1875-rue-saint-louis\",\"1875 Rue Saint-Louis\",\"1875\",45.472853,-75.726608,[1017],[1017],\"1875 rue Saint Louis\",\"1460\",\"/storage/v1/object/public/halfred/buildings/56e79a73-5a86-4dda-86b6-0ee66508e5c3/1875_Rue_Saint-Louis-1.jpg\",\"680c18df-4c10-4e52-9f29-dcdb3b8d8253\",\"b9545cbf-e281-41bf-9cb4-5b2a2643537f\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Condo-Style Apartment for Rent – Comfort \u0026 Peaceful Living!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning condo-style apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and desirable residential neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". The perfect blend of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modern living, comfort, and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger for improved air quality\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Private balcony to enjoy sunny days\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Additional option:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔑 Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment while staying close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"all everyday services and conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement de style condo à louer – Confort \u0026 tranquillité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement de style condo situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier résidentiel calme et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, restaurants, banques, pharmacies et de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Le parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modernité, confort et qualité de vie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air pour une meilleure qualité de l’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal toute l’année\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Balcon privé pour profiter des belles journées\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie moderne et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Option supplémentaire :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔑 Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible tout en restant à proximité de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tous les services et commodités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement parfait pour un quotidien confortable et sans compromis!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"255-rue-de-la-fregate\",\"255 rue de la Frégate\",\"rue de la Frégate\",\"255\",45.499756,-75.592276,[1030],[1030],\"1598\",\"/storage/v1/object/public/halfred/buildings/680c18df-4c10-4e52-9f29-dcdb3b8d8253/0001-0001.jpg\",\"a7ff6d4e-c3cc-4862-bfa1-0a98d4db0942\",\"0dd53442-ad88-48dc-82d3-ee7103317475\",\"{\\\"en\\\":\\\"Live in a modern, peaceful building in a great location in Pointe-Gatineau, offering unmatched comfort and convenient features.\\\\n\\\\n✨ Unit Features:\\\\n\\\\n2 spacious bedrooms 🛏️\\\\n\\\\n\\\\n5 appliances included: stove, fridge, dishwasher, washer, dryer\\\\n\\\\nWall-mounted air conditioning ❄️\\\\n\\\\nInternet included\\\\n\\\\n1 parking spot with EV charging station 🔌\\\\n\\\\nOutdoor storage shed 🛠️\\\\n\\\\n📌 Additional Info:\\\\n\\\\nNot heated / not lit\\\\n\\\\nNon-smoking units\\\\n\\\\nNo pets allowed\\\\n\\\\nNo elevator\\\\n\\\\nCredit check required\\\\n\\\\nMinimum 12-month lease\\\\n\\\\n📞 For more info or to book a visit, contact Halfred at 819-593-3304.\\\",\\\"fr\\\":\\\"Situé dans un immeuble moderne et paisible, cet emplacement de choix à Pointe-Gatineau vous offre un confort inégalé avec des inclusions essentielles et une qualité de vie optimale.\\\\n\\\\n✨ Caractéristiques des logements :\\\\n\\\\n2 chambres spacieuses 🛏️\\\\n\\\\n5 électroménagers inclus : cuisinière, réfrigérateur, lave-vaisselle, laveuse, sécheuse\\\\n\\\\nAir climatisé mural ❄️\\\\n\\\\nInternet inclus\\\\n\\\\n1 stationnement inclus avec borne de recharge électrique 🔌\\\\n\\\\nRemise extérieure pour rangement 🛠️\\\\n\\\\n📌 Conditions :\\\\n\\\\nNon chauffé / non éclairé\\\\n\\\\nLogement non-fumeur\\\\n\\\\nAnimaux non acceptés\\\\n\\\\nPas d’ascenseur\\\\n\\\\nEnquête de crédit obligatoire\\\\n\\\\nBail minimum de 12 mois\\\\n\\\\n📞 Pour plus d’informations ou pour planifier une visite, contactez Halfred au 819-593-3304.\\\"}\",\"555-rue-de-pointe-gatineau\",\"555 Rue De Pointe-Gatineau\",\"Rue De Pointe-Gatineau\",\"555\",45.467047,-75.705285,[1045],[1045],\"1928\",\"900 - 1000\",21,\"/storage/v1/object/public/halfred/buildings/a7ff6d4e-c3cc-4862-bfa1-0a98d4db0942/14612434_1.jpg\",\"78d22ce4-df51-43ac-b96b-4179a049217e\",\"4e69c199-db5c-4c9b-bd72-4b1d0089ff7d\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏙️✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment for Rent – In the Heart of Downtown Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏙️\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy an exceptional location in one of Gatineau’s most sought-after neighborhoods! Just minutes from Ottawa, this apartment is perfect for students, young professionals, or anyone looking to enjoy a convenient urban lifestyle.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌉 Only minutes from Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to grocery stores, pharmacies, and shopping\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Restaurants, cafés, and local shops within walking distance\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚴 Near bike paths and green spaces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🎓 Ideal for students and professionals\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love It:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Located in a vibrant and desirable area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Everything you need is just steps away\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💼 Perfect for an active and convenient lifestyle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 Great value in a central location\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚫 No parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated and not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 for more information or to schedule a visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏙️✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement à louer – Au cœur du centre-ville de Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏙️\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement exceptionnel dans l’un des secteurs les plus recherchés de Gatineau! Situé à quelques minutes seulement d’Ottawa, ce logement est parfait pour les étudiants, jeunes professionnels ou toute personne désirant profiter d’un mode de vie urbain et pratique.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement de choix :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌉 À quelques minutes d’Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès rapide au transport en commun\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À proximité des commerces, épiceries et pharmacies\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Restaurants, cafés et boutiques à quelques pas\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚴 Près des pistes cyclables et espaces verts\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🎓 Idéal pour étudiants et travailleurs\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Secteur dynamique et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Tout est accessible à pied ou en quelques minutes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💼 Parfait pour un mode de vie actif et pratique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 Logement offrant un excellent rapport qualité-prix\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚫 Aucun stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred au 819-593-3304 dès aujourd’hui pour obtenir plus d’informations ou planifier votre visite!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Vivez au cœur de l’action tout en profitant du confort de votre nouveau chez-vous!\\\\\\\"}]}]}\\\"}\",\"146-rue-champlain\",\"146 Rue Champlain\",\"Rue Champlain\",\"146\",45.429967,-75.711929,[1059],[1059],\"980\",\"500\",\"/storage/v1/object/public/halfred/buildings/78d22ce4-df51-43ac-b96b-4179a049217e/chatgpt-image-12-juin-2026-090845.png\",\"1dbd0c7f-a43a-4f63-b3d9-9885f0afc7fd\",\"467ba6b1-cc6e-4b20-97ab-a0da69d57d3a\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Charming 1-Bedroom Apartment for Rent – Jacinthe Street, Saint-Jérôme!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful 1-bedroom apartment, perfect for a single person or a couple looking for a comfortable, peaceful, and well-located home.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ Comfortable closed bedroom\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and welcoming living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Functional kitchen with plenty of storage\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 Light fixtures included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchange system for added comfort\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Included:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Access to the outdoor yard to enjoy sunny days\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 Quiet and safe neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to grocery stores, pharmacies, and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to public transportation and major roads\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Near parks and green spaces\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a comfortable apartment with several inclusions that make everyday living easier, all in a peaceful and convenient environment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Charmant appartement 1 chambre à louer – Rue Jacinthe, Saint-Jérôme!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique appartement 1 chambre, parfait pour une personne seule ou un couple à la recherche d’un espace confortable, paisible et bien situé.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 1 chambre fermée confortable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace de vie lumineux et accueillant\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Cuisine fonctionnelle avec beaucoup de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 Luminaires inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Système d’échange d’air pour un meilleur confort\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Accès au terrain extérieur pour profiter des belles journées\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 Quartier calme et sécuritaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des épiceries, pharmacies et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile aux transports en commun et aux routes principales\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 À proximité des parcs et espaces verts\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement confortable avec plusieurs inclusions qui simplifient votre quotidien, dans un environnement paisible et pratique.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"988-rue-jacinthe\",\"988 Rue Jacinthe\",\"Rue Jacinthe\",\"988\",45.785085,-74.043628,[1072],[1072],\"2026-09-15\",\"/storage/v1/object/public/halfred/buildings/1dbd0c7f-a43a-4f63-b3d9-9885f0afc7fd/chatgpt-image-14-mai-2026-121846.png\",\"ca813baa-2b30-4e2c-be21-1a6ffacd20bf\",\"2b199555-8ffb-4292-a56a-919d06d4dc4a\",\"189-chemin-mcconnell\",\"189 Chemin Mcconnell\",\"189\",45.410876,-75.832689,[1082],[1082],\"/storage/v1/object/public/halfred/buildings/ca813baa-2b30-4e2c-be21-1a6ffacd20bf/chatgpt-image-9-juin-2026-161743.png\",\"5a12418a-557a-4cc4-bd0e-7691895d2734\",\"16655e4a-c6bf-4996-9708-a6f03dd009c5\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in one of Aylmer’s most desirable areas? Discover this beautiful recently built unit located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"44 De la Fabrique Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of comfort, convenience, and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Recent construction with modern finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Private parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright, practical, and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after neighborhood close to shops, services, trails, and everyday essentials.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement moderne dans un secteur recherché d’Aylmer? Découvrez ce superbe appartement récemment construit au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"44 rue de la Fabrique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Construction récente avec finition moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Stationnement privé inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie lumineux, pratique et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier paisible et recherché, à proximité des services, commerces, sentiers et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour un quotidien confortable et sans tracas!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"44-rue-de-la-fabrique\",\"44 Rue De La Fabrique\",\"44\",45.41035,-75.858664,[1095],[1095],\"44 Fabrique\",\"1801\",\"/storage/v1/object/public/halfred/buildings/5a12418a-557a-4cc4-bd0e-7691895d2734/chatgpt-image-5-juin-2026-153827.png\",\"960af3bf-a117-4c02-8ed1-04565243d331\",\"cf95d313-b28a-494f-832f-7f2de9149a96\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Modern Condo-Style Apartment for Rent in Aylmer\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy the comfort of modern condo living in one of Aylmer’s most desirable neighborhoods! Located at the corner of Britannia and McConnell Streets, this beautiful apartment offers a peaceful setting while remaining close to all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Just minutes from grocery stores, restaurants, pharmacies, banks, schools, parks, and bike paths, this location is perfect for those seeking a convenient and comfortable lifestyle.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment Features:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Spacious and bright living area\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Private balcony to enjoy the outdoors\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Air conditioning for year-round comfort\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Air exchanger\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Modern finishes and quality construction\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Appliances available for rent\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a newer and highly sought-after area of Aylmer\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Close to shopping, restaurants, and essential services\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Quick access to Ottawa and downtown Hull\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Quiet and welcoming neighborhood\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Non-smoking unit\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"No dogs allowed\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Not heated and not electricity included\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Credit check required\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Minimum 12-month lease\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"This apartment offers the perfect balance of comfort, convenience, and modern living. An opportunity you won’t want to miss!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\" Magnifique condo moderne à louer à Aylmer\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Offrez-vous le confort d’un condo moderne dans l’un des secteurs les plus recherchés d’Aylmer! Situé à l’intersection des rues Britannia et McConnell, ce superbe logement vous permet de profiter d’un environnement paisible tout en étant à proximité de tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À quelques minutes seulement des épiceries, restaurants, pharmacies, banques, écoles, parcs et pistes cyclables, cette adresse est idéale pour ceux qui recherchent un mode de vie pratique et confortable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques du logement :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Grand espace de vie lumineux et moderne\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Balcon privé pour profiter de l’extérieur\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Air climatisé pour un confort optimal toute l’année\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Échangeur d’air\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Finitions modernes et de qualité\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Possibilité de location avec électroménagers\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement de choix\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Secteur récent et recherché d’Aylmer\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Près de tous les commerces et services essentiels\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Accès rapide à Ottawa et au centre-ville de Hull\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Quartier calme et agréable\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Logement non-fumeur\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Chiens non acceptés\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Non chauffé et non éclairé\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enquête de crédit obligatoire\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Bail minimum de 12 mois\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Ce logement offre un excellent équilibre entre confort, tranquillité et accessibilité. Une opportunité à ne pas manquer!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred au 819-593-3304 dès aujourd’hui pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"127-rue-de-britannia\",\"127 Rue De Britannia\",\"Rue De Britannia\",\"127\",45.411816,-75.825735,[1110],[1110],\"1750\",\"2 - 3\",\"1250 - 1260\",\"/storage/v1/object/public/halfred/buildings/960af3bf-a117-4c02-8ed1-04565243d331/chatgpt-image-10-juin-2026-113228.png\",\"6900c1b8-c06a-4a76-80eb-92b210e159ae\",\"9a94ea23-541a-4390-8ff5-137db06bd843\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment for Rent – 6 Curé-André-Laroque!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this spacious and comfortable apartment, perfect for a family, couple, or professionals looking for a well-located and welcoming home.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐱 Cats allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Large, bright, and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Included:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Heating included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Hot water included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Electricity and outlets not included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a quiet and convenient environment close to shops, services, and everyday essentials.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit and background check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement spacieux à louer – 6 Curé-André-Laroque!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce grand appartement confortable et bien situé, parfait pour une famille, un couple ou des professionnels à la recherche d’un logement pratique et agréable à vivre.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐱 Chats acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Espace de vie spacieux et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Chauffage inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Eau chaude incluse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Éclairage et prises électriques non inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement confortable situé dans un secteur pratique, à proximité des services et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit et d’antécédents obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Pour plus d’informations ou pour planifier une visite, contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"☎️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]}]}\\\"}\",\"6-rue-du-cure-armand-larocque\",\"6 Rue Du Curé-Armand-Larocque\",\"Rue Du Curé-Armand-Larocque\",45.436255,-75.734294,[1122],[1122],\"6 Curé-Armand-Larocque\",\"/storage/v1/object/public/halfred/buildings/6900c1b8-c06a-4a76-80eb-92b210e159ae/chatgpt-image-12-mai-2026-150158.png\",\"5e2e4d03-5517-4eae-9f1b-c2c0c0568239\",\"4ad37eb9-fae7-4078-b7a4-5942d9a64d3c\",\"{\\\"en\\\":\\\"Live in a modern, fully renovated apartment, ideally located in Gatineau, right across from the Riviera Shopping Center with grocery stores, restaurants, pharmacy, hair salons, dentist, and optometry clinic. Just ±15 minutes from Ottawa and a 2-minute walk to Rapibus La Gappe, this location is perfect for convenient and comfortable daily living.\\\\nApartment Features:\\\\n•\\\\t4 ½ available now\\\\n•\\\\tBuilding and units fully renovated in 2019\\\\n•\\\\tHeating and electricity included\\\\n•\\\\tStainless steel stove and refrigerator provided\\\\n•\\\\tWall-mounted air conditioning\\\\n•\\\\t1 parking spot included\\\\n•\\\\tShared laundry with electronic payment\\\\nLease Details:\\\\n❌ No dogs allowed, no exceptions\\\\n📄 Minimum 12-month lease\\\\n✅ Credit check required\\\\n📞 For more information or to schedule a visit, contact Halfred: 819-593-3304\\\\n\\\",\\\"fr\\\":\\\"Vivez dans un logement moderne et entièrement rénové, idéalement situé à Gatineau, juste en face du Centre d’achat Riviera avec épicerie, restaurants, pharmacie, salons de coiffure, dentiste et clinique d’optométrie. À seulement ±15 minutes d’Ottawa et à 2 minutes à pied du station Rapibus La Gappe, cet emplacement est parfait pour un quotidien pratique et confortable.\\\\nCaractéristiques du logement :\\\\n•\\\\t4 ½ disponible dès maintenant\\\\n•\\\\tImmeuble et appartements entièrement rénovés en 2019\\\\n•\\\\tChauffé et éclairé\\\\n•\\\\tCuisinière et réfrigérateur en acier inoxydable fournis\\\\n•\\\\tAir climatisé mural\\\\n•\\\\t1 stationnement inclus\\\\n•\\\\tBuanderie commune avec machines à paiement électronique\\\\nConditions :\\\\n❌ Chiens non acceptés, sans exception\\\\n📄 Bail minimum 12 mois\\\\n✅ Enquête de crédit obligatoire\\\\n📞 Pour plus d’informations ou pour planifier une visite, contactez Halfred : 819-593-3304\\\\n\\\"}\",\"27-rue-des-flandres\",\"27 Rue Des Flandres\",\"27\",45.470441,-75.719486,[1136],[1136],\"27 rue des Flandres\",\"1 - 2\",\"650 - 750\",\"/storage/v1/object/public/halfred/buildings/5e2e4d03-5517-4eae-9f1b-c2c0c0568239/27_Rue_des_Flandres-1.jpg\",\"957dfbb3-0f76-498d-9feb-145f08835ed0\",\"7f8de953-1005-4e86-8680-ecd218079c1c\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Condo-Style Apartment – Prime Plateau Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning condo-style apartment located in one of the most desirable areas of the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau in Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", just steps from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"shops, restaurants, essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", and very close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Gatineau Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Enjoy an exceptional location only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes from Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Separate bathtub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern and functional living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included (option for a second $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Additional option:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A vibrant and highly sought-after neighborhood offering the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature, urban living, and tranquility\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect home to enjoy the best of the Plateau lifestyle!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are from a model unit and may vary from the available apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Superbe appartement de style condo – Secteur recherché du Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique appartement de style condo situé dans l’un des secteurs les plus prisés du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau à Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à quelques pas des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"commerces, restaurants, services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et tout près du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"parc de la Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Profitez d’un emplacement exceptionnel à seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie moderne et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus (possibilité d’un 2e $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Option supplémentaire :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un secteur dynamique et recherché offrant un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature, vie urbaine et tranquillité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour profiter du meilleur du Plateau!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos sont celles du logement modèle et peuvent différer de l’unité disponible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"272-boulevard-d-amsterdam\",\"272 Boulevard D'amsterdam\",\"272\",45.428079,-75.814865,[1148],[1148],\"1263\",\"/storage/v1/object/public/halfred/buildings/957dfbb3-0f76-498d-9feb-145f08835ed0/chatgpt-image-11-mai-2026-125342.png\",\"2aea5f59-eaf7-43af-8c8c-fb4feb559131\",\"214c53ab-0ff7-4d89-8756-a06539061362\",\"{\\\"en\\\":\\\"Beautifully apartment in Hull, located close to public transport and very near Ottawa. It's ideal for students or young professionals.\\\\n\\\\nThis apartment includes:\\\\n\\\\nNot heated / not lit\\\\nNo pets allowed\\\\nCredit check required\\\\n\\\\nFor more information or to schedule a viewing, please contact Halfred at 819-593-3304.\\\\n\\\\n\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Bienvenue dans ce magnifique logement à Hull, à proximité des transports en commun et très proche d'Ottawa. Idéal pour les étudiants ou les jeunes professionnels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Non chauffé / non éclairé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Animaux non acceptés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Pour plus d'informations ou pour planifier une visite, veuillez contacter Halfred au 819-593-3304.\\\\\\\"}]}]}\\\"}\",\"149-rue-saint-redempteur\",\"149 Rue Saint-Rédempteur\",\"Rue Saint-Rédempteur\",\"149\",45.430207,-75.722025,[1161],[1161],\"0\",\"/storage/v1/object/public/halfred/buildings/2aea5f59-eaf7-43af-8c8c-fb4feb559131/1-3.jpg\",\"8d0311ab-3d42-4109-9820-2d441a0eb4d9\",\"bbb5f9e5-4ae3-4646-b824-e57e5de197fe\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent – Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for more space and comfort? Discover this beautiful \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\" apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" located in a quiet residential area of Gatineau. Perfect for families, couples, or professionals looking for a spacious and comfortable place to call home.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What This Unit Offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 Cozy fireplace in the living room\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Washer and dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and comfortable layout\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love It:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy the space and comfort of a home while living in a peaceful neighborhood close to everyday conveniences.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Great Location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to shopping and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Near schools\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Located in a quiet residential area\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 to schedule your visit!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique logement à louer – Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez plus d’espace et de confort? Découvrez ce superbe logement , situé dans un secteur résidentiel paisible de Gatineau. Parfait pour une famille, un couple ou des professionnels souhaitant profiter d’un environnement agréable et fonctionnel.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 Foyer chaleureux au salon\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Prise laveuse et sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace de vie confortable et lumineux\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement spacieux offrant le confort d’une maison, dans un quartier calme à proximité des services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des commerces et services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 À proximité des écoles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile au transport en commun\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Secteur résidentiel paisible\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred au 819-593-3304 dès aujourd’hui pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"215-chemin-de-la-savane\",\"215 Chemin De La Savane\",\"Chemin De La Savane\",\"215\",45.475858,-75.68137,[1174],[1174],\"215 chemin de la savane\",\"/storage/v1/object/public/halfred/buildings/8d0311ab-3d42-4109-9820-2d441a0eb4d9/215_chemin_de_la_savanne.PNG\",\"593a262d-4357-4fc7-9f37-0a86b92d634b\",\"e2132d13-f859-4d98-bfac-277ca5c3053c\",\"{\\\"en\\\":\\\"Enjoy a spacious and convenient apartment, ideally located ±10 minutes’ walk from Promenades Gatineau and ±15 minutes from Ottawa. Close to all essential amenities and services, perfect for young professionals, couples, or families.\\\\nApartment Features:\\\\n•\\\\t4 ½ available\\\\n•\\\\tHeating and electricity included\\\\n•\\\\tStove and refrigerator provided\\\\n•\\\\t1 parking spot included\\\\n•\\\\tShared laundry (electronic payment machines coming soon)\\\\n\\\\n***Option to be furnished for $1600/month or to purchase the furniture for $1300 upon lease signing.**\\\\n\\\\nLease Details:\\\\n❌ No dogs allowed, no exceptions\\\\n📄 Minimum 12-month lease\\\\n✅ Credit check required\\\\n📞 For more information or to schedule a visit, contact Halfred: 819-593-3304\\\",\\\"fr\\\":\\\"Profitez d’un logement spacieux et pratique, idéalement situé à ±10 minutes de marche des Promenades Gatineau et à ±15 minutes d’Ottawa. À proximité de toutes les commodités et services essentiels, cet appartement est parfait pour jeunes professionnels, couples ou familles.\\\\nCaractéristiques du logement :\\\\n•\\\\t4 ½ disponible\\\\n•\\\\tChauffé et éclairé pour votre confort\\\\n•\\\\tCuisinière et réfrigérateur inclus\\\\n•\\\\t1 stationnement inclus\\\\n•\\\\tBuanderie commune (machines à paiement électronique bientôt disponibles)\\\\n\\\\n* Possibilité d'être meublé pour 1600$/mois ou achat de meubles pour 1300$ à la signature du bail* \\\\n\\\\nConditions :\\\\n❌ Chiens non acceptés, sans exception\\\\n📄 Bail minimum de 12 mois\\\\n✅ Enquête de crédit obligatoire\\\\n📞 Pour plus d’informations ou pour planifier une visite, contactez Halfred : 819-593-3304\\\"}\",\"178-chemin-de-la-savane\",\"178 Chemin De La Savane\",\"178\",45.474732,-75.684237,[1190],[1190],\"178 ch de la Savane\",\"2026-10-17\",\"1156\",\"800\",31,\"/storage/v1/object/public/halfred/buildings/593a262d-4357-4fc7-9f37-0a86b92d634b/178_Chem._de_la_Savane_6-02.jpg\",\"879ed7ea-e716-4518-abfe-42ef3a99056e\",\"bfe309e3-463d-41a0-aed4-a5abdbb5db73\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Condo-Style Apartment for Rent – Rue du Maquis, Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning condo-style apartment located in a newer and highly desirable area of Aylmer. Enjoy modern living in a beautiful 12-unit building, conveniently located close to grocery stores, restaurants, banks, pharmacies, and all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to shops, restaurants, and everyday conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏦 Near banks, pharmacies, and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Located in a peaceful and growing neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔇 Concrete construction between floors for excellent soundproofing\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Modern and comfortable living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy the comfort of a modern condo-style apartment in a quiet neighborhood while remaining close to everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are from a model unit and may vary from the available apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique logement style condo à louer – Rue du Maquis, Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe logement de style condo situé dans un nouveau secteur recherché d’Aylmer. Profitez d’un cadre de vie moderne et paisible dans un immeuble de 12 unités, à proximité de tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À quelques minutes des épiceries, restaurants et commerces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏦 Près des banques, pharmacies et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Secteur calme et en pleine croissance\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔇 Béton entre les étages pour une excellente insonorisation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Logement moderne, lumineux et confortable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez du confort d’un condo moderne tout en bénéficiant d’un emplacement pratique près de tout ce dont vous avez besoin.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos sont prises d’un logement modèle et peuvent différer de l’unité disponible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"140-rue-du-maquis\",\"140 Rue Du Maquis\",\"140\",45.411415,-75.837641,[1203],[1203],\"1895\",12,\"/storage/v1/object/public/halfred/buildings/879ed7ea-e716-4518-abfe-42ef3a99056e/chatgpt-image-5-juin-2026-155918.png\",\"d316e4d1-0564-4633-bac0-1fcbbb0fb249\",\"9571f3ac-fc51-478d-b407-1eb27e6bb2df\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in one of Aylmer’s most desirable areas? Discover this beautiful recently built unit located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"22 De la Fabrique Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of comfort, convenience, and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Recent construction with modern finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Private parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright, practical, and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after neighborhood close to shops, services, trails, and everyday essentials.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement moderne dans un secteur recherché d’Aylmer? Découvrez ce superbe appartement récemment construit au 22\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\" rue de la Fabrique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Construction récente avec finition moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Stationnement privé inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie lumineux, pratique et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier paisible et recherché, à proximité des services, commerces, sentiers et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour un quotidien confortable et sans tracas!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"22-rue-de-la-fabrique\",\"22 Rue De La Fabrique\",\"22\",45.410167,-75.858117,[1215],[1215],\"1296\",\"/storage/v1/object/public/halfred/buildings/d316e4d1-0564-4633-bac0-1fcbbb0fb249/chatgpt-image-5-juin-2026-153827.png\",\"3988647d-8a00-4ef5-b53f-1dbbace17352\",\"8cd24079-1811-42f4-8b0d-21c3059d239d\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover a contemporary building perfectly located in one of Aylmer’s most desirable areas. Enjoy the best of both worlds: peaceful living surrounded by nature, while staying just minutes away from schools, parks, shops, bike paths, and the Rivermead Park \u0026 Ride.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Direct access to downtown Hull/Ottawa in under 15 minutes and only 2.2 km from the Champlain Bridge.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Building Features:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Modern, well-soundproofed apartments\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Wall-mounted A/C\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Large windows with great natural light\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Spacious bathrooms with separate showers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Contemporary kitchen with lunch counter\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Walk-in closet in the primary bedroom (in most units)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Open-concept layouts\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ 1 parking spot included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Perfect Location:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Quiet, family-friendly neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Near parks, trails, primary school, and local shops\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Easy access to public transit — ideal for commuters\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Building Policies:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 Pets not allowed\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📑 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact Halfred at 819-593-3304 to learn about available units or to schedule a visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez un immeuble moderne et parfaitement situé dans l’un des secteurs les plus recherchés d’Aylmer. Un cadre de vie paisible, entouré de nature, tout en restant à quelques minutes des services, écoles, commerces, pistes cyclables et du parc-o-bus Rivermead.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Accès direct au centre-ville de Hull/Ottawa en moins de 15 minutes et à seulement 2,2 km du pont Champlain.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Ce que vous offre le bâtiment :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Appartements modernes et très bien insonorisés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Air climatisé mural\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Grandes fenêtres pour une luminosité exceptionnelle\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Salles de bain spacieuses avec douche séparée\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Cuisine contemporaine avec comptoir lunch\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Walk-in dans la chambre principale (dans plusieurs unités)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ Aires ouvertes et espaces optimisés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Environnement idéal :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Quartier tranquille et sécuritaire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Parcs, sentiers, écoles primaires et commerces à proximité\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Transport en commun facile d’accès – parfait pour travailleurs ou étudiants\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Règlements du bâtiment :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-fumeur\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 Animaux non acceptés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📑 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez Halfred au 819-593-3304 pour connaître les unités disponibles et planifier une visite!\\\\\\\"}]}]}\\\"}\",\"295-avenue-de-l-hippodrome\",\"295 Avenue De L'hippodrome\",\"Avenue De L'hippodrome\",\"295\",45.399335,-75.79891,[1229],[1229],\"295 avenue de l'Hippodrome\",\"1370\",\"/storage/v1/object/public/halfred/buildings/3988647d-8a00-4ef5-b53f-1dbbace17352/chatgpt-image-10-juil-2026-134814.png\",\"8d6e3918-0039-48c3-a299-53208d039373\",\"9dccc3e6-6d05-4dfe-8150-0469aae2b5fd\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning and spacious 2-bedroom apartment located in one of Aylmer’s most desirable neighborhoods, offering a breathtaking view of the Ottawa River 🌊. Perfect for anyone looking for tranquility, comfort, and easy access to essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Exceptional location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 Only 5 minutes from Aylmer Marina\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Close to schools and parks\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Just 15 minutes from Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Near shops, restaurants, and essential services\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning for optimal comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger for improved air quality\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Very large balcony with beautiful views\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment with exceptional views while staying close to everything you need for everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement spacieux de 2 chambres situé dans l’un des secteurs les plus recherchés d’Aylmer, offrant une vue imprenable sur la rivière des Outaouais 🌊. Parfait pour ceux qui recherchent tranquillité, confort et proximité des services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 À seulement 5 minutes de la marina d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Près des écoles et des parcs\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 À 15 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À proximité des commerces, restaurants et services essentiels\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air pour une meilleure qualité de l’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Très grand balcon avec magnifique vue\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible avec une vue exceptionnelle tout en restant près de tout ce dont vous avez besoin au quotidien.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"48-rue-de-la-fabrique\",\"48 Rue De La Fabrique\",\"48\",45.410352,-75.858971,[1242],[1242],\"48 rue de la Fabrique \",\"1765\",\"/storage/v1/object/public/halfred/buildings/8d6e3918-0039-48c3-a299-53208d039373/chatgpt-image-26-mai-2026-141410.png\",\"a65c55c9-45c6-4c7b-a3c8-c820ffe837a3\",\"da8f26bb-6294-4abf-99e0-1c4296e992ba\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"River View in Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning 1-bedroom condo located on the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"ground floor of a recently built building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering a beautiful view of the Ottawa River in one of Aylmer’s most desirable neighborhoods. 🌊\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Exceptional location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌊 Only 5 minutes from Aylmer Marina\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏫 Directly across from a primary school\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌳 Close to several parks and green spaces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 Just 15 minutes from Ottawa and downtown Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚿 Separate bathtub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Modern recent construction with bright and stylish living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful and highly sought-after environment with beautiful views and quick access to all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📜 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\\r\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Vue sur la rivière à Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique condo d’une chambre situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rez-de-chaussée d’une construction récente\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant une superbe vue sur la rivière des Outaouais dans l’un des secteurs les plus recherchés d’Aylmer. 🌊\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌊 À seulement 5 minutes de la marina d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏫 En face d’une école primaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌳 À proximité de plusieurs parcs et espaces verts\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 À seulement 15 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚿 Bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Construction récente avec finition moderne et espace lumineux\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement calme et recherché avec une vue magnifique et un accès rapide à tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📜 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"52-rue-de-la-fabrique\",\"52 Rue De La Fabrique\",\"52\",45.410353,-75.859175,[1256],[1256],\"52 rue de la Fabrique\",\"2026-07-01\",\"1317\",\"/storage/v1/object/public/halfred/buildings/a65c55c9-45c6-4c7b-a3c8-c820ffe837a3/chatgpt-image-12-mai-2026-140740.png\",\"3afdee0b-a084-458f-98e5-be5019f5e3c7\",\"a0fc9393-8362-471b-9e4e-8f7a322d5b50\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"FOR RENT – 19 Forget Street | Near Lac Beauchamp!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this inviting apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet, family-friendly neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", just steps from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Lac Beauchamp\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Perfect for anyone seeking a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"peaceful and convenient lifestyle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional and practical layout\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌿 Access to a backyard\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Great location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a calm area while being close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"parks, services, and everyday amenities\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquility and quality of life\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À LOUER – 19 rue Forget | Près du Lac Beauchamp!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce charmant appartement situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"secteur familial calme et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Lac Beauchamp\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Parfait pour ceux qui recherchent un environnement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"paisible et pratique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un espace qui répond à vos besoins :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition fonctionnelle et agréable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Prises laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌿 Accès à une cour arrière\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier tranquille tout en étant à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"parcs, services et commodités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité et qualité de vie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"19-rue-forget\",\"19 Rue Forget\",\"Rue Forget\",45.4997,-75.609514,[1269],[1269],\"2025-10-15\",\"1350\",\"/storage/v1/object/public/halfred/buildings/3afdee0b-a084-458f-98e5-be5019f5e3c7/chatgpt-image-5-mai-2026-161251.png\",\"b77958d4-db7e-43bc-8505-3979e9731c7f\",\"349958ad-4084-48aa-b24a-8d69b5e91cde\",\"{\\\"en\\\":\\\"Discover this lovely apartment offering a comfortable and convenient living space, ideally located in Gatineau.\\\\r\\\\n\\\\r\\\\n🔹 Apartment Features:\\\\r\\\\n✔ 1 parking spot included 🚗\\\\r\\\\n✔ Bright and well-designed living space\\\\r\\\\n✔ Close to amenities: shopping, public transportation, schools, and more\\\\r\\\\n\\\\r\\\\n📌 Important Information:\\\\r\\\\n🚭 Non-smoking unit\\\\r\\\\n🐶 Pets not allowed\\\\r\\\\n⚡ Not heated or illuminated (utilities not included)\\\\r\\\\n📋 Credit check required\\\\r\\\\n📆 Minimum 1-year lease\\\\r\\\\n\\\\r\\\\n📞 Contact Halfred at 819-593-3304 for more information or to schedule a viewing!\\\",\\\"fr\\\":\\\"Découvrez ce beau logement offrant un cadre de vie confortable et pratique, idéalement situé à Gatineau.\\\\r\\\\n\\\\r\\\\n🔹 Caractéristiques du logement :\\\\r\\\\n✔ 1 stationnement inclus 🚗\\\\r\\\\n✔ Espace de vie lumineux et bien aménagé\\\\r\\\\n✔ Proche des commodités : commerces, transports en commun, écoles et plus encore\\\\r\\\\n\\\\r\\\\n📌 Informations importantes :\\\\r\\\\n🚭 Logement non-fumeur\\\\r\\\\n🐶 Animaux non acceptés\\\\r\\\\n⚡ Non chauffé, non éclairé\\\\r\\\\n📋 Enquête de crédit obligatoire\\\\r\\\\n📆 Bail minimum d’un an\\\\r\\\\n\\\\r\\\\n📞 Contactez Halfred au 819-593-3304 pour plus d’informations ou pour planifier une visite !\\\"}\",\"205-chemin-de-la-savane\",\"205 Chemin De La Savane\",\"205\",45.475366,-75.681509,[1282],[1282],\"2025-03-15\",\"1125\",\"/storage/v1/object/public/halfred/buildings/b77958d4-db7e-43bc-8505-3979e9731c7f/Exterieur-Savane.jpg\",\"fd70b466-2c38-44f3-a594-106edaac7097\",\"977163c0-0d18-4a01-8d98-35666b1baa30\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in one of Aylmer’s most desirable areas? Discover this beautiful recently built unit located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"38 De la Fabrique Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of comfort, convenience, and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Recent construction with modern finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Private parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright, practical, and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after neighborhood close to shops, services, trails, and everyday essentials.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement moderne dans un secteur recherché d’Aylmer? Découvrez ce superbe appartement récemment construit au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"38 rue de la Fabrique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Construction récente avec finition moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Stationnement privé inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie lumineux, pratique et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier paisible et recherché, à proximité des services, commerces, sentiers et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour un quotidien confortable et sans tracas!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"38-rue-de-la-fabrique\",\"38 Rue De La Fabrique\",\"38\",45.410348,-75.858358,[1294],[1294],\"2026-01-09\",\"/storage/v1/object/public/halfred/buildings/fd70b466-2c38-44f3-a594-106edaac7097/chatgpt-image-12-juin-2026-102041.png\",\"67179769-cd26-4be5-ac8d-72586177a60b\",\"addd8efc-d81e-4dbc-a9bb-0eac0b2e3c83\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent in Aylmer – Comfort \u0026 Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and desirable area of Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this beautiful apartment offers the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, functionality, and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, schools, trails, the marina, and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", it’s ideal for anyone looking for an exceptional quality of life.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Wall-mounted air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Bright and well-designed living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional layout perfect for everyday living\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful and accessible neighborhood, perfect for comfortable and stress-free living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The ideal place to combine tranquility and convenience!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beau logement à louer à Aylmer – Confort \u0026 emplacement idéal!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier paisible et recherché d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce superbe logement offre le parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, fonctionnalité et accessibilité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". À proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, écoles, sentiers, marina et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", il est idéal pour ceux qui recherchent une qualité de vie exceptionnelle.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Prises laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé mural pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Espace de vie lumineux et bien aménagé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique et agréable au quotidien\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement calme et accessible, parfait pour un quotidien simple et confortable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement idéal pour allier tranquillité et proximité des services!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions de location :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}}]}\\\"}\",\"278-boulevard-d-amsterdam\",\"278 Boulevard D'amsterdam\",\"278\",45.427974,-75.815214,[1307],[1307],\"278 Boulevard d'Amsterdam\",\"1785\",\"/storage/v1/object/public/halfred/buildings/67179769-cd26-4be5-ac8d-72586177a60b/chatgpt-image-11-mai-2026-125342.png\",\"1cdbd26c-9364-41c2-92c9-caf897b52387\",\"c8793850-b077-4ed2-b51d-1344d01ddbe5\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious 2-Bedroom Apartment for Rent!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful 2-bedroom apartment located on the top floor, offering plenty of natural light and a comfortable living space in a convenient and desirable area.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to Boulevard du Mont-Bleu and many shops and services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to public transportation, restaurants, and everyday essentials\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 large and bright bedrooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Dogs accepted\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Private balcony\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Laundry facilities on-site\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Comfortable and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a bright top-floor apartment in a practical and welcoming neighborhood close to everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacieux appartement 2 chambres à louer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique appartement de 2 chambres situé au dernier étage, offrant une belle luminosité et un espace de vie confortable dans un secteur pratique et recherché.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À proximité du boulevard du Mont-Bleu et de ses nombreux commerces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile aux services, restaurants et transport en commun\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 grandes chambres lumineuses\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Cuisinière et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Chiens acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 1 balcon privé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Buanderie sur place\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Espace confortable et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement lumineux au dernier étage dans un environnement pratique et agréable, près de tout ce dont vous avez besoin.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"83-rue-lucien-brault\",\"83 Rue Lucien-Brault\",\"Rue Lucien-Brault\",\"83\",45.46231,-75.75176,[1322],[1322],\"2026-05-01\",\"1500\",\"790\",\"/storage/v1/object/public/halfred/buildings/1cdbd26c-9364-41c2-92c9-caf897b52387/chatgpt-image-13-mai-2026-142624.png\",\"3b6fd29b-8bfe-4037-9a10-1b8505c232b1\",\"9a83c8db-a958-4a49-bba7-dc0d0f28ef2f\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Renovated Apartment – Downtown Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"freshly renovated apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" located on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Labelle Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", right in the heart of downtown Hull. Enjoy a prime location just steps from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and more\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"—everything you need within walking distance.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A perfect blend of comfort, convenience, and city living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Newly renovated, modern space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 In-unit washer \u0026 dryer for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet included – stay connected effortlessly\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pets welcome (cats \u0026 dogs)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in a central location where you can \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"walk everywhere\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" and fully enjoy urban living with ease.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss this opportunity!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Superbe appartement rénové – Centre-ville de Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique appartement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"fraîchement rénové\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", idéalement situé sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue Labelle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", en plein cœur du centre-ville de Hull. Profitez d’un emplacement exceptionnel à quelques pas de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" : épiceries, restaurants, banques, pharmacies et plus encore.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un style de vie urbain, pratique et confortable vous attend!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre ce logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Appartement rénové au goût du jour\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Poêle et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Laveuse et sécheuse pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet inclus – restez connecté en tout temps\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chats et chiens acceptés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement central qui vous permet de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tout faire à pied\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et de profiter pleinement de la vie urbaine, avec confort et simplicité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une opportunité à ne pas manquer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"155-rue-wigwas\",\"155 Rue Wìgwàs\",\"Rue Wìgwàs\",\"155\",45.434263,-75.741808,[1336],[1336],\"650 - 967\",17,\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/3b6fd29b-8bfe-4037-9a10-1b8505c232b1/0__3b6fd29b-8bfe-4037-9a10-1b8505c232b1.webp?version=0f735540-34ae-4c75-9f41-c177d9c31020\",\"92f1b218-202c-42ea-a8f7-fca7f232c0bf\",\"7566ff50-c7fa-43d0-8e6d-abfd3997bc01\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment for Rent – 46 Joseph-Galipeau Street!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located in a convenient and welcoming neighborhood, perfect for workers, students, or small families looking for comfort and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Comfortable and functional living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and well-designed apartment\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a practical location close to shops, restaurants, services, and transportation.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement à louer – 46 rue Joseph-Galipeau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce beau logement situé dans un secteur pratique et agréable, parfait pour travailleurs, étudiants ou petites familles recherchant confort et tranquillité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Prises laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Espace confortable et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Logement lumineux et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement pratique à proximité des services, commerces, restaurants et transports.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"46-rue-joseph-galipeau\",\"46 Rue Joseph-Galipeau\",\"Rue Joseph-Galipeau\",45.459907,-75.704527,[1348],[1348],\"2024-07-25\",\"/storage/v1/object/public/halfred/buildings/92f1b218-202c-42ea-a8f7-fca7f232c0bf/1front.jpg\",\"3d8a632a-b1cb-4fd2-bace-6154bd2408b2\",\"d5a5287c-fcee-44ff-b050-03a704d6bce3\",\"211-rue-de-la-fregate\",\"211 Rue De La Frégate\",\"Rue De La Frégate\",\"211\",45.499665,-75.59097,[1361],[1361],\"2026-05-22\",\"1195\",\"/storage/v1/object/public/halfred/buildings/3d8a632a-b1cb-4fd2-bace-6154bd2408b2/0002-0002.jpg\",\"84687d04-5d07-4547-b653-a2555d0b5417\",\"8d15b401-ff5f-4326-a324-e88e229e9af5\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"heading\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null,\\\\\\\"level\\\\\\\":3},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1-Bedroom Apartment for Rent – Gatineau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Discover this charming 1-bedroom apartment offering a bright, comfortable, and well-designed living space.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment Features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Large windows providing plenty of natural light ☀️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Functional kitchen and living room 🍽️🛋️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Basement access, ideal for additional storage 📦\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Located in a quiet and desirable neighborhood 🌳\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Great Location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Close to grocery stores, shopping, restaurants, schools, parks, and public transit. Everything you need is just minutes away!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental Conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking building\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"For more information or to schedule a viewing, contact Halfred today!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A bright, practical, and well-located apartment you'll be happy to call home!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"heading\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null,\\\\\\\"level\\\\\\\":3},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement 1 chambre à louer – Gatineau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Découvrez ce charmant appartement 1 chambre offrant un espace de vie lumineux, confortable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques du logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Grande fenestration offrant une abondante lumière naturelle ☀️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Cuisine et salon fonctionnels 🍽️🛋️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Accès au sous-sol, idéal pour du rangement supplémentaire 📦\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Secteur calme et recherché 🌳\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À proximité des épiceries, commerces, restaurants, écoles, parcs et transports en commun. Tout ce dont vous avez besoin se trouve à quelques minutes de chez vous!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Immeuble non-fumeur\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pour plus d'informations ou pour planifier une visite, contactez Halfred dès aujourd'hui !\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement lumineux, pratique et bien situé.\\\\\\\"}]}]}\\\"}\",\"125-boulevard-lorrain\",\"125 Boulevard Lorrain\",\"Boulevard Lorrain\",\"125\",[1373],[1373],\"125 Bd Lorrain\",\"2026-07-24\",\"/storage/v1/object/public/halfred/buildings/84687d04-5d07-4547-b653-a2555d0b5417/125-lorrain.png\",\"5cd46b63-f6ac-4a3f-ad33-e59204355119\",\"2b39106f-8ad8-4fd3-b695-71ee0732b52a\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"FOR RENT – 576 des Hautes-Plaines Boulevard, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Available Now!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"2-bedroom apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" located in a quiet and desirable neighborhood, perfect for couples, small families, or professionals looking for comfort and convenience.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love This Location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Peaceful residential area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to shopping and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Quick access to major roads and highways\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What This Unit Offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 spacious bedrooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍳 Refrigerator, stove, and dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Washer and dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Separate kitchen and living room\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect home for anyone looking to enjoy a quiet neighborhood while staying close to everything they need!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 to schedule your visit!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚨 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Available now – don't miss this opportunity!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔑✨\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À LOUER – 576 boulevard des Hautes-Plaines, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Disponible dès maintenant!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce beau logement de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"2 chambres\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" situé dans un quartier paisible et recherché, parfait pour un couple, une petite famille ou des professionnels à la recherche de confort et de tranquillité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Secteur calme et agréable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À proximité des commerces et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile au transport en commun\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Accès rapide aux principaux axes routiers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 chambres spacieuses\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍳 Réfrigérateur, cuisinière et lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Prises laveuse et sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Cuisine et salon séparés pour plus de confort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace de vie fonctionnel et lumineux\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement idéal pour ceux qui recherchent un environnement paisible tout en restant près de tout!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred au 819-593-3304 dès aujourd’hui pour planifier votre visite!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚨 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Disponible maintenant – faites vite!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔑✨\\\\\\\"}]}]}\\\"}\",\"576-boulevard-des-hautes-plaines\",\"576 Boulevard Des Hautes-Plaines\",\"Boulevard Des Hautes-Plaines\",\"576\",45.474898,-75.767749,[1389],[1389],\"576 Hautes Plaines\",\"2026-06-16\",\"1495\",\"895\",\"/storage/v1/object/public/halfred/buildings/5cd46b63-f6ac-4a3f-ad33-e59204355119/1.jpg\",\"a03b227b-53cf-44fa-8143-4856be4af4c3\",\"7d3cb4e2-3474-49cc-bd10-439642de4d02\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious 2-Bedroom Apartment – Schryer Street | Peaceful Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this large 2-bedroom apartment located in the desirable \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"airport area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Schryer Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", right next to the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rivière Blanche\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Enjoy a peaceful environment while staying close to everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What makes this unit stand out:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 2 spacious bedrooms offering comfort and flexibility\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Large private balcony to enjoy the outdoors 🌞\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Laundry room in the building 🧺\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Practical and functional layout\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Included features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Wall-mounted air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included (option for a second $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet, nature-filled neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" perfect for relaxed everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Grand 2 chambres à louer – Rue Schryer | Secteur paisible!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce spacieux logement de 2 chambres situé dans le \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"secteur recherché de l’aéroport\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue Schryer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité de la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rivière Blanche\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Un environnement idéal pour profiter de la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité tout en restant près de la ville\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un espace qui se démarque :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 2 chambres offrant confort et espace\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Grand balcon pour profiter de l’extérieur 🌞\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Salle de lavage dans l’immeuble 🧺\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique et agréable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé mural\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus (possibilité d’un 2e $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"calme, naturel et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour un quotidien paisible à proximité des services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"1804-rue-schryer\",\"1804 Rue Schryer\",\"Rue Schryer\",45.503365,-75.561763,[1400],[1400],\"/storage/v1/object/public/halfred/buildings/a03b227b-53cf-44fa-8143-4856be4af4c3/1.png\",\"66dff9c4-f8b7-4d1d-8e04-702997184f75\",\"de758571-ac88-44bb-a738-0db660d5b80b\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious 2-Bedroom Apartment – Schryer Street | Peaceful Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this large 2-bedroom apartment located in the desirable \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"airport area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Schryer Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", right next to the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rivière Blanche\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Enjoy a peaceful environment while staying close to everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What makes this unit stand out:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 2 spacious bedrooms offering comfort and flexibility\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Large private balcony to enjoy the outdoors 🌞\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Laundry room in the building 🧺\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Practical and functional layout\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Included features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Wall-mounted air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included (option for a second $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet, nature-filled neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" perfect for relaxed everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Grand 2 chambres à louer – Rue Schryer | Secteur paisible!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce spacieux logement de 2 chambres situé dans le \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"secteur recherché de l’aéroport\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue Schryer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité de la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rivière Blanche\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Un environnement idéal pour profiter de la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité tout en restant près de la ville\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un espace qui se démarque :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 2 chambres offrant confort et espace\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Grand balcon pour profiter de l’extérieur 🌞\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Salle de lavage dans l’immeuble 🧺\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique et agréable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé mural\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus (possibilité d’un 2e $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"calme, naturel et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour un quotidien paisible à proximité des services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]}]}\\\"}\",\"1780-rue-schryer\",\"1780 Rue Schryer\",\"1780\",45.503977,-75.561625,[1412],[1412],\"2025-12-01\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/66dff9c4-f8b7-4d1d-8e04-702997184f75/0-1780 Rue Schryer.PNG?version=55024d91-165d-4018-bf8b-af84f7052628\",\"582448bc-e1b8-4ab8-affb-b313d8965495\",\"e27e4eb1-e62f-4908-a901-ce6a061ff0a5\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Modern Apartment for Rent – 32 De la Fabrique Street, Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in one of Aylmer’s most desirable areas? Discover this beautiful recently built unit located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"32 De la Fabrique Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of comfort, convenience, and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Recent construction with modern finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Private parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright, practical, and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after neighborhood close to shops, services, trails, and everyday essentials.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement moderne à louer – 32 rue de la Fabrique, Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement moderne dans un secteur recherché d’Aylmer? Découvrez ce superbe appartement récemment construit au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"32 rue de la Fabrique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Construction récente avec finition moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Stationnement privé inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie lumineux, pratique et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier paisible et recherché, à proximité des services, commerces, sentiers et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour un quotidien confortable et sans tracas!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"32-rue-de-la-fabrique\",\"32 Rue De La Fabrique\",\"32\",45.409971,-75.858617,[1425],[1425],\"Muscat 8 \",\"2026-01-01\",\"/storage/v1/object/public/halfred/buildings/582448bc-e1b8-4ab8-affb-b313d8965495/chatgpt-image-11-mai-2026-143639.png\",\"6032cc84-5345-49d0-bdd8-22d97cf94346\",\"d3295563-d279-41fd-bc72-52dd3ab5300e\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Downtown Hull Apartment – Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this well-located apartment on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Eddy Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", right in the heart of downtown Hull. Enjoy a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"vibrant urban lifestyle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" with everything just steps away—\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and more\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Central location – walk to everything\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pets welcome (cats \u0026 dogs)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in the center of it all with easy access to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services, entertainment, and daily essentials\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement au centre-ville de Hull – Emplacement exceptionnel!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce logement idéalement situé sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue Eddy\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", en plein cœur du centre-ville de Hull. Profitez d’un mode de vie urbain \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"pratique et dynamique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à distance de marche des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, restaurants, banques, pharmacies et plus encore\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie pratique et confortable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Poêle et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Emplacement central pour tout faire à pied\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chats et chiens acceptés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vivez au cœur de l’action avec un accès rapide à tous les services essentiels et aux attraits du centre-ville.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"159-rue-eddy\",\"159 Rue Eddy\",\"Rue Eddy\",\"159\",45.430367,-75.720489,[1440],[1440],\"2026-03-17\",\"975\",\"300 - 585\",\"/storage/v1/object/public/halfred/buildings/6032cc84-5345-49d0-bdd8-22d97cf94346/chatgpt-image-5-mai-2026-132844.png\",\"031ad7bb-2e17-49f9-b144-a4e731a30632\",\"e6712460-c511-4ff8-8c11-e98920f10ced\",\"40-rue-de-la-fabrique\",\"40 Rue De La Fabrique\",\"40\",45.410349,-75.85846,[1450],[1450],\"/storage/v1/object/public/halfred/buildings/031ad7bb-2e17-49f9-b144-a4e731a30632/chatgpt-image-26-mai-2026-141410.png\",\"c528a867-7970-44ec-bd2c-84bf427b75b4\",\"e9fa5bcb-f159-4c14-9b3e-09f14b9b4438\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Modern Apartment for Rent – Quiet \u0026 Desirable Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"peaceful and sought-after neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modern, comfortable, and practical living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Modern and functional bathroom\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern kitchen with plenty of storage space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Bright living room perfect for relaxing or entertaining\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a quiet environment while staying close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"essential services and everyday conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement moderne à louer – Secteur calme et recherché!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier paisible et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour ceux qui recherchent un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"moderne, confortable et pratique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Salle de bain moderne et fonctionnelle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Cuisine moderne avec beaucoup de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Salon lumineux idéal pour relaxer ou recevoir\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement calme tout en étant à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services essentiels et commodités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement parfait pour un quotidien confortable et sans compromis!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"209-rue-du-piree\",\"209 Rue Du Pirée\",\"Rue Du Pirée\",\"209\",45.43509,-75.814433,[1465],[1465],\"2026-08-01\",\"1392\",\"700 - 1400\",\"/storage/v1/object/public/halfred/buildings/c528a867-7970-44ec-bd2c-84bf427b75b4/facade.JPG\",\"53162c68-ecf7-460c-8e99-8c9a066569e2\",\"5ff404a0-7ad0-4b09-90b9-925505da8672\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement au centre-ville de Hull – Emplacement exceptionnel!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce logement idéalement situé sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue Eddy\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", en plein cœur du centre-ville de Hull. Profitez d’un mode de vie urbain \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"pratique et dynamique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à distance de marche des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, restaurants, banques, pharmacies et plus encore\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie pratique et confortable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Poêle et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Emplacement central pour tout faire à pied\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chats et chiens acceptés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vivez au cœur de l’action avec un accès rapide à tous les services essentiels et aux attraits du centre-ville.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Downtown Hull Apartment – Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this well-located apartment on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Eddy Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", right in the heart of downtown Hull. Enjoy a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"vibrant urban lifestyle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" with everything just steps away—\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and more\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Central location – walk to everything\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pets welcome (cats \u0026 dogs)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in the center of it all with easy access to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services, entertainment, and daily essentials\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}}]}\\\"}\",\"165-rue-eddy\",\"165 Rue Eddy\",\"165\",45.430494,-75.7205,[1479],[1479],\"0 - 2\",\"300 - 700\",13,\"/storage/v1/object/public/halfred/buildings/53162c68-ecf7-460c-8e99-8c9a066569e2/chatgpt-image-5-mai-2026-132844.png\",\"f9e11522-a7ac-490d-b299-3537453e72d4\",\"acfadb64-6553-42a4-8f94-0982c940592d\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Enjoy a prime location in the highly desirable Plateau neighborhood! Located on Liverpool Street, this beautiful condo-style apartment is close to all amenities, Gatineau Park, and just \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes from downtown Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment Features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Premium hardwood and ceramic flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Modern kitchen with \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🍽️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Bathroom with separate bathtub and shower 🛁\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Concrete soundproofing between floors for added privacy\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air conditioning ❄️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air exchanger 🌬️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Private balcony\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ 1 outdoor parking space included 🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"(Second parking space available, subject to availability)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Nearby:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Gatineau Park 🌳\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Schools, grocery stores, restaurants, and shopping\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Quick access to downtown Ottawa and Hull\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental Conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Heat and electricity not included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today to schedule a viewing!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Availability is limited. Contact us today to book your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Profitez d’un emplacement de choix dans le secteur recherché du Plateau! Situé sur la rue Liverpool, ce magnifique appartement de style condo est à proximité de tous les services, du parc de la Gatineau et à seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques du logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Planchers en bois et céramique de qualité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Cuisine moderne avec \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🍽️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Salle de bain avec bain et douche séparés 🛁\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Isolation en béton entre les étages pour une tranquillité optimale\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air climatisé ❄️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Échangeur d’air 🌬️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Balcon privé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ 1 stationnement inclus 🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"(possibilité d’un 2e selon disponibilité)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À proximité :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Parc de la Gatineau 🌳\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Écoles, épiceries, restaurants et commerces\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Accès rapide à Ottawa et au centre-ville de Hull\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred dès aujourd’hui pour planifier une visite !\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les disponibilités sont limitées. Contactez-nous rapidement pour réserver votre visite !\\\\\\\"}]}]}\\\"}\",\"19-rue-de-liverpool\",\"19 Rue De Liverpool\",45.428997,-75.806907,[1490],[1490],\"1805\",\"/storage/v1/object/public/halfred/buildings/f9e11522-a7ac-490d-b299-3537453e72d4/chatgpt-image-3-juil-2026-133549.png\",\"6cd9ce1a-82c4-4216-9c81-8f29b7d19cc0\",\"5f8cde7a-2b24-4546-9ed2-003dd658a800\",\"{\\\"en\\\":\\\"Live in a bright and convenient apartment ideally located in Gatineau, right across from the Riviera Shopping Center! Enjoy easy access to grocery stores, restaurants, pharmacies, hair salons, dentist, and optometry clinic. Just ±15 minutes from Ottawa and a 2-minute walk to Rapibus La Gappe station, perfect for daily commuting.\\\\nApartment Features:\\\\n•\\\\tUtilities included (heated and lit)\\\\n•\\\\tStove and refrigerator included\\\\n•\\\\t1 parking spot included\\\\n•\\\\tShared laundry (electronic payment machines coming soon)\\\\nLease Details:\\\\n❌ No dogs allowed, no exceptions\\\\n📄 Minimum 12-month lease\\\\n✅ Credit check required\\\\n📞 For more information or to schedule a visit, contact Halfred: 819-593-3304\\\\n\\\",\\\"fr\\\":\\\"Vivez dans un logement lumineux et pratique, idéalement situé à Gatineau, juste en face du Centre d’achat Riviera ! Profitez d’un accès facile à épiceries, restaurants, pharmacies, salons de coiffure, dentiste et clinique d’optométrie. À seulement ±15 minutes d’Ottawa et à 2 minutes à pied du station Rapibus La Gappe, cet emplacement est parfait pour vos déplacements quotidiens.\\\\nCaractéristiques du logement :\\\\n•\\\\tChauffé et éclairé\\\\n•\\\\tCuisinière et réfrigérateur inclus\\\\n•\\\\t1 stationnement inclus\\\\n•\\\\tBuanderie commune (machines à paiement électronique bientôt disponibles)\\\\nConditions :\\\\n❌ Chiens non acceptés, sans exception\\\\n📄 Bail minimum 12 mois\\\\n✅ Enquête de crédit obligatoire\\\\n📞 Pour plus d’informations ou pour planifier une visite, contactez Halfred : 819-593-3304\\\"}\",\"1865-rue-saint-louis\",\"1865 Rue Saint-Louis\",\"1865\",45.472481,-75.726376,[1505],[1505],\"1865 rue Saint Louis\",\"2026-07-10\",\"1567\",\"850\",\"/storage/v1/object/public/halfred/buildings/6cd9ce1a-82c4-4216-9c81-8f29b7d19cc0/1855_Rue_Saint-Louis_6-01.jpg\",\"b9a80486-6b48-4e25-939e-c84f59ee2219\",\"05b1becb-7475-4fd9-b644-9292d772dc26\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\" Comfort \u0026 Great Location in Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"convenient and accessible area of Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfortable, practical, and well-located living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional and comfortable living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Practical layout ideal for everyday living\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 outdoor parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A location you’ll appreciate:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"essential services, schools, parks, and public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", making daily life simple and convenient.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A peaceful environment offering the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, tranquility, and accessibility\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Available immediately – act fast!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\" Confort \u0026 emplacement idéal à Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe logement situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"secteur pratique et accessible de Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour ceux qui recherchent un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confortable, fonctionnel et bien localisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie pratique et agréable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition fonctionnelle idéale pour le quotidien\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement extérieur inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement avantageux :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services essentiels, écoles, parcs et transports en commun\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", pour un quotidien simple et efficace.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un environnement calme offrant le parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité et accessibilité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Disponible immédiatement – faites vite!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"2-rue-de-la-fondriere\",\"2 Rue De La Fondrière\",\"Rue De La Fondrière\",45.473925,-75.767723,[1518],[1518],\"2025-06-01\",\"700\",\"/storage/v1/object/public/halfred/buildings/b9a80486-6b48-4e25-939e-c84f59ee2219/chatgpt-image-7-mai-2026-132500.png\",\"188549ec-48d8-4a35-b407-95e5c18d055e\",\"f87fede2-89ea-41fa-af02-91ce23da626c\",\"1812-rue-schryer\",\"1812 Rue Schryer\",\"1812\",45.503386,-75.561313,[1529],[1529],\"1812 rue Schryer\",\"/storage/v1/object/public/halfred/buildings/188549ec-48d8-4a35-b407-95e5c18d055e/schryer-facade.PNG\",\"5cf3755a-4140-459d-ba3a-e4c42f34c6fa\",\"7215c489-f13f-480e-b197-5e8322ab71c1\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Recently Built Apartment for Rent – Katimavik Street, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful recently built apartment located on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Katimavik Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", in one of the most desirable areas of the Plateau! Ideally located directly across from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"D’Arcy McGee English High School\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" and close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"École du Marais\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this apartment offers the perfect balance of comfort, convenience, and accessibility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Exceptional location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚴 Just steps from the Pioneers Trail bike path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌊 Only 5 minutes from Aylmer Marina\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 Just 10 minutes from Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚌 Several public transportation routes nearby\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Walking distance to grocery stores, restaurants, pharmacies, dentist offices, and more\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 outdoor parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy living in a vibrant and highly sought-after neighborhood with quick access to schools, shops, nature, and major roadways.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are from a model unit. The actual apartment may vary.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement récent à louer – Rue Katimavik, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe logement de construction récente situé sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue Katimavik\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", dans l’un des secteurs les plus recherchés du Plateau! Idéalement situé en face de l’école secondaire anglophone \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"D’Arcy McGee\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et tout près de l’école primaire du Marais, ce logement offre un parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚴 À deux pas du sentier des Pionniers (piste cyclable)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌊 À seulement 5 minutes de la marina d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 À 10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚌 Plusieurs trajets de transport en commun disponibles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Services accessibles à pied : épiceries, restaurants, pharmacie, dentiste et plus encore\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement extérieur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier dynamique et recherché offrant un accès rapide aux écoles, commerces, nature et grands axes routiers.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos proviennent d’une unité modèle. Le logement actuel peut différer.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"54-rue-katimavik\",\"54 Rue Katimavik\",\"54\",45.420544,-75.807509,[1541],[1541],\"1635\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/5cf3755a-4140-459d-ba3a-e4c42f34c6fa/0__5cf3755a-4140-459d-ba3a-e4c42f34c6fa.webp?version=29854b62-9d72-4c5f-a030-4c9b9e1ab07d\",\"f7f4879a-0505-48c9-8066-4880b68c51e9\",\"771109a2-a08d-4dae-a4c4-34146bf41554\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Modern Apartment for Rent – Amsterdam | Plateau Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Amsterdam Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", in one of the most desirable areas of the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau in Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Enjoy a prime location close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"shops, restaurants, essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", and just minutes from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Gatineau Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"👉 Only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes from Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Separate bathtub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern and functional living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included (option for a second $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Additional option:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A vibrant and highly sought-after neighborhood offering the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature, tranquility, and urban living\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are from a model unit and may vary from the available apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement moderne à louer – Boulevard d'Amsterdam | Secteur du Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe logement situé sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue Amsterdam\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", dans l’un des secteurs les plus recherchés du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau à Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Profitez d’un emplacement idéal à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"commerces, restaurants, services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et à quelques minutes seulement du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"parc de la Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"👉 À seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie moderne et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus (possibilité d’un 2e $$)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Option supplémentaire :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un secteur dynamique et très recherché offrant un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature, tranquillité et vie urbaine\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos sont celles du logement modèle et peuvent différer de l’unité disponible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"276-boulevard-d-amsterdam\",\"276 Boulevard D'amsterdam\",\"276\",45.427997,-75.815115,[1553],[1553],\"1000 - 1100\",\"/storage/v1/object/public/halfred/buildings/f7f4879a-0505-48c9-8066-4880b68c51e9/chatgpt-image-11-mai-2026-125342.png\",\"61ef446c-8731-4b03-8e7d-183ea55c4f22\",\"83c20f04-1ff7-4064-a085-73e3bb73ee6c\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment for Rent – 224 Maisonneuve Boulevard | Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"224 Maisonneuve Boulevard\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfortable, practical, and well-located living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" in the heart of the city.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛏️ Bright and comfortable bedrooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Spacious and welcoming living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional layout designed for everyday comfort\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A location that makes life easier:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy quick access to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"essential services, restaurants, shops, and public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" while living in a convenient and desirable area.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"The perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"space, comfort, and urban living\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement spacieux à louer – 224 boulevard Maisonneuve | Emplacement idéal!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"224 boulevard Maisonneuve\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour ceux qui recherchent un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confortable, pratique et bien localisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au cœur de la ville.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛏️ Chambres lumineuses et confortables\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Espace de vie spacieux et agréable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique idéale pour le quotidien\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement qui fait la différence :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un accès rapide aux \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services essentiels, restaurants, commerces et transports\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", tout en vivant dans un secteur pratique et recherché.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"espace, confort et vie urbaine\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"224-boulevard-maisonneuve\",\"224 Boulevard Maisonneuve\",\"Boulevard Maisonneuve\",\"224\",45.433864,-75.71221,[1566],[1566],\"1336\",\"/storage/v1/object/public/halfred/buildings/61ef446c-8731-4b03-8e7d-183ea55c4f22/facade.JPG\",\"58216cde-2c69-4210-a7aa-b0954533f663\",\"b3991a7d-e255-4b61-ad0f-305948cbee04\",\"247-rue-de-la-fregate\",\"247 Rue De La Frégate\",\"247\",45.499488,-75.592294,[1576],[1576],\"/storage/v1/object/public/halfred/buildings/58216cde-2c69-4210-a7aa-b0954533f663/0002-0002.jpg\",\"bfe3e1ad-69bd-4aab-9774-377431111ad5\",\"5259aa74-f868-455e-a024-2e4db279a5aa\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Comfortable, Well-Located Apartment\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"This well-located apartment offers a functional and comfortable living space, ideal for one person.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Features:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"One parking space included\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Cats allowed 🐱\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Included:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Heating and electricity\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Refrigerator and stove\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Mandatory credit check\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📩 For more information or to schedule a viewing, please contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Logement confortable et bien situé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Ce logement bien situé offre un espace de vie fonctionnel et confortable, idéal pour une personne seule.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un stationnement inclus\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Chats acceptés 🐱\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Chauffage et électricité\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Réfrigérateur et cuisinière\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📩 Pour obtenir plus d’informations ou planifier une visite, veuillez communiquer avec \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"}]}]}\\\"}\",\"11-rue-duquesne\",\"11 Rue Duquesne\",\"Rue Duquesne\",\"11\",45.425776,-75.734444,[1588],[1588],\"/storage/v1/object/public/halfred/buildings/bfe3e1ad-69bd-4aab-9774-377431111ad5/01-facade-png.jpg\",\"46b6649f-c9c3-42ae-878d-ee0420f81a37\",\"431ccf51-bb77-4ca0-85e0-00fb0683668c\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"heading\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null,\\\\\\\"level\\\\\\\":3},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment for Rent – 8 Curé-André-Larocque!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 Discover a comfortable, quiet, and well-located apartment, perfect for a single person, a couple, a student, or a professional looking for a convenient and enjoyable place to call home.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"You'll Love:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Quiet and desirable neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Bright and functional living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Close to grocery stores, restaurants, and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Just minutes from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Collège Universel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🎓\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Easy access to public transit and major roads\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit and background check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"For more information or to schedule a viewing, contact Halfred today!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"☎️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"heading\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null,\\\\\\\"level\\\\\\\":3},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement à louer – 8 Curé-André-Larocque!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 Découvrez un appartement confortable, paisible et bien situé, parfait pour une personne seule, un couple, un étudiant ou un professionnel à la recherche d’un milieu de vie pratique et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Vous allez apprécier :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Secteur calme et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Logement lumineux et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ À proximité des commerces, restaurants et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ À quelques minutes du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Collège Universel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🎓\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Accès rapide aux transports en commun et aux principaux axes routiers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pour plus d'informations ou pour planifier une visite, contactez Halfred dès aujourd'hui !\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"☎️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}}]}\\\"}\",\"8-rue-du-cure-armand-larocque\",\"8 Rue Du Curé-Armand-Larocque\",\"8\",[1600],[1600],\"8 Curé-Armand-Larocque\",\"2026-07-03\",\"1050\",\"/storage/v1/object/public/halfred/buildings/46b6649f-c9c3-42ae-878d-ee0420f81a37/facade.png\",\"aa7ef5d1-665c-44aa-ad50-85521004ab2e\",\"0c4ed006-46f1-493c-8308-14441ea7fbd4\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Condo-Style Apartment for Rent!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful condo-style apartment located in a peaceful residential neighborhood, perfect for anyone looking for comfort, tranquility, and easy access to essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to grocery stores, restaurants, banks, pharmacies, and more\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to transportation and everyday conveniences\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 Modern ceramic flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 outdoor parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Bright and comfortable living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a quiet and modern environment while staying close to everything you need for everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📜 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Superbe logement style condo à louer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique logement de style condo situé dans un quartier résidentiel paisible, parfait pour ceux qui recherchent confort, tranquillité et proximité des services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des épiceries, restaurants, banques, pharmacies et plus encore\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile aux transports et aux principaux services\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Prises laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 Planchers de céramique modernes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement extérieur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Espace lumineux et confortable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement calme et moderne tout en étant près de tout ce dont vous avez besoin au quotidien.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📜 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"94-rue-du-campagnard\",\"94 Rue Du Campagnard\",\"Rue Du Campagnard\",\"94\",45.502488,-75.590165,[1613],[1613],\"1204\",\"/storage/v1/object/public/halfred/buildings/aa7ef5d1-665c-44aa-ad50-85521004ab2e/chatgpt-image-29-mai-2026-144508.png\",\"1bf2d9b0-3e62-406a-9cd2-11930e86ebf3\",\"a1435e2c-6c97-4a66-bc32-e0fddc93ff35\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Modern Apartment for Rent in Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a modern, bright, and comfortable living space in a prime Gatineau location! Close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les Promenades Gatineau, Gatineau Hospital, and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this apartment is perfect for anyone looking for a peaceful and convenient lifestyle.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ✨ Bright living space with modern lighting\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏡 Outdoor storage shed for extra space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌳 Private balcony to enjoy the outdoors\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A strategic location close to shops, restaurants, services, and public transportation, while enjoying a calm and welcoming environment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect balance of comfort, modern living, and convenience!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Superbe appartement moderne à louer à Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Offrez-vous un espace de vie moderne, lumineux et confortable dans un emplacement de choix à Gatineau! Situé à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Promenades Gatineau, de l’Hôpital de Gatineau et de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce logement est parfait pour ceux qui recherchent un style de vie pratique et paisible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal toute l’année\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ✨ Espace lumineux avec luminaires modernes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏡 Cabanon extérieur pratique pour rangement supplémentaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌳 Balcon privé pour profiter de l’extérieur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement stratégique près des commerces, restaurants, services et transports, tout en profitant d’un environnement calme et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le parfait équilibre entre confort, modernité et accessibilité!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"260-boulevard-de-la-cite\",\"260 Boulevard De La Cité\",\"Boulevard De La Cité\",\"260\",45.476589,-75.677528,[1628],[1628],\"2023-09-01\",\"1690\",\"1000 - 1050\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/1bf2d9b0-3e62-406a-9cd2-11930e86ebf3/0__1.jpg?version=2bd09d8a-5647-4aba-b98b-ce23824b7a9c\",\"66be23b5-06e7-4c15-9a2d-a1da53a37290\",\"5ddb2163-18dc-404d-be89-40b64bc92d38\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious 3-Bedroom Apartment for Rent – Old Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this spacious 3-bedroom apartment ideally located in the heart of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Old Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"! Enjoy living just steps away from essential services, restaurants, parks, museums, government buildings, and much more.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Located in the vibrant Old Hull area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Close to restaurants, cafés, and shops\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Near parks and green spaces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏛️ Minutes from museums and government offices\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Stove included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧊 Refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📦 Outdoor storage shed included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Spacious and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy the convenience of downtown living while benefiting from a comfortable and well-located apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 No parking included, but parking may be available for $100/month (subject to availability)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are from a model unit and may vary from the available apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacieux appartement 3 chambres à louer – Vieux-Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce grand appartement de 3 chambres idéalement situé au cœur du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Vieux-Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"! Profitez d’un emplacement exceptionnel à quelques pas des services essentiels, restaurants, parcs, musées, édifices gouvernementaux et bien plus encore.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Situé dans le secteur dynamique du Vieux-Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Près des restaurants, cafés et commerces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 À proximité des parcs et espaces verts\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏛️ À quelques minutes des musées et édifices gouvernementaux\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Cuisinière incluse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧊 Réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📦 Remise extérieure incluse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Grand espace de vie confortable et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez de tous les avantages de la vie urbaine tout en bénéficiant d’un logement spacieux et bien situé.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Aucun stationnement inclus, mais possibilité d’en louer un pour 100$/mois (selon disponibilité)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos sont prises d’un logement modèle et peuvent différer de l’unité disponible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"88-rue-frontenac\",\"88 Rue Frontenac\",\"Rue Frontenac\",\"88\",45.428874,-75.71665,[1641],[1641],\"1420\",\"/storage/v1/object/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png\",\"634b56cf-4ab5-4226-88f4-2c5aeb45a23f\",\"5d62099b-0e3b-433f-88f3-d53d5ec086dd\",\"1792-rue-schryer\",\"1792 Rue Schryer\",\"1792\",45.503421,-75.562313,[1653],[1653],\"1792 Rue Schyer\",\"2026-06-01\",\"/storage/v1/object/public/halfred/buildings/634b56cf-4ab5-4226-88f4-2c5aeb45a23f/schryer-facade.PNG\",\"8c57cef8-e37d-43fa-af05-f619e71b70d4\",\"3282e12b-625a-40fe-a730-117cd49bc4e2\",\"1816-rue-schryer\",\"1816 Rue Schryer\",\"1816\",45.503393,-75.561109,[1663],[1663],\"/storage/v1/object/public/halfred/buildings/8c57cef8-e37d-43fa-af05-f619e71b70d4/1.png\",\"0d46504d-9ed3-41d3-ba4c-2e3686090e17\",\"4d790f5a-079d-49ad-ae0d-85b81fb8ebd6\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment for Rent – Mont-Bleu Area | Convenient Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this well-located apartment in the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Mont-Bleu area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering quick access to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"public transportation, grocery stores, and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Perfect for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfortable, practical, and conveniently located living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Refrigerator and stove included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional and comfortable layout for everyday living\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a convenient location with easy access to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"public transit, shops, and everyday amenities\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place to simplify your daily routine!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement à louer – Secteur Mont-Bleu | Emplacement pratique!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce logement idéalement situé dans le secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Mont-Bleu\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant un accès rapide aux \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"autobus, épiceries et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Parfait pour ceux qui recherchent un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"pratique, confortable et bien localisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Réfrigérateur et cuisinière inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition fonctionnelle et agréable au quotidien\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement pratique avec un accès facile aux \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"transports en commun, commerces et commodités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement parfait pour simplifier votre quotidien!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"21-rue-courchesne\",\"21 Rue Courchesne\",\"Rue Courchesne\",\"21\",45.448959,-75.737168,[1677],[1677],\"21 rue Courchesne\",\"1134\",\"/storage/v1/object/public/halfred/buildings/0d46504d-9ed3-41d3-ba4c-2e3686090e17/chatgpt-image-7-mai-2026-143425.png\",\"2e7b45a0-d95d-4938-813b-e5649dda3dac\",\"80999700-5eae-464d-831a-76e2dca51f27\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau in Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in the heart of the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau in Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this beautiful apartment offers a peaceful, convenient, and highly desirable living environment. Close to schools, shops, parks, restaurants, and public transportation, this unit is perfect for a couple, small family, or professional looking for comfort and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 outdoor parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Spacious and bright living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 Quiet and highly sought-after residential neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a prime location with quick access to all essential services while living in a welcoming and vibrant area.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau à Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé au cœur du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau à Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce superbe appartement offre un cadre de vie paisible, pratique et recherché. À proximité des écoles, commerces, parcs, restaurants et du transport en commun, ce logement est parfait pour un couple, une petite famille ou un professionnel à la recherche de confort et de tranquillité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Prises laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement extérieur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Grand espace lumineux et bien aménagé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 Secteur résidentiel calme et très recherché\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement idéal offrant un accès rapide à tous les services essentiels tout en vivant dans un quartier agréable et dynamique.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"41-rue-du-stratus\",\"41 Rue Du Stratus\",\"Rue Du Stratus\",\"41\",45.436131,-75.784434,[1691],[1691],\"41 rue du Stratus \",\"1550\",\"/storage/v1/object/public/halfred/buildings/2e7b45a0-d95d-4938-813b-e5649dda3dac/chatgpt-image-12-mai-2026-130146.png\",\"4f5af977-c033-4ae7-b4d2-a7f166436ca9\",\"0663525f-a8b7-4ecd-af62-94df98f9a39c\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Modern Apartment for Rent in Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a modern, bright, and comfortable living space in a prime Gatineau location! Close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les Promenades Gatineau, Gatineau Hospital, and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this apartment is perfect for young professionals, small families, or semi-retired residents looking for peace and comfort.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ✨ Modern lighting and bright living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏡 Outdoor storage shed for extra space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌳 Private balcony to enjoy the outdoors\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a prime location close to shops, restaurants, services, and public transportation while living in a peaceful and welcoming environment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Superbe appartement moderne à louer à Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Offrez-vous un espace de vie moderne, lumineux et confortable dans un emplacement de choix à Gatineau! Situé à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Promenades Gatineau, de l’Hôpital de Gatineau et de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce logement est parfait pour les jeunes professionnels, petites familles ou semi-retraités recherchant tranquillité et confort.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal toute l’année\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ✨ Luminaires modernes et espace lumineux\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏡 Cabanon extérieur pratique pour rangement supplémentaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌳 Balcon privé pour profiter de l’extérieur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement stratégique près des commerces, restaurants, services et transports tout en vivant dans un environnement calme et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"331-chemin-de-la-savane\",\"331 Chemin De La Savane\",\"331\",45.476793,-75.677116,[1702],[1702],\"/storage/v1/object/public/halfred/buildings/4f5af977-c033-4ae7-b4d2-a7f166436ca9/chatgpt-image-11-mai-2026-144528.png\",\"d9c6dbbf-d98b-40ca-b3ed-d6f927388c93\",\"b62dde39-2d0d-41e0-81ac-fc53e0082e89\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent – Prime Aylmer Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a peaceful and highly desirable area of Aylmer, this beautiful apartment offers comfort and tranquility while being close to all services, schools, bike paths, and the Aylmer Marina.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚴 Just steps from the Pioneers Trail bike path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 Close to Aylmer Marina and Main Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Only 10 minutes from Ottawa and downtown Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Private balcony\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🪵 Engineered wood flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning \u0026 air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔇 Concrete construction between floors for maximum soundproofing and privacy\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a modern and comfortable living space in one of Aylmer’s most sought-after neighborhoods, close to nature and all essential amenities.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique logement à louer – Secteur recherché d’Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un secteur paisible et très recherché d’Aylmer, ce superbe logement vous offre le parfait équilibre entre confort, tranquillité et proximité des services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚲 À deux pas du sentier des Pionniers (piste cyclable)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 À proximité de la marina et de la rue Principale d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 À seulement 10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Près des écoles, commerces, restaurants et services essentiels\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Balcon privé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🪵 Planchers en bois d’ingénierie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔇 Construction en béton entre les étages pour une tranquillité supérieure\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement moderne et lumineux dans l’un des secteurs les plus appréciés d’Aylmer, à proximité de la nature et de toutes les commodités.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"66-impasse-john-roney\",\"66 Impasse John-Roney\",\"Impasse John-Roney\",\"66\",45.40852,-75.846597,[1714],[1714],\"/storage/v1/object/public/halfred/buildings/d9c6dbbf-d98b-40ca-b3ed-d6f927388c93/chatgpt-image-5-juin-2026-161747.png\",\"91a7d0d5-abdf-4321-8a4a-7ee874b031a4\",\"5e0bf78e-ad05-4c2a-8366-abf174d897b6\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in one of Aylmer’s most desirable areas? Discover this beautiful recently built unit located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"50 De la Fabrique Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of comfort, convenience, and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Recent construction with modern finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Private parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright, practical, and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after neighborhood close to shops, services, trails, and everyday essentials.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement moderne dans un secteur recherché d’Aylmer? Découvrez ce superbe appartement récemment construit au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"50 rue de la Fabrique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Construction récente avec finition moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Stationnement privé inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie lumineux, pratique et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier paisible et recherché, à proximité des services, commerces, sentiers et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement idéal pour un quotidien confortable et sans tracas!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"50-rue-de-la-fabrique\",\"50 Rue De La Fabrique\",\"50\",-75.859073,[1725],[1725],\"Muscat 8\",\"/storage/v1/object/public/halfred/buildings/91a7d0d5-abdf-4321-8a4a-7ee874b031a4/chatgpt-image-22-mai-2026-140203.png\",\"16061f36-5949-4e8f-9b90-6c1a50c4bfde\",\"7d30da75-24e9-45ba-8e32-ed5bfa7cf673\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Looking for an appartement to rent close to all amenities?\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"We offer spacious, home located in the Pointe-Gatineau area. The property is just a short walk from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les Promenades Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" shopping centre and \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Lac Leamy Beach\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". With easy access by public transit or car, you'll be only minutes from downtown Gatineau and Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Included:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Heat and electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Stove, refrigerator, washer, and dryer included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ High-speed Internet\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Parking\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Two bathrooms\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking property\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚫 No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"☀️ Tenants must help maintain a quiet and harmonious living environment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 Respect for the house rules is required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact us at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À la recherche d'un appartement à louer près de toutes les commodités? Nous vous offrons des chambres spacieuses situées dans le secteur de Pointe-Gatineau. Se trouve à quelques pas du centre d'achat de Les Promenades et de la plage du Lac Leamy. Facile d’accès en autobus ou en voiture, vous serez à quelques minutes du centre-ville de Gatineau et d’Ottawa!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Chauffage et électricité inclus;\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Poêle, réfrigérateur, Laveuse et sécheuse inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Internet\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Stationnement\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅Deux salles de bain\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" Conditions :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Immeuble non-fumeur;\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚫 Animaux non acceptés;\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"☀️ Contribuer au calme et à l'harmonie dans l'immeuble;\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 Respect du code de vie de l'immeuble;\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez nous au 819-593-3304\\\\\\\"}]}]}\\\"}\",\"10a-rue-rodolphe\",\"10a Rue Rodolphe\",\"Rue Rodolphe\",\"10a\",45.461513,-75.706985,[1740],[1740],\"10A Rue Rodolphe\",\"2200\",\"2000\",\"/storage/v1/object/public/halfred/buildings/16061f36-5949-4e8f-9b90-6c1a50c4bfde/facade.PNG\",\"298dfb14-9b05-4453-b643-326fac520882\",\"c25b4725-7f74-4388-b1ae-98cee745fe1e\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in a peaceful dead-end street in a prime area of Aylmer, just steps from Les Pionniers Trail (bike path) and minutes from everything!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚶‍♂️ 5 min to Aylmer Marina \u0026 main street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 10 min to Ottawa \u0026 downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Unit Features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Balcony\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Wood floors\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Dishwasher available\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Concrete between floors\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Air exchanger \u0026 A/C\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Utilities not included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📦 Appliances available upon request\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required | 1-year lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍141 Impasse John-Roney, Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact Halfred at 819-593-3304\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vivez dans une rue tranquille en cul-de-sac dans un quartier recherché d’Aylmer, à quelques pas du sentier Les Pionniers (piste cyclable) et à proximité de tous les services!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚶‍♂️ À 5 min de la marina et de la rue principale d'Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 À 10 min d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Caractéristiques du logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Balcon\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Plancher en bois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Lave-vaisselle disponible\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Béton entre les étages\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Échangeur d’air \u0026 climatisation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Chien non accepté\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Pas chauffé, ni éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📦 Possibilité de louer avec électroménagers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit requise | Bail minimum d’un an\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 141 Impasse John-Roney, Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez Halfred au 819-593-3304\\\\\\\"}]}]}\\\"}\",\"141-impasse-john-roney\",\"141 Impasse John-Roney\",\"141\",45.409024,-75.846761,[1752],[1752],\"1225\",\"/storage/v1/object/public/halfred/buildings/298dfb14-9b05-4453-b643-326fac520882/57johnroney-(9).jpg\",\"6dea55d4-2d55-4872-a4fa-52d6e61ab2d1\",\"d03d153a-95d7-46e5-a76f-4738c04a5a85\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Bright Apartment for Rent – Gatineau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this charming apartment featuring spacious, bright, and well-designed rooms. The large, functional kitchen offers plenty of space for cooking and storage, while the living area benefits from abundant natural light.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Features:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Large, functional kitchen\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright and spacious rooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable living areas\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Well-maintained apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Convenient Gatineau location\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Close to shops, services, and public transportation\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Mandatory credit check\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 For more information or to schedule a viewing, contact Halfred at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Logement lumineux à louer – Gatineau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce charmant logement offrant des pièces spacieuses, lumineuses et bien aménagées. Sa grande cuisine fonctionnelle propose beaucoup d’espace pour cuisiner et ranger vos effets, tandis que l’aire de vie bénéficie d’une belle luminosité naturelle.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Grande cuisine fonctionnelle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Pièces lumineuses\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espaces de vie confortables\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Logement bien entretenu\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Emplacement pratique à Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• À proximité des commerces, services et transports en commun\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Pour obtenir plus d’informations ou planifier une visite, communiquez avec Halfred au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]}]}\\\"}\",\"123-boulevard-lorrain\",\"123 Boulevard Lorrain\",\"123\",[],[],\"123 boulevard Lorrain\",\"2026-08-07\",\"22241c14-5811-4eae-8714-ff0726c318dc\",\"c9930e8a-847c-45a9-b4b3-0f6912a5315e\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Family Home for Rent – Short-Term Monthly Rental Available!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful family home spread across three floors, offering space, comfort, and tranquility in a desirable neighborhood. 🌿\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Flexible month-to-month rental available\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" – perfect for relocation, temporary stays, or anyone looking for short-term housing.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Property features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 3 bedrooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 3-storey home\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Spacious and well-divided living areas\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Private backyard to enjoy the outdoors\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Bright and well-maintained property\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to shops and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Quick access to major roads and public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Peaceful and sought-after neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a spacious and comfortable home, perfect for a family or anyone looking for extra space and flexibility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Short-term rental available – month-to-month option possible\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Maison spacieuse à louer – Location courte durée disponible!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez cette magnifique maison familiale répartie sur trois étages, offrant espace, confort et tranquillité dans un secteur recherché. 🌿\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Location flexible au mois disponible\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" – idéale pour relocalisation, séjour temporaire ou besoin de logement à court terme.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques de la propriété :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 3 chambres à coucher\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 Maison sur 3 étages\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espaces de vie généreux et bien divisés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Jardin privé pour profiter de l’extérieur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Propriété lumineuse et bien entretenue\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des commerces et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès rapide aux grands axes routiers et transports\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Secteur paisible et recherché\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’une maison spacieuse et confortable parfaite pour une famille ou toute personne recherchant plus d’espace et de flexibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Location courte durée disponible – location au mois possible\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"14-rue-larabie\",\"14 Rue Larabie\",\"Rue Larabie\",45.492922,-75.609248,[1775],[1775],\"2400\",\"2063\",\"/storage/v1/object/public/halfred/buildings/22241c14-5811-4eae-8714-ff0726c318dc/022241c14-5811-4eae-8714-ff0726c318dc.webp\",\"5a9ca168-3b79-4f75-8878-adbc522cdc80\",\"a24a05bc-6500-4d5c-a782-d86d96ba2a73\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent – Plateau Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"semi-basement apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" located in the vibrant and highly sought-after \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Enjoy a prime location close to all essential services, the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Hull Power Center\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", and the popular \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pioneers Trail bike path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚴 Just steps from the Pioneers Trail bike path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌊 Only 10 minutes from Aylmer Marina and Main Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 Just 15 minutes from Ottawa and downtown Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and modern living space in a highly desirable neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A perfect location offering the best of the Plateau lifestyle: close to shops, nature, bike paths, and quick access to Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are from a model unit and may vary from the available apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Superbe appartement à louer – Secteur du Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique appartement situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"semi-sous-sol\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dans le secteur dynamique et recherché du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plateau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Profitez d’un emplacement exceptionnel à proximité de tous les services essentiels, du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Power Center de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ainsi que du célèbre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"sentier des Pionniers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚴 À quelques pas du sentier des Pionniers (piste cyclable)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌊 À seulement 10 minutes de la Marina et de la rue Principale d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 À 15 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace confortable et moderne dans un secteur très recherché\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement parfait offrant le meilleur du Plateau : proximité des commerces, nature, pistes cyclables et accès rapide à Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos sont prises du logement modèle et peuvent différer de l’unité disponible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"36-boulevard-d-amsterdam\",\"36 Boulevard D'amsterdam\",45.432391,-75.807142,[1785],[1785],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/5a9ca168-3b79-4f75-8878-adbc522cdc80/0__5a9ca168-3b79-4f75-8878-adbc522cdc80.webp?version=1bbd7893-8f2a-43f8-b0fd-d5b82f78e1bf\",\"60c62e13-5402-4ccb-b41e-4f7beb13a07a\",\"7b14f31d-ccd6-4e4e-a435-b7d8755394c5\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Experience the Best of Aylmer Living!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Step into an exceptional lifestyle in one of Aylmer’s most sought-after neighborhoods. Ideally located \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"directly across from D’Arcy McGee School\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", just steps from the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pioneers Trail\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes from the marina\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", and \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes to Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this apartment offers the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, convenience, and location\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Modern apartment designed for your comfort:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Private balcony to enjoy beautiful days\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Elegant engineered wood and ceramic flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional kitchen with dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Concrete construction between floors for superior soundproofing\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Air conditioning and air exchanger for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Spacious bathroom with separate tub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 parking space included (option for a second available)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A location that truly stands out:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a vibrant, family-friendly neighborhood close to schools, nature, services, and quick access to Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Non-smoking building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Minimum 1-year lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Vivez le meilleur d’Aylmer dès maintenant!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Offrez-vous un style de vie exceptionnel dans l’un des secteurs les plus recherchés d’Aylmer. Idéalement situé \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"en face de l’école D’Arcy McGee\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à quelques pas du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"sentier des Pionniers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes de la marina\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce logement combine parfaitement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, emplacement et qualité de vie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un appartement moderne pensé pour votre confort :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Superbe balcon privé pour profiter pleinement des belles saisons\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Planchers en bois d’ingénierie et céramique au design élégant\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Cuisine fonctionnelle avec lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Construction en béton entre les étages pour une tranquillité supérieure\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Air climatisé et échangeur d’air pour un confort optimal toute l’année\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Salle de bain complète avec bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 stationnement inclus (option d’un 2e disponible)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement qui fait toute la différence :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier dynamique, familial et à proximité de tout — écoles, nature, services et accès rapide à Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Immeuble non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Enquête de crédit requise\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès aujourd’hui au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite\\\\\\\"}]}]}\\\"}\",\"9-rue-de-liverpool\",\"9 Rue De Liverpool\",45.428727,-75.806386,[1795],[1795],\"/storage/v1/object/public/halfred/buildings/60c62e13-5402-4ccb-b41e-4f7beb13a07a/chatgpt-image-13-mai-2026-155525.png\",\"8de520ad-0f6c-49bc-8053-94bd4e5746d2\",\"5dd7ca56-7c7d-4ec2-bc07-64591b37313d\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"NEW RENTAL PROJECT – 855 Maloney Boulevard, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this brand-new modern rental project located on Maloney Boulevard, offering spacious and stylish apartments designed for comfortable and convenient living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Several units available:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Modern 1-bedroom apartments\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ 2-bedroom apartments with office\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ 3-bedroom apartments with office\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌟 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Included features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Washer and dryer included in the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"underline\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"one bedroom\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love this project:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy modern and bright apartments in a strategic location close to shops, restaurants, grocery stores, essential services, and public transportation.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Quick access to major roads and everything you need for everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"NOUVEAU PROJET LOCATIF – 855 boulevard Maloney, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce tout nouveau projet moderne situé sur le boulevard Maloney, offrant des logements spacieux, élégants et parfaitement conçus pour un mode de vie confortable et pratique.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plusieurs unités disponibles :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ 3 ½ modernes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ 4 ½ avec bureau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ 5 ½ avec bureau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌟 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Laveuse et sécheuse dans le \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"underline\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1 chambre\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez adorer ce projet :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez de logements modernes et lumineux dans un emplacement stratégique, près des commerces, restaurants, épiceries, services essentiels et transports.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Accès rapide aux grands axes routiers et à tous les services nécessaires au quotidien.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour réserver votre visite!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💨 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Plusieurs unités disponibles – faites vite!\\\\\\\"}]}]}\\\"}\",\"855-boulevard-maloney-est\",\"855 Boulevard Maloney Est\",\"855\",45.48613,-75.606174,[1807],[1807],\"518 - 1036\",\"/storage/v1/object/public/halfred/buildings/8de520ad-0f6c-49bc-8053-94bd4e5746d2/855-boul-maloney.jpg\",\"02625045-061c-4e39-b079-5ab018c885fc\",\"8ca7206f-9421-442a-a48d-f0f3d6a9bfea\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"All-Inclusive Apartment – McConnell Street | Comfort \u0026 Peaceful Living!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"move-in ready, all-inclusive apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" in a quiet and desirable area? This beautiful unit on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"McConnell Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" is perfect for a single person or a couple seeking \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, convenience, and a stress-free lifestyle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Heat \u0026 electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" – no extra worries\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📦 Storage shed for extra space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A peaceful and well-maintained environment, ideal for enjoying a simple and comfortable daily life close to services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement tout inclus – Rue McConnell | Confort \u0026 tranquillité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"clé en main\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dans un secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"paisible et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"? Ce superbe appartement situé sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue McConnell\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" est parfait pour une personne seule ou un couple souhaitant allier \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, simplicité et qualité de vie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chauffage et électricité inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" – aucun souci supplémentaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📦 Remise pratique pour du rangement supplémentaire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un environnement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"calme et agréable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", idéal pour profiter d’un quotidien sans tracas, à proximité des services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une opportunité à ne pas manquer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💨 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Disponible – faites vite!\\\\\\\"}]}]}\\\"}\",\"185-chemin-mcconnell\",\"185 Chemin Mcconnell\",\"185\",45.410789,-75.833332,[1819],[1819],\"1958\",\"/storage/v1/object/public/halfred/buildings/02625045-061c-4e39-b079-5ab018c885fc/chatgpt-image-5-mai-2026-160111.png\",\"16fb93ca-c039-4133-b4ac-57e39bdb470b\",\"acba9ca3-48ee-4fb5-a1a0-a09ee11058cb\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful 2-Bedroom Apartment for Rent – Prime Hull Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this bright and spacious \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"2-bedroom apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for workers, students, or small families looking for comfort and convenience in a desirable area of Hull.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Only 9 minutes from downtown Ottawa and the ByWard Market\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🎓 Just steps from Cégep de l’Outaouais\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏫 Only 1 minute from Philémon Wright High School\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📚 Just 2 minutes from Hadley Intermediate School\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Close to grocery stores, restaurants, banks, pharmacies, and more\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ 2 spacious and bright bedrooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Dogs accepted\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Comfortable and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a vibrant and convenient neighborhood with quick access to schools, shops, services, and transportation.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beau logement 2 chambres à louer – Secteur recherché de Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe logement de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"2 chambres à coucher\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", lumineux et bien situé, parfait pour travailleurs, étudiants ou petites familles recherchant confort et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 À seulement 9 minutes du centre-ville d’Ottawa et du Marché By\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🎓 À deux pas du Cégep de l’Outaouais\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏫 À 1 minute de l’école secondaire Philémon Wright\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📚 À 2 minutes de l’école intermédiaire Hadley\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Près des épiceries, restaurants, banques, pharmacies et plus encore\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ 2 chambres spacieuses et bien éclairées\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Cuisinière et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Chiens acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace confortable et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un secteur dynamique et pratique avec un accès rapide aux écoles, commerces, services et transports.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"56-rue-lucien-brault\",\"56 Rue Lucien-Brault\",\"56\",45.462822,-75.749986,[1832],[1832],\"1407\",\"737 - 1000\",\"/storage/v1/object/public/halfred/buildings/16fb93ca-c039-4133-b4ac-57e39bdb470b/chatgpt-image-12-mai-2026-143800.png\",\"d8e54f87-5f29-4e87-8c26-e25f02839900\",\"221bdd2d-88ae-443c-a709-2d588959baea\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"9 Trudeau Street – Beautiful Apartment for Rent!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy comfortable living in a convenient and sought-after neighborhood, close to all essential services! This well-located apartment offers easy access to shopping, restaurants, schools, parks, and public transit.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to shops and everyday services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Restaurants and cafés just minutes away\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Near schools and daycare centers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Located in a peaceful and welcoming neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What This Apartment Offers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Bright and inviting living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍳 Functional kitchen with plenty of storage\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Comfortable and well-maintained unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 Practical and enjoyable living environment\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love It\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy the convenience of living close to everything you need while benefiting from a quiet and comfortable setting.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 for more information or to schedule a visit!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Your next home is waiting for you!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"9 rue Trudeau – Magnifique logement à louer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Offrez-vous un logement confortable dans un secteur pratique et recherché, à proximité de tous les services essentiels! Profitez d’un environnement agréable où tout est à portée de main : commerces, restaurants, écoles, parcs et transport en commun.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À proximité des commerces et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Restaurants et cafés à quelques minutes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Près des écoles et garderies\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile au transport en commun\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Secteur paisible et agréable à vivre\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Espace de vie lumineux et accueillant\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍳 Cuisine fonctionnelle avec beaucoup de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Logement confortable et bien entretenu\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 Cadre de vie pratique et convivial\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement bien situé qui vous permettra de simplifier votre quotidien tout en bénéficiant d’un environnement calme et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred au 819-593-3304 dès aujourd’hui pour obtenir plus d’informations ou planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"9-rue-trudeau\",\"9 Rue Trudeau\",\"Rue Trudeau\",45.446432,-75.736404,[1844],[1844],\"9 Trudeau\",\"/storage/v1/object/public/halfred/buildings/d8e54f87-5f29-4e87-8c26-e25f02839900/chatgpt-image-10-juin-2026-143202.png\",\"2084d539-7995-4539-8ee7-481b532c7880\",\"aec07ca6-d02f-4c9c-b8c4-90b7f0563ba8\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in a bright and convenient apartment ideally located in Gatineau, right across from the Riviera Shopping Center! Enjoy easy access to grocery stores, restaurants, pharmacies, hair salons, a dentist, and an optometry clinic. Just ±15 minutes from Ottawa and only a 2-minute walk to the Rapibus La Gappe station—perfect for daily commuting.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Apartment Features:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Utilities included (heated and lit)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Internet and cable included 📶📺\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Stove and refrigerator available\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 parking spot included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Shared laundry (electronic payment machines coming soon)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Lease Details:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No dogs allowed, no exceptions\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📄 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 For more information or to schedule a visit, contact Halfred: 819-593-3304\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vivez dans un appartement lumineux et pratique, idéalement situé à Gatineau, directement en face du centre commercial Riviera ! Profitez d’un accès rapide à l’épicerie, aux restaurants, à la pharmacie, aux salons de coiffure, au dentiste et à la clinique d’optométrie. À ±15 minutes d’Ottawa et à seulement 2 minutes à pied de la station Rapibus La Gappe — parfait pour les déplacements quotidiens.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques du logement :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Chauffé et éclairé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Internet et câble inclus 📶📺\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Cuisinière et réfrigérateur disponible\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Buanderie commune (machines à paiement électronique bientôt disponibles)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Conditions du bail :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Chiens non acceptés, sans exception\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📄 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Pour plus d’informations ou pour planifier une visite, contactez Halfred : 819-593-3304\\\\\\\"}]}]}\\\"}\",\"1855-rue-saint-louis\",\"1855 Rue Saint-Louis\",\"1855\",45.472014,-75.726223,[1858],[1858],\"1855 rue Saint Louis\",\"979\",\"750 - 850\",\"/storage/v1/object/public/halfred/buildings/2084d539-7995-4539-8ee7-481b532c7880/1875_Rue_Saint-Louis-1.jpg\",\"cb846da3-20fd-446f-9b54-17c395294dd4\",\"0fc4f4e7-86a4-4f76-b5ba-4029e8212832\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment in the Heart of Hull – Prime Location Near UQO!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in the heart of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this apartment is perfect for \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"students, young professionals, or anyone looking for a convenient and accessible lifestyle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Just steps from the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Université du Québec en Outaouais (UQO)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", public transit, and only minutes from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this unit offers the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort and urban living\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📍 Prime location near UQO\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚌 Excellent access to public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Laundry facilities in the building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Practical and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a vibrant neighborhood close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"restaurants, shops, services, and downtown Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect choice for simple and convenient city living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement au cœur de Hull – Emplacement idéal près de l’UQO!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé en plein cœur de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce logement est parfait pour les \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"étudiants, jeunes professionnels ou toute personne recherchant un mode de vie pratique et accessible\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". À quelques pas de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"l’Université du Québec en Outaouais (UQO)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", des arrêts d’autobus et à seulement quelques minutes d’\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce logement offre un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort et vie urbaine\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📍 Emplacement stratégique près de l’UQO\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚌 Quartier très bien desservi par le transport en commun\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Accès à une buanderie dans l’immeuble\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace pratique et fonctionnel pour le quotidien\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un secteur dynamique à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"restaurants, commerces, services et du centre-ville d’Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le parfait choix pour une vie urbaine simple et pratique!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non permis\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"}]}]}\\\"}\",\"240-boulevard-alexandre-tache\",\"240 Boulevard Alexandre-Taché\",\"Boulevard Alexandre-Taché\",\"240\",45.423309,-75.736267,[1872],[1872],\"1025\",56,\"/storage/v1/object/public/halfred/buildings/cb846da3-20fd-446f-9b54-17c395294dd4/chatgpt-image-11-mai-2026-121541.png\",\"6d3e5fd8-7816-4eda-b5c5-012731841a2a\",\"a58f62be-8bbe-468b-a08b-2751b9b41abe\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment for Rent – Maisonneuve Boulevard | Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this charming apartment ideally located on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Maisonneuve Boulevard\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", near the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Alexandra Bridge\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes from the ByWard Market and Rue du Portage\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Enjoy a strategic location with quick access to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Excellent public transportation access:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Bus routes \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"38, 31, 33, 35, 36, and 371\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" nearby.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Ideal location for enjoying urban living\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live just minutes from Ottawa and downtown while enjoying a convenient and vibrant neighborhood.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement à louer – Boulevard Maisonneuve | Emplacement exceptionnel!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce charmant appartement idéalement situé sur le \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"boulevard Maisonneuve\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"pont Alexandra\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes du Marché By et de la rue Du Portage\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Profitez d’un emplacement stratégique offrant un accès rapide à \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" : épiceries, restaurants, banques, pharmacies et plus encore.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Accès facile au transport en commun :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Lignes d’autobus \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"38, 31, 33, 35, 36 et 371\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" à proximité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie pratique et confortable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Emplacement idéal pour profiter de la vie urbaine\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vivez à quelques minutes d’Ottawa et du centre-ville tout en profitant d’un secteur pratique et dynamique.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"228-boulevard-maisonneuve\",\"228 Boulevard Maisonneuve\",\"228\",45.434035,-75.712166,[1883],[1883],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/6d3e5fd8-7816-4eda-b5c5-012731841a2a/facade.JPG?version=c0cda6e9-dd03-403c-b0a7-c8af71d04e7d\",\"949ad25b-749d-46b0-936c-c961d824b43a\",\"e27ea20a-52af-40ed-83f6-afd39e469555\",\"1802-rue-schryer\",\"1802 Rue Schryer\",\"1802\",45.503392,-75.561874,[1893],[1893],\"/storage/v1/object/public/halfred/buildings/949ad25b-749d-46b0-936c-c961d824b43a/facade.JPG\",\"3e1c14a0-b7c5-476e-8bc6-6f480065a787\",\"4e04fdd2-ebfa-4edf-8315-c30a99a97435\",\"1770-rue-schryer\",\"1770 Rue Schryer\",\"1770\",45.504034,-75.561197,[1903],[1903],\"/storage/v1/object/public/halfred/buildings/3e1c14a0-b7c5-476e-8bc6-6f480065a787/schryer-facade.PNG\",\"099f55a3-21fd-4082-bc67-c15de816bad5\",\"860071af-8d65-456e-9307-22d8fdc2b745\",\"1794-rue-schryer\",\"1794 Rue Schryer\",\"1794\",45.503418,-75.562243,[1915],[1915],\"2025-09-01\",\"1200 - 1250\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/099f55a3-21fd-4082-bc67-c15de816bad5/0__099f55a3-21fd-4082-bc67-c15de816bad5.webp?version=bf33a360-c0cc-40c5-878a-da40ec81c525\",\"06239c3c-d070-439b-9003-368a2fc674d7\",\"124e9753-56bb-4404-a1c6-8e3ab8e51ae7\",\"183-chemin-mcconnell\",\"183 chemin McConnell \",\"chemin McConnell \",\"183\",45.41076,-75.833497,[1926],[1926],\"/storage/v1/object/public/halfred/buildings/06239c3c-d070-439b-9003-368a2fc674d7/chatgpt-image-5-mai-2026-160111.png\",\"125b3c0b-1e7a-4019-af6f-d34941fc3a98\",\"19573288-1421-45df-9cae-e1be011b5a18\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Condo-Style Apartment for Rent – Comfort \u0026 Peaceful Living!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning condo-style apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and desirable residential neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". The perfect blend of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modern living, comfort, and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger for improved air quality\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Private balcony to enjoy sunny days\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Additional option:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment while staying close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"all everyday services and conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement de style condo à louer – Confort \u0026 tranquillité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement de style condo situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier résidentiel calme et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, restaurants, banques, pharmacies et de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modernité, confort et qualité de vie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air pour une meilleure qualité de l’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal toute l’année\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Balcon privé pour profiter des belles journées\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie moderne et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Option supplémentaire :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible tout en restant près de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tous les services et commodités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement parfait pour un quotidien confortable et sans compromis!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"215-rue-de-la-fregate\",\"215 Rue De La Frégate\",45.499648,-75.591057,[1938],[1938],\"215 Frégate\",\"1513\",\"/storage/v1/object/public/halfred/buildings/125b3c0b-1e7a-4019-af6f-d34941fc3a98/0002-0002.jpg\",\"24308035-7b33-4697-b021-7bab3c82c002\",\"98e8a782-68a2-4874-bcc6-2386f2d1888f\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful 2-Bedroom Apartment for Rent – Templeton Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern, comfortable, and well-located apartment? Look no further! ✨ This beautiful 2-bedroom unit offers an ideal location close to Lac-Beauchamp Park, public transit, and all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Just steps from the Lac-Beauchamp Park trails\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Close to the Labrosse bus station\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Near shops, restaurants, and everyday services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Quick access to downtown Gatineau and Ottawa\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Perfect for:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💼 Young professionals\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"👨‍👩‍👧 Small families\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Semi-retired individuals looking for a peaceful environment\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included (option for a second parking space at an additional cost)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and modern living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed under any circumstances\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement 2 chambres à louer – Secteur Templeton!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un appartement moderne, confortable et bien situé? Ne cherchez plus! ✨ Ce superbe logement de 2 chambres vous offre un emplacement idéal à proximité du Parc du Lac-Beauchamp, des transports en commun et de tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement de choix :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 À quelques pas des sentiers du Parc du Lac-Beauchamp\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Près de la station d’autobus Labrosse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À proximité des commerces, restaurants et services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Accès rapide au centre-ville de Gatineau et d’Ottawa\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Parfait pour :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💼 Jeunes professionnels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"👨‍👩‍👧 Petites familles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Personnes à la semi-retraite recherchant la tranquillité\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus (possibilité d’un 2e avec frais supplémentaires)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace lumineux et moderne\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"69-rue-dupuis\",\"69 Rue Dupuis\",\"Rue Dupuis\",\"69\",45.490373,-75.606833,[1953],[1953],\"1569\",\"1170\",\"1711\",\"/storage/v1/object/public/halfred/buildings/24308035-7b33-4697-b021-7bab3c82c002/chatgpt-image-5-juin-2026-151558.png\",\"d251872b-9f75-48b5-a34f-173c80185a42\",\"21cfcdb4-84c9-42c1-ae14-42eea860e878\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"FOR RENT – 226 Amsterdam Boulevard, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Discover this beautiful\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\" condo-style apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" located in one of the Plateau’s most desirable neighborhoods, close to all essential services and just minutes from the stunning \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Gatineau Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Close to Gatineau Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Near grocery stores, restaurants, shopping, and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Located in a sought-after family-friendly neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Only 10 minutes from Ottawa and downtown Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What This Unit Offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Separate bathtub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"➕ Option for a second parking space ($)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Modern, bright, and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love It:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy living in a peaceful neighborhood with quick access to nature, services, and major roadways.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are from a model unit and may vary from the available apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À LOUER – 226 boulevard d’Amsterdam, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Découvrez ce magnifique condo situé dans un secteur très recherché du Plateau, à proximité de tous les services et à quelques minutes seulement du magnifique \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Parc de la Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 À proximité du Parc de la Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des commerces, restaurants, épiceries et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Secteur familial et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 À seulement 10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"➕ Possibilité d’un 2e stationnement ($)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Espace moderne, lumineux et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier paisible offrant un accès rapide à la nature, aux services et aux principaux axes routiers.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos proviennent d’un logement modèle et peuvent différer de l’unité disponible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred au 819-593-3304 dès aujourd’hui pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"226-boulevard-d-amsterdam\",\"226 Boulevard D'amsterdam\",\"226\",45.42939,-75.813983,[1967],[1967],\"226 Boul. D'Amsterdam\",\"1647\",\"1796\",\"/storage/v1/object/public/halfred/buildings/d251872b-9f75-48b5-a34f-173c80185a42/4f16b0f5-da70-4fb3-b3e6-98d3493f87d7.png\",\"dc0526fb-178d-498f-9807-59deec6ff1ad\",\"6d3ed5c4-5048-402a-9e95-6ef0506a99e3\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartments for Rent – Prime Aylmer Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a beautiful and highly desirable area of Aylmer, directly across from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"D’Arcy McGee School\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", these stunning apartments offer a peaceful lifestyle while remaining close to all essential services and amenities.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Exceptional location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚴‍♂️ Just steps from the Pioneers Trail bike path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 Only 5 minutes from Aylmer Marina and Main Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Just 10 minutes from Ottawa and downtown Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What these units offer:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Private balcony to enjoy sunny days\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🪵 Engineered wood and ceramic flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔇 Concrete construction between floors for excellent soundproofing\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger and air conditioning for optimal comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Separate bathtub and shower in 2-bedroom units\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Combined bathtub/shower in 1-bedroom and 3-bedroom units\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Parking included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love them:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy modern, comfortable, and convenient living in one of Aylmer’s most sought-after neighborhoods.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking units\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐕 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📑 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifiques appartements à louer – Secteur recherché d’Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situés dans un superbe secteur d’Aylmer, directement en face de l’école \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"D’Arcy McGee\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ces magnifiques logements offrent un environnement paisible tout en étant près de toutes les commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚴‍♂️ À deux pas du Sentier des Pionniers (piste cyclable)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 À seulement 5 minutes de la marina et de la rue Principale d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 À 10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offrent les logements :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Balcon privé pour profiter des belles journées\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🪵 Planchers en bois d’ingénierie et céramique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔇 Béton entre les étages pour une excellente insonorisation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air et climatisation pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Bain et douche séparés dans les unités 2 chambres\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Bain/douche combinés dans les unités 1 et 3 chambres\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez les aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un cadre de vie moderne, confortable et pratique dans l’un des secteurs les plus recherchés d’Aylmer.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logements non-fumeurs\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐕 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📑 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"614-boulevard-du-plateau\",\"614 Boulevard Du Plateau\",\"Boulevard Du Plateau\",\"614\",45.432182,[1979],[1979],\"1145\",\"/storage/v1/object/public/halfred/buildings/dc0526fb-178d-498f-9807-59deec6ff1ad/955katimavik-19.jpg\",\"987fe064-b0ec-409e-b759-49c31cdf7268\",\"acb4bb09-3ea4-4420-bcbe-9c661f93aee4\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"heading\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null,\\\\\\\"level\\\\\\\":3},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"BEAUTIFUL APARTMENT FOR RENT – 194 HENRI-MATISSE STREET\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Discover this modern apartment located in a quiet neighborhood, just \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1 minute from Highway 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" and close to all essential amenities, including grocery stores, banks, gas stations, Dollarama, parks, and more!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ 1 outdoor parking space included 🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"(Second parking space available for $25/month)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Dishwasher included 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"(in 2-bedroom and 3-bedroom units)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Separate bathtub and shower 🛁🚿\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Granite countertops ✨\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air conditioning ❄️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Washer and dryer hookups 🧺\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Hardwood-style and ceramic flooring 🏡\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air exchanger 🌬️\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location:\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Just 1 minute from Highway 50\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Close to grocery stores, banks, restaurants, shopping, and other essential services\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Near parks and recreational areas\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental Conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Heat and electricity not included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today to schedule a viewing!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"heading\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null,\\\\\\\"level\\\\\\\":3},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"SUPERBE APPARTEMENT À LOUER – 194 RUE HENRI-MATISSE\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Découvrez un appartement moderne situé dans un secteur paisible, à seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1 minute de l'autoroute 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et à proximité de toutes les commodités : épiceries, banques, stations-service, Dollarama, parcs et bien plus encore!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ 1 stationnement inclus 🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"(2ᵉ stationnement disponible pour 25 $/mois)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Lave-vaisselle inclus 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"(dans les logements de 2 et 3 chambres)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Bain et douche séparés 🛁🚿\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Comptoirs en granite ✨\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Air climatisé ❄️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Entrées laveuse/sécheuse 🧺\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Planchers en bois flottant et céramique 🏡\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Échangeur d'air 🌬️\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"bulletList\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À 1 minute de l'autoroute 50\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Près des épiceries, banques, restaurants et commerces\\\\\\\"}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"listItem\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À proximité des parcs et de tous les services essentiels\\\\\\\"}]}]}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred dès aujourd'hui pour planifier une visite !\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]}]}\\\"}\",\"194-rue-henri-matisse\",\"194 Rue Henri-Matisse\",\"Rue Henri-Matisse\",\"194\",45.503121,-75.612381,[1993],[1993],\"194 rue Henri-Matisse\",\"1850\",\"/storage/v1/object/public/halfred/buildings/987fe064-b0ec-409e-b759-49c31cdf7268/chatgpt-image-7-juil-2026-112401.png\",\"4701216f-94f1-49a3-ab92-9e7adb41e97e\",\"0d1b1741-6328-457e-bf96-32754659286f\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful 2-Bedroom Apartment for Rent – Desirable Aylmer Neighborhood!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy the comfort of this beautiful \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"2-bedroom apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" located in one of Aylmer’s most sought-after and peaceful neighborhoods, close to all essential services!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to grocery stores and shopping\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Near schools\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚴 Easy access to trails and bike paths\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 Just minutes from the Aylmer Marina\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Convenient access to public transportation\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What This Unit Offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 closed bedrooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Washer and dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Wall-mounted air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and well-designed living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Quiet and welcoming neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love It:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a comfortable home in a desirable area that offers the perfect balance between tranquility and convenience.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 for more information or to schedule a visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique 4 ½ à louer – Secteur recherché d’Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez du confort d’un superbe logement de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"2 chambres\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" situé dans un quartier paisible et recherché d’Aylmer, à proximité de tous les services essentiels!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des épiceries et commerces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 À proximité des écoles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚴 Accès facile aux sentiers et pistes cyclables\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌊 À quelques minutes de la marina d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Transport en commun facilement accessible\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 chambres fermées\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Prise laveuse et sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé mural\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace de vie lumineux et bien aménagé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Secteur calme et agréable à vivre\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un logement confortable dans un quartier recherché offrant un parfait équilibre entre tranquillité et proximité des services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred au 819-593-3304 dès aujourd’hui pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔑✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une belle opportunité à ne pas manquer!\\\\\\\"}]}]}\\\"}\",\"222-boulevard-d-amsterdam\",\"222 Boulevard D'amsterdam\",\"222\",45.429506,-75.814071,[2005],[2005],\"1554\",\"/storage/v1/object/public/halfred/buildings/4701216f-94f1-49a3-ab92-9e7adb41e97e/chatgpt-image-12-juin-2026-103813.png\",\"37dee97a-cb92-4205-afc4-12b81c8d4218\",\"190b161c-5133-4de1-a6ce-86bd96370a85\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"FOR RENT – Beautiful Apartment at 30 Matapédia Street, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this well-located apartment in a convenient and desirable area of Gatineau, perfect for students, young professionals, or small families looking for a comfortable and practical living space.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Close to Vérendrye and Gréber streets\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Quick access to Highway 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Only 5 minutes from Cégep de l’Outaouais (Félix-Leclerc campus)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Less than 5 minutes from Les Promenades Gatineau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Laundry facilities in the building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A perfect location close to shops, restaurants, services, and public transportation for easy everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À LOUER – Beau logement au 30 rue Matapédia, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce logement idéalement situé dans un secteur pratique et recherché de Gatineau, parfait pour les étudiants, jeunes professionnels ou petites familles à la recherche d’un espace confortable et bien localisé.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement stratégique :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Près des rues Vérendrye et Gréber\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Accès rapide à l’autoroute 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 À seulement 5 minutes du Cégep de l’Outaouais (pavillon Félix-Leclerc)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Moins de 5 minutes des Promenades Gatineau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Buanderie dans l’immeuble\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie pratique et confortable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement idéal près des services, commerces, restaurants et transports pour un quotidien simple et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier une visite!\\\\\\\"}]}]}\\\"}\",\"30-rue-de-matapedia\",\"30 Rue De Matapédia\",\"30\",45.483178,-75.704054,[2016],[2016],\"/storage/v1/object/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png\",\"95357dba-82da-4548-99ae-5ce07fb66ea8\",\"6b463947-0139-4ada-8f92-6a8df73cb375\",\"227-rue-de-la-fregate\",\"227 Rue De La Frégate\",\"227\",45.499523,-75.591607,[2027],[2027],\"1536\",\"/storage/v1/object/public/halfred/buildings/95357dba-82da-4548-99ae-5ce07fb66ea8/0001-0001.jpg\",\"7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14\",\"56737503-2d3b-469c-9882-abea28fe3e40\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent – 190 Henri-Matisse Street | Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"new and peaceful neighborhood in Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", on \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Henri-Matisse Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Lorrain Boulevard\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" and only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1 minute from Highway 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Enjoy a convenient location near \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" including grocery stores, banks, gas stations, Dollarama, as well as \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Raymond-Madore Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" and \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Lac-Beauchamp Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A modern unit that stands out:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Spacious and functional living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Separate bathtub and shower for added comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🪨 Elegant granite countertops\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"The perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, modern living, and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" in a highly desirable area.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement à louer – 190 rue Henri-Matisse | Secteur recherché!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe logement situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nouveau quartier paisible de Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", sur la \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"rue Henri-Matisse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"boulevard Lorrain\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et à seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1 minute de l’autoroute 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Profitez d’un emplacement idéal près de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" : épicerie, banque, station-service, Dollarama, ainsi que du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"parc Raymond-Madore\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"parc du Lac-Beauchamp\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement moderne qui se démarque :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie spacieux et bien aménagé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 Bain et douche séparés pour plus de confort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🪨 Comptoirs en granite élégants\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Entrées laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité, modernité et accessibilité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", dans un secteur en forte demande.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens interdits\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"190-rue-henri-matisse\",\"190 Rue Henri-Matisse\",\"190\",45.503035,-75.61233,[2040],[2040],\"1443\",\"1575\",\"/storage/v1/object/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png\",\"141403da-f50d-40f5-8023-b4ca3d1991eb\",\"78b9877e-8dfa-412f-9dc5-bcbfbe05f491\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Elevate Your Lifestyle in Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in one of Aylmer’s most desirable neighborhoods and enjoy a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modern apartment designed for comfort and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Perfectly located near \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and everyday essentials\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this unit offers a seamless lifestyle just minutes from everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A modern space that stands out:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 9-foot ceilings creating a bright, open, and airy feel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Stylish bathroom with separate bathtub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Air conditioning and air exchanger for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Dishwasher included for added convenience\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Included \u0026 options:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Storage shed available for rent (subject to availability)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful, well-connected neighborhood that offers both \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquility and easy access to services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"—the perfect balance for comfortable living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Smoke-free apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Please note: Photos are from a model unit and may vary.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss this opportunity!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to book your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Vivez le meilleur d’Aylmer dès aujourd’hui!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans l’un des quartiers les plus recherchés d’Aylmer, ce logement moderne vous offre un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"cadre de vie exceptionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité immédiate de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" : épiceries, restaurants, banques, pharmacies et bien plus encore. Un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, tranquillité et accessibilité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un espace moderne qui se démarque :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Plafonds de 9 pieds pour une ambiance lumineuse et aérée\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Salle de bain élégante avec bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Air climatisé et échangeur d’air pour un confort en toute saison\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Cuisine pratique avec lave-vaisselle inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Inclus \u0026 options :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Possibilité de louer un cabanon (selon disponibilité)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible tout en restant à quelques minutes de tout — idéal pour simplifier votre quotidien sans compromis.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions de location :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Immeuble non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Enquête de crédit requise\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À noter : les photos sont celles du logement modèle et peuvent différer.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une opportunité à ne pas manquer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"100-rue-du-maquis\",\"100 Rue Du Maquis\",\"100\",45.41144,-75.838097,[2055],[2055],\"1713\",\"1000 - 1270\",16,\"1868\",\"/storage/v1/object/public/halfred/buildings/141403da-f50d-40f5-8023-b4ca3d1991eb/maquis-ete.png\",\"aa08deab-4cb1-49b6-98fb-ad9cde3293b4\",\"82cabf34-6318-412b-9a10-8cc1c779c787\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥💰 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"SPECIAL PROMOTION – $300 OFF!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 💰🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🎉 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Sign your lease by July 15th and receive $300 OFF your first month’s rent!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🎉\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful 2-Bedroom Apartment for Rent!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in a great location? This beautiful 2-bedroom unit offers the perfect living environment just steps from the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Lac-Beauchamp Park trails\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", near the Labrosse bus station and all essential services. Whether you travel by car or public transit, you'll be only minutes from downtown Gatineau and Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Perfect for:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 Young professionals\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"👨‍👩‍👧 Small families\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"👵 Semi-retired individuals looking for peace and quiet\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What This Unit Offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included (option for a second parking space available)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright, modern, and comfortable living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why You'll Love It:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Close to Lac-Beauchamp Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Near public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to shopping and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Quick access to downtown Gatineau and Ottawa\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed under any circumstances\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contact Halfred today at 819-593-3304 for more information or to schedule a visit!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚨 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Take advantage of the $300 move-in promotion before July 15th!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🚨\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥💰 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"PROMOTION SPÉCIALE – 300$ DE RABAIS!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 💰🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🎉 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Signez votre bail d’ici le 15 juillet et obtenez 300$ de rabais sur votre premier mois de loyer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🎉\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique logement 2 chambres à louer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨🏡\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À la recherche d’un appartement moderne et bien situé? Ce superbe logement vous offre un cadre de vie idéal à quelques pas du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"sentier du Parc du Lac-Beauchamp\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", près de la station d’autobus Labrosse et de tous les services essentiels. Que ce soit en voiture ou en transport en commun, vous serez à seulement quelques minutes du centre-ville de Gatineau et d’Ottawa.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Parfait pour :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 Jeunes professionnels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"👨‍👩‍👧 Petites familles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"👵 Personnes à la semi-retraite recherchant la tranquillité\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus (possibilité d’un 2e avec frais supplémentaires)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace moderne, lumineux et confortable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Près du Parc du Lac-Beauchamp\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 À proximité du transport en commun\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près des commerces et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Accès rapide à Gatineau et Ottawa\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Animaux non acceptés sous aucune condition\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit requise\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum d’un an\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contactez Halfred dès maintenant au 819-593-3304 pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚨 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Profitez de la promotion de 300$ avant le 15 juillet!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🚨\\\\\\\"}]}]}\\\"}\",\"63-rue-dupuis\",\"63 Rue Dupuis\",\"63\",45.490094,-75.606804,[2069],[2069],\"Oasis\",\"1700\",\"1725\",\"/storage/v1/object/public/halfred/buildings/aa08deab-4cb1-49b6-98fb-ad9cde3293b4/1.png\",\"3d717fcf-a310-4287-84b3-ea55fa811d82\",\"59703bc6-2e9f-490a-91bf-955c47fc773a\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Comfort, peace of mind, and a prime location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this charming apartment ideally located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet, safe, and highly sought-after area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Perfect for a single person or a couple, this unit offers a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"bright, functional, and comfortable living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" designed for everyday ease.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A space designed for your lifestyle:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright and well-designed apartment layout\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional and comfortable living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 outdoor parking space included 🚗\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Located in a peaceful and well-maintained neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A location that makes life easier:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy close proximity to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"shops, essential services, and public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", making your daily routine simple and convenient.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss this opportunity!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Confort, tranquillité et emplacement idéal réunis!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce charmant logement parfaitement situé dans un secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"calme, sécuritaire et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Idéal pour une personne seule ou un couple, cet appartement offre un environnement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"pratique, lumineux et agréable à vivre au quotidien\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un espace pensé pour votre bien-être :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Appartement lumineux avec une disposition fonctionnelle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie bien optimisé et confortable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 stationnement extérieur inclus 🚗\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Immeuble situé dans un quartier paisible\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement stratégique :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’une proximité immédiate avec \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"les commerces, services essentiels et transports\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", facilitant votre quotidien.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions de location :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Aucun animal accepté\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Immeuble non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une opportunité à ne pas manquer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"110-impasse-de-lorraine\",\"110 Impasse De Lorraine\",\"Impasse De Lorraine\",\"110\",\"Angers\",45.523703,-75.494222,[2084],[2084],\"2026-03-01\",\"1239\",\"/storage/v1/object/public/halfred/buildings/3d717fcf-a310-4287-84b3-ea55fa811d82/0001-0001.jpg\",\"2d0a533c-9260-4068-8808-39525511541a\",\"1aae1a22-e655-49eb-b187-00da94977e96\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Condo-Style Apartment for Rent!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful condo-style apartment located in a peaceful and desirable residential neighborhood, perfect for anyone looking for comfort, tranquility, and easy access to essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Close to grocery stores, restaurants, banks, pharmacies, and more\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Easy access to transportation and everyday conveniences\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 Modern ceramic flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 outdoor parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Bright and comfortable living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment while staying close to everything you need for everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📜 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Superbe logement style condo à louer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique logement de style condo situé dans un quartier résidentiel calme et recherché, parfait pour ceux qui recherchent confort, tranquillité et proximité des services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À proximité des épiceries, restaurants, banques, pharmacies et plus encore\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès facile aux transports et commodités essentielles\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Prises laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 Planchers de céramique modernes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement extérieur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Espace lumineux et confortable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible tout en restant près de tout ce dont vous avez besoin au quotidien.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📜 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"90-rue-du-campagnard\",\"90 Rue Du Campagnard\",\"90\",45.502454,-75.5903,[2097],[2097],\"2025-10-01\",\"1188\",\"/storage/v1/object/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png\",\"c491ff78-a75c-4b75-bb15-0fd3de7e421c\",\"88c0078c-5189-489a-8e6a-bf21f6202f1c\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Modern Apartment for Rent – Quiet \u0026 Desirable Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"peaceful and sought-after neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modern, spacious, and comfortable living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 2 bathrooms for added comfort and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern kitchen with plenty of storage space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Bright living room perfect for relaxing or entertaining\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a quiet environment while staying close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"essential services and everyday conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Designed for practical and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement moderne à louer – Secteur calme et recherché!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier paisible et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour ceux qui recherchent un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"moderne, spacieux et confortable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛁 2 salles de bain pour plus de confort et de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Cuisine moderne avec beaucoup de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Salon lumineux idéal pour relaxer ou recevoir\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement calme tout en étant à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services essentiels et commodités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement pensé pour un quotidien pratique et sans compromis!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💨 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Disponible – faites vite!\\\\\\\"}]}]}\\\"}\",\"213-rue-du-piree\",\"213 Rue Du Pirée\",\"213\",45.435165,-75.814442,[2111],[2111],\"213 Rue Piree\",\"2335\",\"2475\",\"/storage/v1/object/public/halfred/buildings/c491ff78-a75c-4b75-bb15-0fd3de7e421c/213_rue_piree.PNG\",\"eb74426f-210b-4371-a1df-7158f32e6901\",\"0c9534ba-6ae8-45e3-96a5-a6f965efd41d\",\"{\\\"en\\\":\\\"Discover this brand-new building offering modern, spacious, and bright units in a desirable area of Gatineau.\\\\n\\\\n✨ 9-foot ceilings in every unit\\\\nEnjoy impressive ceiling height that enhances natural light and creates an open, airy feel throughout.\\\\n\\\\n🔹 Available Units:\\\\n\\\\n🏢 Two (2) One-Bedroom Units\\\\n• 604 sq. ft.\\\\n• Modern, functional layout\\\\n• Ideal for professionals or single occupants\\\\n\\\\n🏠 Ground Floor Unit\\\\n• 1,160 sq. ft.\\\\n• Large open-concept living space\\\\n• Perfect for those looking for extra comfort and space\\\\n\\\\n🏡 Upper Floor Unit\\\\n• 1,148 sq. ft.\\\\n• Bright and spacious\\\\n• Great layout for couples or small families\\\\n\\\\n🌟 Highlights:\\\\n\\\\n• Brand-new construction\\\\n• Modern finishes\\\\n• Optimized layouts\\\\n• Quiet and accessible neighborhood\\\\n\\\\nClose to services, shops, and main roads.\\\\n\\\\n📞 Contact Halfred today for more information or to schedule a visit.\\\\n\\\",\\\"fr\\\":\\\"Découvrez un immeuble neuf offrant des logements modernes, spacieux et lumineux dans un secteur recherché de Gatineau.\\\\n\\\\n✨ Plafonds de 9 pieds dans tous les logements\\\\nProfitez d’une hauteur impressionnante qui maximise la lumière naturelle et donne une sensation d’espace exceptionnelle.\\\\n\\\\n🔹 Logements disponibles :\\\\n\\\\n🏢 2 x logements 1 chambre\\\\n• 604 pi²\\\\n• Concept moderne et fonctionnel\\\\n• Idéal pour professionnel ou personne seule\\\\n\\\\n🏠 Unité au RDC\\\\n• 1 160 pi²\\\\n• Grand espace de vie ouvert\\\\n• Parfait pour ceux qui recherchent confort et espace\\\\n\\\\n🏡 Unité à l’étage\\\\n• 1 148 pi²\\\\n• Lumineux et spacieux\\\\n• Configuration idéale pour petite famille ou couple\\\\n\\\\n🌟 Points forts :\\\\n\\\\n• Construction neuve\\\\n• Finitions modernes\\\\n• Espaces optimisés\\\\n• Secteur tranquille et accessible\\\\n\\\\nÀ proximité des services, commerces et axes routiers.\\\\n\\\\n📞 Contactez Halfred dès maintenant pour plus d’informations ou pour planifier une visite.\\\\n\\\\n\\\\n** PHOTOS A VENIR**\\\"}\",\"981-rue-georges\",\"981 Rue Georges\",\"Rue Georges\",\"981\",45.566694,-75.42458,[2124],[2124],\"604 - 1160\",\"/storage/v1/object/public/halfred/buildings/eb74426f-210b-4371-a1df-7158f32e6901/geminigeneratedimage27b10e27b10e27b1.png\",\"1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4\",\"96b83814-c72e-43ba-b488-158e03db9c3d\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Hull Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a large apartment located in one of Hull’s most desirable areas, just steps from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Jacques-Cartier Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Experience the perfect balance between \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature and city living\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", with easy access to green spaces, events, and nearby services—without the hassle of Maisonneuve traffic.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Spacious and functional living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Free laundry in the building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Practical layout for comfortable everyday living\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pets allowed (cats \u0026 dogs)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A prime location that lets you enjoy the park, downtown, and all amenities just minutes away.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel à Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un spacieux appartement situé dans l’un des secteurs les plus recherchés de Hull, à quelques pas du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"parc Jacques-Cartier\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Vivez à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"espaces verts, événements et services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", tout en évitant le trafic du boulevard Maisonneuve — un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature et vie urbaine\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Grand espace de vie confortable et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Poêle et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Buanderie gratuite dans l’immeuble\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition idéale pour un quotidien pratique\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Animaux acceptés (chats et chiens)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement de choix qui vous permet de profiter du parc, des services et du centre-ville \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"à quelques minutes seulement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une opportunité à ne pas manquer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"145-rue-champlain\",\"145 Rue Champlain\",\"145\",45.430006,-75.712391,[2137],[2137],\"2025-12-17\",\"650 - 700\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4/0__1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4.webp?version=b1763f35-5f0d-4bef-8e92-43af0eb86f36\",\"aa767c12-90aa-40bb-80a4-2000d95576d5\",\"0a3ab442-83d7-4889-a8e4-254c85b0aeff\",\"30-boulevard-d-amsterdam\",\"30 Boulevard D'amsterdam\",45.432126,-75.807113,[2148],[2148],\"30 Boul. Amsterdam\",\"1490\",\"/storage/v1/object/public/halfred/buildings/aa767c12-90aa-40bb-80a4-2000d95576d5/chatgpt-image-11-mai-2026-134243.png\",\"91b98fd4-f93a-4e2a-a076-e3ea5fe4351e\",\"93641118-d1ef-49b5-b21a-24436e465bcc\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Recently Built Modern Apartment – Templeton Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful modern apartment located in the desirable \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Templeton area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of tranquility, comfort, and convenience. 🌿\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚶 Just steps from the Lac-Beauchamp Park trails\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Close to the Labrosse bus station\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Near all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Quick access to downtown Gatineau and Ottawa\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"This beautiful 2-bedroom unit includes:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💻 Internet included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included (option for a second $$)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥💡 Heat \u0026 electricity included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Perfect for young professionals, small families, or semi-retired residents looking for a peaceful environment while staying close to the city.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Construction récente à louer – Secteur Templeton!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce magnifique logement moderne situé dans le secteur recherché de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Templeton\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre tranquillité, confort et accessibilité. 🌿\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚶 À quelques pas du sentier du Parc du Lac-Beauchamp\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Tout près de la station d’autobus Labrosse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ À proximité de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌆 Accès rapide au centre-ville de Gatineau et d’Ottawa\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce superbe logement 2 chambres inclut :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ lave-vaiselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💻 Internet inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus (possibilité d’un 2e $$)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥💡 Chauffé et éclairé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Parfait pour jeunes professionnels, petites familles ou semi-retraités recherchant un environnement calme tout en restant près de la ville.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"67-rue-dupuis\",\"67 Rue Dupuis\",\"67\",45.490309,-75.606831,[2160],[2160],\"1917\",\"/storage/v1/object/public/halfred/buildings/91b98fd4-f93a-4e2a-a076-e3ea5fe4351e/chatgpt-image-24-avr-2026-103353.png\",\"077ef07d-50bf-47f6-ba57-2d3f4b773669\",\"1a0e3ca4-7e45-41c7-be5c-73b06f2cd51f\",\"11-rue-de-liverpool\",\"11 Rue De Liverpool\",45.428731,-75.806512,[2170],[2170],\"1605\",\"/storage/v1/object/public/halfred/buildings/077ef07d-50bf-47f6-ba57-2d3f4b773669/chatgpt-image-30-avr-2026-154307.png\",\"44bba3b4-67a5-4fc3-9d3e-5c71ad2e9a69\",\"c6a3f33d-17df-4b8a-9c41-b99cc19f8c46\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful 2-Bedroom Apartment for Rent!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful bright apartment located in a peaceful building, perfect for anyone looking for comfort, space, and convenience.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ Two spacious bedrooms, ideal for a family, couple, or home office\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Modern bathroom with bathtub for relaxing moments\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Functional kitchen with plenty of storage space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and open living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Private balcony to enjoy sunny days\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a quiet environment while being close to grocery stores, schools, parks, restaurants, and public transportation. Quick access to major roads makes daily commuting easy and convenient.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Convenient and desirable location\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Peaceful neighborhood close to all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 Pets negotiable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement 2 chambres à louer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement lumineux situé dans un immeuble paisible, parfait pour ceux qui recherchent confort, espace et commodité au quotidien.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ Deux chambres spacieuses, idéales pour une famille, un couple ou un bureau à domicile\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 Salle de bain moderne avec baignoire pour vos moments de détente\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Cuisine fonctionnelle avec beaucoup de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Grand espace de vie ouvert et lumineux\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌿 Balcon privé pour profiter des belles journées\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement calme tout en étant à proximité des épiceries, écoles, parcs, restaurants et transports en commun. Accès rapide aux principaux axes routiers pour simplifier vos déplacements.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement pratique et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Quartier paisible près de tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 Animaux à discuter\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"817-rue-larouche\",\"817 Rue Larouche\",\"Rue Larouche\",\"817\",45.484748,-75.610254,[2185],[2185],\"817 Larouche \",\"2026-04-01\",\"1330\",\"/storage/v1/object/public/halfred/buildings/44bba3b4-67a5-4fc3-9d3e-5c71ad2e9a69/chatgpt-image-13-mai-2026-141043.png\",\"fa732ec6-1c57-44dd-9a8e-73b060e20eaa\",\"e1e38e00-4fda-42ac-89c6-610536421430\",\"8-rue-katimavik\",\"8 Rue Katimavik\",45.421567,-75.807277,[2196],[2196],\"1584\",\"1727\",\"/storage/v1/object/public/halfred/buildings/fa732ec6-1c57-44dd-9a8e-73b060e20eaa/955katimavik-19.jpg\",\"3a125037-e08b-44f7-9cf7-f7e3a0eafb0d\",\"55ad2504-96de-4b79-9d24-e22bf02da011\",\"242-rue-de-la-fregate\",\"242 Rue De La Frégate\",\"242\",45.499078,-75.592223,[2206],[2206],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/3a125037-e08b-44f7-9cf7-f7e3a0eafb0d/20240601_152633.jpg?version=b11aef28-c4bc-4c8c-bbdc-dfe9d8978d7c\",\"b1794dd1-b3aa-42cc-a5c0-1a98a1644e4a\",\"67af6af8-5d81-4e0d-bad2-3b3dbb829755\",\"231-rue-de-la-fregate\",\"231 Rue De La Frégate\",\"231\",45.499518,-75.59173,[2217],[2217],\"2026-05-09\",\"/storage/v1/object/public/halfred/buildings/b1794dd1-b3aa-42cc-a5c0-1a98a1644e4a/0001-0001.jpg\",\"a59671ee-e225-41af-bc89-3cf1dfb6dbd8\",\"488e10a0-1895-4dde-92b2-e4f3f95e8f3d\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent – Prime Location in Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this charming apartment perfectly located in a desirable area of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ideal for workers, students, and young professionals looking for comfort and convenience.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Only 9 minutes from downtown Ottawa and the ByWard Market\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🎓 Just steps from Cégep de l’Outaouais\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Close to grocery stores, restaurants, banks, pharmacies, and more\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical living space in a vibrant neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a central location with quick access to services, shops, and public transportation while living in a convenient and welcoming environment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beau logement à louer – Emplacement idéal à Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce charmant logement parfaitement situé dans un secteur recherché de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", idéal pour les travailleurs, étudiants et jeunes professionnels recherchant confort et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement stratégique :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 À seulement 9 minutes du centre-ville d’Ottawa et du Marché By\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🎓 À deux pas du Cégep de l’Outaouais\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Près des épiceries, restaurants, banques, pharmacies et plus encore\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace pratique et confortable dans un secteur dynamique\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement central offrant un accès rapide aux services, commerces et transports tout en vivant dans un environnement pratique et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"33-rue-lemieux\",\"33 Rue Lemieux\",\"Rue Lemieux\",\"33\",45.46132,-75.766869,[2231],[2231],\"1229\",\"1340\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/a59671ee-e225-41af-bc89-3cf1dfb6dbd8/59cc0a61-3a2e-4e02-9d44-9db9894788af?version=02c6e453-a176-4e06-ab4f-17378ff805cf\",\"021698f9-ebd8-4fcc-adc1-1ad8c1d7014e\",\"2d3fffa7-4237-4df6-beab-edc946aad50e\",\"193-chemin-mcconnell\",\"193 Chemin Mcconnell\",\"193\",45.410805,-75.83284,[2244],[2244],\"193 Chemin McConnell\",\"2026-04-16\",\"1705\",\"/storage/v1/object/public/halfred/buildings/021698f9-ebd8-4fcc-adc1-1ad8c1d7014e/chatgpt-image-7-mai-2026-130425.png\",\"d43fc80a-206e-49a4-8f80-53e98b15c00a\",\"adf90ddd-1d1e-473d-ac9b-a8d10dce13cd\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment for Rent – Comfort \u0026 Peaceful Living in Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and desirable residential neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfortable, welcoming, and well-designed living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Bright and spacious living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥 Cozy living room with fireplace\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional layout designed for everyday comfort\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment while staying close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"essential services, shops, and everyday conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place to combine space, comfort, and tranquility!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Heat \u0026 electricity not included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacieux appartement à louer – Confort \u0026 tranquillité à Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier résidentiel calme et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour ceux qui recherchent un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confortable, chaleureux et bien aménagé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Grand espace de vie lumineux et accueillant\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥 Salon chaleureux avec foyer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Entrées laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique idéale pour le quotidien\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible tout en restant à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services essentiels, commerces et commodités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement parfait pour allier espace, confort et tranquillité!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Chauffage et électricité non inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non autorisés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"217-chemin-de-la-savane\",\"217 Chemin De La Savane\",\"217\",45.475869,-75.681232,[2258],[2258],\"217 Chemin de la Savane\",\"1008\",\"1099\",\"/storage/v1/object/public/halfred/buildings/d43fc80a-206e-49a4-8f80-53e98b15c00a/chatgpt-image-7-mai-2026-144808-1.png\",\"8aae1724-2ba3-4813-a052-d838cf6bc376\",\"c853fb87-c794-4db2-a722-119c0363475d\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment for Rent – Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this large apartment located near \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Saint-Raymond Boulevard\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", in a sought-after area close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"public transit and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". The perfect combination of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"space, comfort, and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What makes this unit stand out:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Large family kitchen, perfect for entertaining 🍽️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Separate kitchen and living room for added privacy 🛋️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Spacious bedrooms with plenty of room 🛏️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Large balcony to enjoy sunny days 🌞\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pets welcome (cats \u0026 dogs)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A spacious unit in a practical location, ideal for comfortable everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Grand appartement spacieux – Emplacement stratégique!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement situé près du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"boulevard Saint-Raymond\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", dans un secteur recherché à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"autobus et de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Un parfait mélange de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, espace et accessibilité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un espace qui fait la différence :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Grande cuisine familiale idéale pour recevoir 🍽️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Cuisine et salon séparés pour plus d’intimité 🛋️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Chambres spacieuses offrant tout le confort 🛏️\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Grand balcon pour profiter des belles journées 🌞\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Poêle et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chats et chiens acceptés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un logement offrant \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"beaucoup d’espace\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dans un emplacement pratique, parfait pour un quotidien simple et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"145-rue-larose\",\"145 Rue Larose\",\"Rue Larose\",45.448057,-75.741878,[2270],[2270],\"650 - 850\",\"/storage/v1/object/public/halfred/buildings/8aae1724-2ba3-4813-a052-d838cf6bc376/03afb40a-0ef2-42f1-8056-6afe8d609563\",\"ab8c22d5-e72d-42ee-a7ea-599e6bd3d31e\",\"fc6f036e-5467-471a-9e21-06215b7798e3\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious 2-Storey Apartment for Rent – Buckingham Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this spacious \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"2-storey apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" located in the peaceful \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Buckingham area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for anyone looking for extra space and a quiet environment while staying close to all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Convenient location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Close to grocery stores\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏫 Near schools\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏥 Just minutes from Papineau Hospital\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏠 Large living space on 2 floors\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Washer/dryer hookups in the unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and functional layout for everyday living\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful neighborhood with quick access to Buckingham’s shops, services, and conveniences.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Grand appartement sur 2 étages à louer – Secteur Buckingham!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce spacieux appartement sur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"2 étages\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" situé dans le secteur paisible de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Buckingham\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour ceux qui recherchent plus d’espace et un environnement tranquille tout en restant près de toutes les commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement pratique :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Près des épiceries\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏫 À proximité des écoles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏥 Tout près de l’Hôpital de Papineau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏠 Grand espace de vie réparti sur 2 étages\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Prises laveuse/sécheuse dans le logement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique et confortable pour le quotidien\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier calme avec un accès rapide aux services et commerces de Buckingham.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]}]}\\\"}\",\"357-avenue-de-buckingham\",\"357 Avenue De Buckingham\",\"Avenue De Buckingham\",\"357\",45.590772,-75.418218,[2282],[2282],\"/storage/v1/object/public/halfred/buildings/ab8c22d5-e72d-42ee-a7ea-599e6bd3d31e/cd1102dd-a02a-4545-afb4-f2bed80ec0b8\",\"363849e0-dfe0-479f-9833-bd63fc111058\",\"6deace94-bd2a-4186-b21c-1049d2243c6c\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent in Gatineau – Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this charming apartment ideally located in Gatineau, perfect for students, young professionals, or anyone looking for a practical and well-located living space.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Close to Vérendrye and Gréber streets\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Quick access to Highway 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Only 5 minutes from Cégep de l’Outaouais (Félix-Leclerc campus)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Near Les Promenades Gatineau, shops, and essential services\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Laundry facilities in the building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a convenient location with quick access to schools, transportation, shops, and restaurants.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beau logement à louer à Gatineau – Emplacement idéal!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce charmant logement idéalement situé à Gatineau, parfait pour étudiants, jeunes professionnels ou toute personne recherchant un espace pratique et bien localisé.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement stratégique :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Près des rues Vérendrye et Gréber\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Accès rapide à l’autoroute 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 À seulement 5 minutes du Cégep de l’Outaouais (pavillon Félix-Leclerc)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ À proximité des Promenades Gatineau, commerces et services essentiels\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Buanderie dans l’immeuble\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace confortable et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement pratique avec un accès rapide aux écoles, transports, commerces et restaurants.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"44-rue-de-matapedia\",\"44 Rue De Matapédia\",45.483733,-75.704144,[2292],[2292],\"/storage/v1/object/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png\",\"4170fde9-d035-4af3-b032-40bdb7dfba1a\",\"03a53592-e845-4995-a8b9-3e7887660878\",\"821-rue-larouche\",\"821 Rue Larouche\",\"821\",45.484798,-75.610149,[2304],[2304],\"1261\",\"1375\",\"/storage/v1/object/public/halfred/buildings/4170fde9-d035-4af3-b032-40bdb7dfba1a/chatgpt-image-13-mai-2026-141043.png\",\"70e954a2-6bc1-40c3-b401-b95c5e43b706\",\"db6c5a88-dd20-481f-9f72-4a2f82e43e33\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Unit with 3 Parking Spaces – Rare Opportunity!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"space, comfort, and practical features\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"? This unit at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"133 Patenaude Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" is perfect for anyone who wants \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"convenience and extra room to live comfortably\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What makes this unit stand out:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Located on the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1st floor\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" (photos are for reference – different unit shown)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Spacious and functional living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Washer/dryer hookups in the unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Heat \u0026 electricity included in the rent!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A major advantage:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"3 parking spaces included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" – ideal for families or shared living\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📦 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Extra storage:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Storage shed included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A practical and hard-to-find unit offering \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"space, comfort, and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" in a great location.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss this opportunity!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Grand logement avec 3 stationnements – Rare sur le marché!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"de l’espace, du confort et des commodités pratiques\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"? Ce logement situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"133 rue Patenaude\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" est une opportunité idéale pour ceux qui veulent \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"plus de liberté et de facilité au quotidien\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement qui se démarque :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1er étage\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" (photos à titre indicatif – unité différente)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie spacieux et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Prises laveuse/sécheuse dans l’unité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chauffé et éclairé – inclus dans le loyer!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un avantage exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"3 stationnements inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" – parfait pour familles ou colocations\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📦 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Espace supplémentaire :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Remise incluse pour plus de rangement\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un logement pratique, rare sur le marché, qui offre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"espace, confort et commodités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dans un secteur accessible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une opportunité à ne pas manquer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"133-rue-patenaude\",\"133 Rue Patenaude\",\"Rue Patenaude\",\"133\",45.573574,-75.425153,[2317],[2317],\"1421\",\"/storage/v1/object/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png\",\"6f120676-6393-4993-8e9e-02e7956cac18\",\"9d0df4df-a1e2-44e8-9ff1-45fa32b450f9\",\"{\\\"en\\\":\\\"This stunning one-bedroom apartment is located in the semi-basement, in the heart of the vibrant Plateau area. Enjoy proximity to all essential services, as well as Hull's Power Center. Just steps from the Pioneers' Trail (bike path), 10 minutes from the Marina and Aylmer’s main street, and 15 minutes from Ottawa and downtown Hull.\\\\r\\\\n\\\\r\\\\nInclusions:\\\\r\\\\n\\\\r\\\\nDishwasher included\\\\r\\\\nAir exchanger\\\\r\\\\nAir conditioning\\\\r\\\\n1 parking space included\\\\r\\\\nAdditional Information:\\\\r\\\\n\\\\r\\\\nSmoke-free apartment\\\\r\\\\nNo dogs allowed under any condition\\\\r\\\\nNot heated or lit\\\\r\\\\nCredit check required\\\\r\\\\nMinimum 1-year lease\\\\r\\\\n📸 Photos are of the model unit and may differ from the available unit for rent.\\\\r\\\\n\\\\r\\\\n📞 Contact Halfred at 819-593-3304 for more information or to schedule a visit.\\\",\\\"fr\\\":\\\"Ce superbe appartement d'une chambre est situé au semi-sous-sol, en plein cœur du secteur vibrant du Plateau. Profitez de tous les services essentiels à proximité, ainsi que du Power Center de Hull. À quelques pas du sentier des Pionniers (piste cyclable), à seulement 10 minutes de la Marina et de la rue principale d'Aylmer, et à 15 minutes d'Ottawa et du centre-ville de Hull.\\\\r\\\\n\\\\r\\\\nInclusions :\\\\r\\\\n\\\\r\\\\nLave-vaisselle inclus\\\\r\\\\nÉchangeur d'air\\\\r\\\\nAir climatisé\\\\r\\\\n1 stationnement inclus\\\\r\\\\nInformations supplémentaires :\\\\r\\\\n\\\\r\\\\nLogement non-fumeurs\\\\r\\\\nChien non accepté sous aucune condition\\\\r\\\\nPas chauffé, ni éclairé\\\\r\\\\nEnquête de crédit obligatoire\\\\r\\\\nBail minimum d'un an\\\\r\\\\n📸 Les photos sont prises du logement modèle et peuvent différer de l'unité disponible à la location.\\\\r\\\\n\\\\r\\\\n📞 Contactez Halfred au 819-593-3304 pour plus d’informations ou pour planifier une visite.\\\"}\",\"32-boulevard-d-amsterdam\",\"32 Boulevard D'amsterdam\",45.432202,-75.807114,[2328],[2328],\"1169\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/6f120676-6393-4993-8e9e-02e7956cac18/0__6f120676-6393-4993-8e9e-02e7956cac18.webp?version=bbfd536b-1fdb-4546-8825-ff7cd3d65b08\",\"c05f441a-72af-4190-bd5a-60094e8f2811\",\"533a5b5b-788b-45f7-8394-597b7620ac54\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment for Rent – 440 Pointe-Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a well-located apartment in a convenient area of Gatineau, close to all essential services for comfortable and easy everyday living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Close to grocery stores, restaurants, and shops\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚌 Easy access to public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 Convenient and accessible neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Comfortable and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement à louer – 440 Pointe-Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement bien situé dans un secteur pratique de Gatineau, à proximité de tous les services essentiels pour un quotidien simple et confortable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Près des épiceries, restaurants et commerces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚌 Accès facile au transport en commun\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌆 Secteur pratique et accessible\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Poêle et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐶 Chiens acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Espace confortable et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"440-rue-de-pointe-gatineau\",\"440 Rue De Pointe-Gatineau\",\"440\",45.466721,-75.698365,[2341],[2341],\"2026-03-27\",\"1307\",\"/storage/v1/object/public/halfred/buildings/c05f441a-72af-4190-bd5a-60094e8f2811/chatgpt-image-12-mai-2026-133423.png\",\"92f96d4d-a44d-4c5a-ad2c-c29b5181e757\",\"1934fe7b-74b9-4e50-896d-4eab4da05d81\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment for Rent – 25 Pharand Street | Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Ideally located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"25 Pharand Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this spacious apartment is perfect for \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"students, young professionals, or small families\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", thanks to its proximity to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"public transportation, essential services, and everyday conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A strategic location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Just steps from the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Université du Québec en Outaouais (UQO)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Close to multiple bus routes for easy commuting\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Quick access to shops, restaurants, and services\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥 Gas heating included (electricity not included)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Laundry facilities in the building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Dogs allowed\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A well-located apartment offering the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, convenience, and accessibility\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💨 Available now\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacieux appartement à louer – 25 rue Pharand | Emplacement idéal!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Idéalement situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"25 rue Pharand\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce spacieux appartement est parfait pour les \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"étudiants, jeunes professionnels ou petites familles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" grâce à sa proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"commodités, transports en commun et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement stratégique :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• À quelques pas de l’\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Université du Québec en Outaouais (UQO)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Proche de plusieurs lignes d’autobus pour faciliter vos déplacements\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Accès rapide aux commerces, restaurants et services\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥 Chauffage au gaz inclus (non éclairé)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Poêle et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Buanderie dans l’immeuble\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie pratique et confortable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chiens acceptés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un logement bien situé offrant un excellent équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"accessibilité, confort et simplicité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💨 Disponible dès maintenant\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier une visite.\\\\\\\"}]}]}\\\"}\",\"25-rue-pharand\",\"25 Rue Pharand\",\"Rue Pharand\",45.424376,-75.740319,[2354],[2354],\"1285\",\"700 - 718\",\"/storage/v1/object/public/halfred/buildings/92f96d4d-a44d-4c5a-ad2c-c29b5181e757/chatgpt-image-11-mai-2026-124022.png\",\"e14bb4d8-18f5-481b-9c40-3b3e0eead9c6\",\"264733eb-412c-4a41-94dc-5e71a92082fc\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Elevate Your Lifestyle in Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in one of Aylmer’s most desirable neighborhoods and enjoy a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modern apartment designed for comfort and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Perfectly located near \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and everyday essentials\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this unit offers a seamless lifestyle just minutes from everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"A modern space that stands out:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 9-foot ceilings creating a bright, open, and airy feel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Stylish bathroom with separate bathtub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Air conditioning and air exchanger for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Dishwasher included for added convenience\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Included \u0026 options:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Storage shed available for rent (subject to availability)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful, well-connected neighborhood that offers both \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquility and easy access to services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"—the perfect balance for comfortable living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Smoke-free apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Please note: Photos are from a model unit and may vary.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss this opportunity!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to book your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Vivez le meilleur d’Aylmer dès aujourd’hui!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans l’un des quartiers les plus recherchés d’Aylmer, ce logement moderne vous offre un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"cadre de vie exceptionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité immédiate de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" : épiceries, restaurants, banques, pharmacies et bien plus encore. Un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, tranquillité et accessibilité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un espace moderne qui se démarque :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Plafonds de 9 pieds pour une ambiance lumineuse et aérée\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Salle de bain élégante avec bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Air climatisé et échangeur d’air pour un confort en toute saison\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Cuisine pratique avec lave-vaisselle inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Inclus \u0026 options :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Possibilité de louer un cabanon (selon disponibilité)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible tout en restant à quelques minutes de tout — idéal pour simplifier votre quotidien sans compromis.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions de location :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Immeuble non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Enquête de crédit requise\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À noter : les photos sont celles du logement modèle et peuvent différer.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Une opportunité à ne pas manquer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"120-rue-du-maquis\",\"120 Rue Du Maquis\",\"120\",45.411445,-75.838177,[2367],[2367],\"1494\",\"795 - 1270\",\"/storage/v1/object/public/halfred/buildings/e14bb4d8-18f5-481b-9c40-3b3e0eead9c6/maquis-ete.png\",\"e91fbdb5-1eb9-468c-b08d-ba764337c1c7\",\"ab6f6bd2-70b2-4315-9f28-25630c8fffbe\",\"86-rue-du-campagnard\",\"86 Rue Du Campagnard\",\"86\",45.50242,-75.590435,[2377],[2377],\"/storage/v1/object/public/halfred/buildings/e91fbdb5-1eb9-468c-b08d-ba764337c1c7/chatgpt-image-29-mai-2026-144508.png\",\"22882540-b4b3-42d5-942c-16f87e1f2ad6\",\"6700fe69-2c2e-40ea-920a-acebba9965b3\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment for Rent – Desirable Neighborhood!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and sought-after area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"peaceful living and convenient access to essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Ideal for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfortable, practical, and inviting living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Large and bright living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Functional kitchen with plenty of storage space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical layout for everyday living\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment while staying close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"shops, services, and everyday conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect balance of comfort and simplicity!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacieux appartement à louer – Secteur recherché!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier paisible et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité et proximité des services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Idéal pour ceux qui recherchent un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confortable, pratique et agréable à vivre\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Grand espace de vie lumineux et accueillant\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Cuisine fonctionnelle avec beaucoup de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique et confortable pour le quotidien\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement calme tout en étant à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"commerces, services et commodités essentielles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le parfait équilibre entre confort et simplicité!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"24-rue-du-sommet\",\"24 Rue Du Sommet\",\"Rue Du Sommet\",\"24\",45.474595,-75.772911,[2391],[2391],\"1215\",\"1325\",\"/storage/v1/object/public/halfred/buildings/22882540-b4b3-42d5-942c-16f87e1f2ad6/chatgpt-image-11-mai-2026-120228.png\",\"e5c1230b-e90d-45f6-b4f1-e9c56df31529\",\"575b6c21-6bf0-42c3-9bdd-338ebda83d35\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Condo-Style Apartment for Rent – Comfort \u0026 Peaceful Living!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning condo-style apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and desirable residential neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". The perfect blend of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modern living, comfort, and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger for improved air quality\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Private balcony to enjoy sunny days\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Additional option:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment while staying close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"all everyday services and conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement de style condo à louer – Confort \u0026 tranquillité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement de style condo situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier résidentiel calme et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, restaurants, banques, pharmacies et de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"modernité, confort et qualité de vie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air pour une meilleure qualité de l’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé pour un confort optimal toute l’année\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Balcon privé pour profiter des belles journées\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie moderne et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Option supplémentaire :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible tout en restant près de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tous les services et commodités\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un logement parfait pour un quotidien confortable et sans compromis!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\"}]}]}\\\"}\",\"226-rue-de-la-fregate\",\"226 Rue De La Frégate\",45.499113,-75.591688,[2402],[2402],\"2026-01-08\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/e5c1230b-e90d-45f6-b4f1-e9c56df31529/20240601_152633.jpg?version=37298470-b36f-40b5-9eef-572fd0fec226\",\"4053032a-3a78-4615-a6d1-abcfd082525b\",\"e60621c6-029d-42fb-9d4e-e9603dac8dd0\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Studio for Rent – Convenient Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this studio located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and accessible area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ideal for someone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"functional and well-located space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Practical and efficient studio layout\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥 Heating included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Peaceful environment\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Great location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"essential services, shops, and public transportation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", making everyday life simple and convenient.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Electricity not included (heating included)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Available now – contact us today!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Halfred – \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Studio à louer – Emplacement pratique!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce studio situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"secteur calme et accessible\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", idéal pour une personne à la recherche d’un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"fonctionnel et bien situé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Studio avec disposition simple et efficace\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥 Chauffage inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Environnement tranquille\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement avantageux :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services essentiels, commerces et transports\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", pour un quotidien facile.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Électricité non incluse (chauffage inclus)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Disponible – contactez-nous dès maintenant!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Halfred – \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"}]}]}\\\"}\",\"139-rue-saint-etienne\",\"139 Rue Saint-Étienne\",\"Rue Saint-Étienne\",\"139\",45.433739,-75.71197,[2415],[2415],\"995\",\"/storage/v1/object/public/halfred/buildings/4053032a-3a78-4615-a6d1-abcfd082525b/chatgpt-image-10-juin-2026-093557.png\",\"6eed1895-1ef5-483e-87fb-3eb81e4bb456\",\"5487be55-37da-4f32-9387-2cb28618c775\",\"{\\\"en\\\":\\\"Located on Liverpool Street, in a beautiful area of Plateau, close to all amenities and near Gatineau Park.\\\\n\\\\n10 minutes from Ottawa and downtown Hull\\\\n\\\\n apartments include:\\\\nAir conditioning\\\\nAir exchanger\\\\nSeparate bath and shower\\\\n1 parking space included\\\\n\\\\n\\\\nNon-smoking unit\\\\nNo dogs accepted under any circumstances\\\\nNot heated or lit\\\\nCredit check required\\\\nMinimum one-year lease\\\\n\\\\n\\\\nPhotos are taken from the model unit and may differ from the unit for rent\\\\n\\\\nHalfred\\\\n819-593-3304\\\",\\\"fr\\\":\\\"Situé sur la rue Liverpool, dans un très beau secteur du Plateau, à deux pas de tous les services et tout près du parc de la Gatineau.\\\\n\\\\nÀ 10 minutes d'Ottawa et du centre-ville de Hull.\\\\n\\\\nAppartements comprenant :\\\\nAir climatisé\\\\nÉchangeur d'air\\\\nBain et douche séparés\\\\n1 stationnement inclus\\\\n\\\\n\\\\n\\\\nLogement non-fumeurs\\\\nAucun chien accepté sous aucune condition\\\\nPas chauffé, ni éclairé\\\\nEnquête de crédit requise\\\\nBail minimum d'un an\\\\n\\\\n\\\\nLes photos sont prises du logement modèle et peuvent différer du logement à louer\\\\n\\\\nHalfred\\\\n819-593-3304\\\"}\",\"235-rue-de-liverpool\",\"235 Rue De Liverpool\",45.429747,-75.813391,[2425],[2425],\"/storage/v1/object/public/halfred/buildings/6eed1895-1ef5-483e-87fb-3eb81e4bb456/0-Liverpool.png\",\"ad469e6c-2bf5-49e4-b05b-eda2862715cd\",\"dc8d6dc8-6847-459e-96fc-80ccae051aaa\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent – 37 Saint-Hyacinthe Street, Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment perfectly located for workers, students, and young professionals looking for comfort and convenience in a vibrant and accessible neighborhood.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Only 9 minutes from downtown Ottawa and the ByWard Market\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🎓 Just 5 minutes from UQO\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Close to grocery stores, restaurants, banks, pharmacies, and more\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Stove included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧊 Refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a central location with quick access to services, transportation, and everyday conveniences.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📅 Available immediately\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement à louer – 37 rue Saint-Hyacinthe, Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement idéalement situé, parfait pour les travailleurs, étudiants et jeunes professionnels recherchant confort et accessibilité dans un secteur pratique et dynamique.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 À seulement 9 minutes du centre-ville d’Ottawa et du Marché By\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🎓 À 5 minutes de l’UQO\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ À proximité des épiceries, restaurants, banques, pharmacies et plus encore\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Cuisinière incluse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧊 Réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie confortable et pratique\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement central offrant un accès rapide aux services, transports et commodités essentielles.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📅 Disponible immédiatement\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"37-rue-saint-hyacinthe\",\"37 Rue Saint-Hyacinthe\",\"Rue Saint-Hyacinthe\",\"37\",45.434117,-75.721126,[2439],[2439],\"986\",7,\"/storage/v1/object/public/halfred/buildings/ad469e6c-2bf5-49e4-b05b-eda2862715cd/chatgpt-image-12-mai-2026-115853.png\",\"90b13a61-9f7c-42c0-b515-fbee5a8ac67a\",\"6429bc9d-3a7a-44d9-9207-283d296ed2ec\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"This stunning two-bedroom condo is located in a sought-after area of Aylmer, close to all essential services, schools, and amenities.\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Neighborhood Features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Steps away from Pioneers’ Trail (bike path)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes from the marina and Aylmer's main street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes from Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"1 parking space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Additional Information:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Smoke-free unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Dogs not accepted under any condition\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Not heated or lighted\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Minimum one-year lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Options:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Appliance rental available\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Photos shown are of a model unit and may differ from the unit available\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact Halfred at 819-593-3304 for more information or to schedule a visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Ce magnifique condo de deux chambres est situé dans un secteur recherché d'Aylmer, à proximité de tous les services essentiels, des écoles et des commodités.\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Caractéristiques du quartier :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À deux pas du sentier des Pionniers (piste cyclable)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes de la marina et de la rue principale d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Inclusions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"1 stationnement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Informations supplémentaires :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Logement non-fumeurs\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Chien non accepté sous aucune condition\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Pas chauffé, ni éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enquête de crédit demandée\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Bail minimum d’un an\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Options :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Possibilité de location avec électroménagers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Les photos présentées sont celles d’un logement modèle et peuvent différer du logement disponible\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez Halfred au 819-593-3304 pour plus d’informations ou pour planifier une visite.\\\\\\\"}]}]}\\\"}\",\"137-impasse-john-roney\",\"137 Impasse John-Roney\",\"137\",45.409102,-75.846766,[2452],[2452],\"137 imp John-Roney\",\"1525\",\"/storage/v1/object/public/halfred/buildings/90b13a61-9f7c-42c0-b515-fbee5a8ac67a/137-141-exterieur-web-1.jpg\",\"be56875e-a526-4f45-9fe0-26c224557a81\",\"8e4bd300-04ca-43d2-bbcb-fa76c75f4467\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Apartment in the Heart of Hull – Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Live in the center of it all with this well-located apartment in Hull. Just steps away from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and more\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this unit is perfect for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"convenient and vibrant urban lifestyle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and functional living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Kitchen with \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"stove and refrigerator included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Practical layout for everyday living\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Dogs allowed\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a location that lets you \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"walk to everything\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" and fully experience city living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement au cœur de Hull – Emplacement idéal!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement bien situé en plein cœur de Hull, à quelques pas des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, restaurants, banques, pharmacies et plus encore\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Parfait pour ceux qui recherchent un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"mode de vie pratique et dynamique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" à proximité de tout.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie confortable et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Cuisine avec \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"poêle et réfrigérateur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique pour le quotidien\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐾 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chiens acceptés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement central qui vous permet de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tout faire à pied\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et de profiter pleinement de la vie urbaine.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"132-rue-de-notre-dame-de-i-ile\",\"132 Rue De Notre-Dame-De-I'île\",\"Rue De Notre-Dame-De-I'île\",\"132\",45.42984,-75.710958,[2467],[2467],\"2025-08-01\",\"894\",\"300\",\"/storage/v1/object/public/halfred/buildings/be56875e-a526-4f45-9fe0-26c224557a81/chatgpt-image-4-mai-2026-160524.png\",\"16313772-8d62-4a6e-8a3e-9ec3826a94a9\",\"0280cda7-29c8-4d93-a88a-e83ed1a0d573\",\"{\\\"en\\\":\\\"✨ Beautiful Condo for Rent – Aylmer ✨\\\\n\\\\nBeautiful 2-bedroom condo located in a quiet neighborhood in Aylmer, within a small 6-unit building. Close to all essential services including grocery stores, restaurants, banks, pharmacies, and more. A great place to call home!\\\\n\\\\n🏡 Unit features:\\\\n✔️ Private balcony 🌳\\\\n✔️ Air conditioning ❄️\\\\n✔️ 1 parking space included 🚗\\\\n✔️ Appliances included: refrigerator, stove, microwave, and dishwasher\\\\n\\\\n📌 Additional details:\\\\n– Heating and electricity not included 🔌\\\\n– Non-smoking unit 🚭\\\\n– Dogs not allowed under any circumstances 🐾\\\\n– Credit check required\\\\n– Photos are for reference only; the unit may vary slightly\\\\n\\\\n📞 For more information or to schedule a visit, contact Halfred at 819-593-3304 🚀\\\",\\\"fr\\\":\\\"Superbe Condo à Louer \\\\n\\\\nMagnifique condo à louer dans un quartier tranquille d’Aylmer. Ce logement de 2 chambres est situé dans un petit immeuble de 6 unités. Il est à proximité de tous les services essentiels : épiceries, restaurants, banques, pharmacie, et bien plus encore!\\\\n\\\\nCaractéristiques du logement :\\\\nBalcon 🌳\\\\nAir Climatisé ❄️\\\\n1 Stationnement inclus 🚗\\\\nDétails supplémentaires :\\\\nChauffage et électricité non inclus 🔌\\\\nLogement non-fumeurs 🚭\\\\nChien non accepté sous aucune condition 🐾\\\\nEnquête de crédit requise\\\\nPossibilité de location avec électroménagers.\\\\nPhotos modèles, l'unité à louer peut différer légèrement.\\\\n\\\\nPour plus d'informations ou pour planifier une visite, contactez Halfred au 819-593-3304.\\\"}\",\"82-rue-du-britannia\",\"82 Rue Du Britannia\",\"Rue Du Britannia\",\"82\",45.412353,-75.827641,[2481],[2481],\"2026-03-07\",\"1517\",\"/storage/v1/object/public/halfred/buildings/16313772-8d62-4a6e-8a3e-9ec3826a94a9/0001-0001.jpg\",\"ea305b6a-7ea8-48c3-80a4-1dcbe2880463\",\"631bcb57-d2f5-4a8d-b5df-d3c5884e5637\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":\\\\\\\"left\\\\\\\"},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment for Rent – Desirable Neighborhood!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and sought-after area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"peaceful living and convenient access to essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". An ideal home for anyone looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfortable, practical, and inviting living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Large and bright living area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Functional kitchen with plenty of storage space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical layout for everyday living\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment while staying close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"shops, services, and everyday conveniences\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect balance of comfort and simplicity!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacieux appartement à louer – Secteur recherché!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier paisible et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant le parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité et proximité des services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Un logement idéal pour ceux qui recherchent un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confortable, pratique et agréable à vivre\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Grand espace de vie lumineux et accueillant\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Cuisine fonctionnelle avec beaucoup de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique et confortable pour le quotidien\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement calme tout en étant à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"commerces, services et commodités essentielles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le parfait équilibre entre confort et simplicité!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"22-rue-du-sommet\",\"22 Rue Du Sommet\",45.474617,-75.772604,[2493],[2493],\"22 rue du Sommet\",\"1395\",\"/storage/v1/object/public/halfred/buildings/ea305b6a-7ea8-48c3-80a4-1dcbe2880463/chatgpt-image-7-mai-2026-152840.png\",\"cac2a87b-0041-4a9b-b934-bcee459364aa\",\"06074380-c84e-47d5-8336-668500aecd21\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent in a Desirable Neighborhood!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after area, this beautiful apartment is perfect for a couple or small family looking for a modern, bright, and comfortable living space.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Modern kitchen with dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and spacious living room, perfect for relaxing or entertaining\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment with quick access to shops, restaurants, schools, and all essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included (electricity at tenant’s expense)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement à louer dans un secteur recherché!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier calme et recherché, ce superbe appartement est parfait pour un couple ou une petite famille à la recherche d’un espace moderne, lumineux et confortable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Cuisine moderne avec lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Salon lumineux et spacieux, parfait pour relaxer ou recevoir\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible avec un accès rapide aux commerces, restaurants, écoles et autres services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé (électricité aux frais du locataire)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"86-rue-de-britannia\",\"86 Rue De Britannia\",45.412334,-75.827403,[2505],[2505],\"1562\",\"1703\",\"/storage/v1/object/public/halfred/buildings/cac2a87b-0041-4a9b-b934-bcee459364aa/chatgpt-image-13-mai-2026-145743.png\",\"bf43c3d6-d5a3-4a02-9726-49c35b444acb\",\"8713f551-b1ea-4622-ae17-5b4bd07045f6\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent – Prime Aylmer Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy the perfect balance of comfort, tranquility, and convenience in one of Aylmer’s most desirable neighborhoods! This beautiful apartment is ideally located close to nature, services, and major roadways.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ 🚴 Just steps from the Pioneers Trail bike path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ 🌊 Only 5 minutes from Aylmer Marina and Main Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ 🌆 Just 10 minutes from Ottawa and downtown Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Private balcony to enjoy the outdoors\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🪵 Modern engineered wood flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔇 Concrete construction between floors for excellent soundproofing\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Parking included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy living in a quiet and highly sought-after neighborhood close to parks, shops, restaurants, and essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📑 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📅 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement à louer – Secteur recherché d’Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Offrez-vous un style de vie alliant confort, tranquillité et emplacement exceptionnel dans l’un des plus beaux secteurs d’Aylmer! Ce superbe logement est idéalement situé à proximité de la nature, des services et des grands axes routiers.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement de choix :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ 🚴 À deux pas du sentier des Pionniers (piste cyclable)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ 🌊 À seulement 5 minutes de la marina et de la rue Principale d’Aylmer\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔ 🌆 À 10 minutes d’Ottawa et du centre-ville de Hull\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Balcon privé pour profiter de l’extérieur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🪵 Planchers en bois d’ingénierie modernes et élégants\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔇 Béton entre les étages pour une excellente insonorisation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 Stationnement inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier calme et très recherché, près des parcs, commerces, restaurants et services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ 🐶 Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📑 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📅 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"50-impasse-john-roney\",\"50 Impasse John-Roney\",45.408605,-75.846799,[2517],[2517],\"50 Impasse john Roney\",\"1146\",\"/storage/v1/object/public/halfred/buildings/bf43c3d6-d5a3-4a02-9726-49c35b444acb/chatgpt-image-12-mai-2026-135601.png\",\"4fb6c85a-5238-4bb0-8418-d47dbe1fbf94\",\"0cc169dc-b805-4d23-9ea0-592ef6e70017\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment offering nearly \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1000 sq. ft. of living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", located on the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"first floor\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" with \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"large windows\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" providing plenty of natural light. A practical, comfortable, and carpet-free unit perfect for anyone looking for extra space and functionality.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛏️ 2 large and spacious bedrooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Bright and well-designed living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ✨ No carpet for easy maintenance\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚪 2 separate entrances to the unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Pantry and convenient interior storage space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Washer/dryer hookups\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Wifi included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included (option for a second if available)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Great location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Just steps from a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery store, convenience stores, a school\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", and with quick access to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Highway 5\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐱 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Cats allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"No dogs allowed\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacieux \u0026 idéalement situé!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement offrant près de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"1000 pi² d’espace de vie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"premier étage\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" avec de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"très grandes fenêtres\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" laissant entrer une belle lumière naturelle. Un logement pratique, confortable et sans tapis, parfait pour ceux qui recherchent espace et fonctionnalité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛏️ 2 grandes chambres spacieuses\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Espace lumineux et bien aménagé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ✨ Aucun tapis pour un entretien facile\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚪 2 entrées indépendantes au logement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Garde-manger et rangement intérieur pratique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Prises laveuse/sécheuse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Wifi inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus (possibilité d’un 2e selon disponibilité)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement avantageux :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À quelques pas d’une \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épicerie, dépanneurs, école\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et avec un accès rapide à \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"l’Autoroute 5\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🐱 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chats acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Chiens non acceptés\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"28-rue-normand\",\"28 Rue Normand\",\"Rue Normand\",\"28\",45.457016,-75.741064,[2531],[2531],\"1297\",\"1414\",\"/storage/v1/object/public/halfred/buildings/4fb6c85a-5238-4bb0-8418-d47dbe1fbf94/chatgpt-image-11-mai-2026-131208.png\",\"84b9bf76-e27d-4b29-9481-9401d1d936d9\",\"0e3b3220-a189-46d8-b955-79f759a9d7a6\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent – 31 Curé-André-Préseault Street, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a comfortable and well-located apartment in Gatineau? This beautiful unit at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"31 Curé-André-Préseault Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" offers the perfect combination of convenience, comfort, and accessibility!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Close to Vérendrye and Gréber streets\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Quick access to Highway 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Only 5 minutes from Cégep de l’Outaouais (Félix-Leclerc campus)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Less than 5 minutes from Les Promenades Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Near grocery stores, public transportation, parks, schools, restaurants, and more\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Spacious and functional layout\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Laundry facilities in the building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Quiet and desirable neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Perfect for a single person or a couple looking for a peaceful environment while staying close to all essential services and amenities.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beau logement à louer – 31 rue du Curé-André-Préseault, Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous cherchez un logement confortable et bien situé à Gatineau? Ce superbe appartement situé au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"31 rue du Curé-André-Préseault\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" offre le parfait équilibre entre confort, tranquillité et accessibilité!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement idéal :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Près des rues Vérendrye et Gréber\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Accès rapide à l’autoroute 50\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 À seulement 5 minutes du Cégep de l’Outaouais (pavillon Félix-Leclerc)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛍️ Moins de 5 minutes des Promenades Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• À proximité des épiceries, transports en commun, écoles, parcs, restaurants et plus encore\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie spacieux et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Buanderie dans l’immeuble\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Quartier calme et recherché\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Parfait pour une personne seule ou un couple recherchant un environnement paisible tout en restant proche de tous les services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"31-rue-du-cure-andre-preseault\",\"31 Rue Du Curé-André-Préseault\",\"Rue Du Curé-André-Préseault\",45.483224,-75.703475,[2542],[2542],\"/storage/v1/object/public/halfred/buildings/84b9bf76-e27d-4b29-9481-9401d1d936d9/chatgpt-image-11-mai-2026-135515.png\",\"9c171536-1529-40f6-8c15-3bfe8cbe8ca4\",\"76f72fc7-2a96-4f2f-ac4e-cbf1c5fc1a57\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Spacious Apartment for Rent – Buckingham Area!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful and spacious apartment located in the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Buckingham area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, schools, Papineau Hospital, and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". The perfect home for anyone looking for a peaceful environment while staying close to everyday conveniences.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛠️ Outdoor storage shed for extra space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Washer/dryer hookups in the unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Large and functional living spaces designed for comfort\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a quiet neighborhood with quick access to shops, services, and transportation.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📸 Photos are from a model unit and may vary from the available apartment\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Grand appartement à louer – Secteur Buckingham!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe appartement spacieux situé dans le secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Buckingham\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, écoles, de l’hôpital de Papineau et de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Un logement parfait pour ceux qui recherchent un environnement calme tout en restant près des commodités.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🛠️ Cabanon pratique pour rangement supplémentaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🧺 Prises laveuse/sécheuse dans le logement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Grandes pièces offrant confort et fonctionnalité\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier paisible avec un accès rapide aux commerces, services et transports.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📸 Les photos sont prises du logement modèle et peuvent différer de l’unité disponible\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"311-avenue-de-buckingham\",\"311 Avenue De Buckingham\",\"311\",45.59215,-75.417959,[2554],[2554],\"1238\",\"/storage/v1/object/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png\",\"2f872116-e778-423e-93ba-8ce6339e7256\",\"f893c8e1-00e4-4304-bf59-1815b9ff4cf4\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful 2-Bedroom Apartment for Rent – 239 Liverpool, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Only 10 Minutes from Ottawa\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Enjoy an exceptional lifestyle in one of the most sought-after areas of the Plateau! This beautiful 2-bedroom apartment offers the perfect combination of comfort, convenience, and tranquility.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Located close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Gatineau Park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", schools, shops, restaurants, essential services, and major roadways.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 spacious and well-designed bedrooms\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air conditioning for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Air exchanger\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Bright and functional living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Peaceful and secure neighborhood\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy living in a vibrant community where everything is within reach while benefiting from a quiet and comfortable environment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Heating and electricity not included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed (dogs prohibited)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Photos are from a model unit and may vary from the available apartment.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Superbe 4 ½ à louer – 239 Liverpool, Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"À seulement 10 minutes d’Ottawa\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Offrez-vous un mode de vie exceptionnel dans l’un des secteurs les plus recherchés du Plateau! Ce magnifique appartement de 2 chambres vous propose un parfait équilibre entre confort, tranquillité et accessibilité.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Situé à proximité du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Parc de la Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", des écoles, commerces, restaurants, services essentiels et des principaux axes routiers.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛏️ 2 chambres spacieuses et bien aménagées\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❄️ Air climatisé pour un confort optimal toute l’année\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌬️ Échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace lumineux et fonctionnel\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Secteur paisible et sécuritaire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un quartier dynamique où tout est à portée de main, tout en bénéficiant d’un environnement calme et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Chauffage et électricité non inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Aucun animal accepté (chiens interdits)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📸 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"italic\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les photos proviennent d’une unité modèle et peuvent différer du logement disponible.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès aujourd’hui pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"239-rue-de-liverpool\",\"239 Rue De Liverpool\",\"239\",45.429726,-75.813499,[2567],[2567],\"2025-05-01\",\"1200 - 1260\",\"/storage/v1/object/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png\",\"d6292b49-5f2f-4ac0-9221-cc3ef3f81df1\",\"96b2f4f8-7e59-40b4-99bc-08f3de3333c0\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful 2-Storey Apartment for Rent!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and desirable neighborhood, this beautiful duplex-style apartment offers all the space and comfort you’re looking for! Perfect for a family or couple seeking a spacious and practical home.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 2 bathrooms for added comfort and convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 Large duplex-style apartment on 2 levels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 2 parking spaces included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Modern kitchen with plenty of storage space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛋️ Bright and spacious living room, perfect for relaxing or entertaining\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a spacious home in a peaceful area, ideal for comfortable and functional living.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique appartement sur 2 étages à louer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un quartier calme et recherché, ce superbe appartement en duplex offre tout l’espace et le confort dont vous avez besoin! Parfait pour une famille ou un couple recherchant un environnement pratique et spacieux.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛁 2 salles de bain pour un maximum de confort et de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏠 Appartement sur 2 étages offrant de grands espaces de vie\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 2 places de stationnement incluses\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🍽️ Cuisine moderne avec beaucoup de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛋️ Grand salon lumineux idéal pour relaxer ou recevoir\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un logement spacieux dans un secteur paisible, parfait pour un mode de vie confortable et fonctionnel.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"}]}]}\\\"}\",\"84-boulevard-de-l-amerique-francaise\",\"84 Boulevard De L'amérique-Française\",\"Boulevard De L'amérique-Française\",\"84\",45.436986,-75.815492,[2582],[2582],\"84 Amérique Française\",\"2026-04-15\",\"0 - 1400\",\"/storage/v1/object/public/halfred/buildings/d6292b49-5f2f-4ac0-9221-cc3ef3f81df1/chatgpt-image-13-mai-2026-144332.png\",\"66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf\",\"ab74fdcd-a702-4f75-a478-18c9d8f392d9\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Apartment for Rent – 29 Lemieux | Prime Hull Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment ideally located in a sought-after area of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"workers, students, and young professionals\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Just \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"9 minutes from downtown Ottawa and the ByWard Market\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", and only steps from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Cégep de l’Outaouais\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this unit offers convenient access to everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 Heat \u0026 electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Comfortable and practical living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy quick access to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, public transportation, and more\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", while living in a vibrant and convenient neighborhood.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect balance of comfort, accessibility, and urban living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beau logement à louer – 29 Lemieux | Emplacement parfait à Hull!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe logement idéalement situé dans un secteur recherché de \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour les \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"travailleurs, étudiants ou jeunes professionnels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". À seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"9 minutes du centre-ville d’Ottawa et du Marché By\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", et à quelques pas du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Cégep de l’Outaouais\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce logement offre un emplacement pratique et accessible près de tout.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥💡 Chauffé et éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 💻 Internet inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie pratique et confortable\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un accès rapide aux \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, restaurants, banques, pharmacies et transports\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", tout en vivant dans un quartier dynamique et recherché.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le parfait équilibre entre confort, accessibilité et vie urbaine!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"29-rue-lemieux\",\"29 Rue Lemieux\",\"29\",45.461357,-75.76648,[2594],[2594],\"1747\",\"/storage/v1/object/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg\",\"668601f2-6411-4927-81df-0532c9fd877b\",\"a34dc1bd-a151-430c-8dc9-e8ec2165e05b\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Charming Apartment for Rent in Gatineau – Heat Included!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this beautiful apartment located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and convenient area of Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", perfect for a single person or a couple looking for a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfortable, functional, and well-maintained living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥 Heat included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Bright and welcoming living space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Functional and practical layout\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📍 Peaceful neighborhood close to essential services\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a calm environment while staying close to shops, transportation, and everyday conveniences.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Electricity not included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔍 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Charmant appartement à louer à Gatineau – Chauffage inclus!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce beau logement situé dans un secteur \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"paisible et pratique de Gatineau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", parfait pour une personne seule ou un couple recherchant un espace \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confortable, fonctionnel et bien entretenu\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔥 Chauffage inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 espace de stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌞 Logement lumineux et agréable à vivre\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Disposition pratique et fonctionnelle\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📍 Secteur tranquille à proximité des services essentiels\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement calme tout en étant près des commerces, transports et commodités du quotidien.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Électricité non incluse\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🔍 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"31-rue-lemieux\",\"31 Rue Lemieux\",45.461495,-75.76689,[2606],[2606],\"2025-02-01\",\"700 - 1000\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?version=da5644ce-a3af-43d0-a1c1-51144799682d\",\"4133195f-fa0a-42f0-b258-e856c18a7245\",\"1b011ff7-8b35-4481-abfb-1fe958bae4e3\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Condo for Rent – Comfort \u0026 Modern Living!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this stunning condo located in a \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quiet and desirable residential neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"grocery stores, restaurants, banks, pharmacies, and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". This modern unit offers the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, convenience, and tranquility\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this condo offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Air exchanger for improved comfort and air quality\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included (option for a second available)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern and functional living space designed for everyday comfort\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Additional option:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Appliances available for rent\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a peaceful environment while staying close to everything you need for a simple and enjoyable lifestyle.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss this opportunity!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifique condo à louer – Confort \u0026 vie moderne!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce superbe condo situé dans un \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"quartier résidentiel calme et recherché\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"épiceries, restaurants, banques, pharmacies et de tous les services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\". Ce logement moderne offre le parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, tranquillité et commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le condo :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🌬️ Échangeur d’air pour un confort optimal\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❄️ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus (possibilité d’un 2e)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie moderne et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Option supplémentaire :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Possibilité de location avec électroménagers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un environnement paisible tout en restant près de tout ce dont vous avez besoin pour un quotidien simple et agréable.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"219-rue-de-la-fregate\",\"219 Rue De La Frégate\",\"219\",45.499629,-75.591159,[2618],[2618],\"219 Frégate\",\"/storage/v1/object/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg\",\"b92384e4-7b73-4b7b-8bb5-e34f1ef89d56\",\"bb391ca0-cb0c-46ec-971f-11d69168abbe\",\"238-rue-de-la-fregate\",\"238 Rue De La Frégate\",\"238\",45.49908,-75.592142,[2629],[2629],\"238 Rue de la Frégate \",\"/storage/v1/object/public/halfred/buildings/b92384e4-7b73-4b7b-8bb5-e34f1ef89d56/0002-0002.jpg\",\"e00d5a57-738d-4df6-ab83-f445cfa6ef0d\",\"565b1115-0985-4539-b1fa-bb993e20aa65\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful Renovated Apartment for Rent – Prime Gatineau Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover this charming recently renovated apartment located in a convenient and desirable area of Gatineau, close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Vérendrye and Gréber streets\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" with quick access to Highway 50.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Recently renovated unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Laundry facilities in the building\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 parking space included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Comfortable and functional living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a strategic location close to shops, restaurants, public transportation, and essential services.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Heating and electricity not included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beau logement rénové à louer – Emplacement idéal à Gatineau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ce charmant logement récemment rénové situé dans un secteur pratique et recherché de Gatineau, à proximité des rues \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Vérendrye et Gréber\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" avec un accès rapide à l’autoroute 50.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ Logement récemment rénové\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🧺 Buanderie dans l’immeuble\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 1 stationnement inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌞 Espace confortable et fonctionnel\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’aimer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Profitez d’un emplacement stratégique près des commerces, restaurants, transports en commun et services essentiels.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"⚡ Chauffage et électricité non inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Logement non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"45-rue-du-cure-andre-preseault\",\"45 Rue Du Curé-André-Préseault\",\"45\",45.48378,-75.703568,[2641],[2641],25,\"/storage/v1/object/public/halfred/buildings/e00d5a57-738d-4df6-ab83-f445cfa6ef0d/chatgpt-image-12-mai-2026-134325.png\",\"d87f7d25-71bb-4599-9b70-c8d1cd1b2c73\",\"a4592385-eb59-4ee5-b5b2-67666de1dd0d\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Modern Apartment in Aylmer – Prime Location!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Enjoy a premium lifestyle in one of Aylmer’s most sought-after areas! Located \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"directly across from D’Arcy McGee School\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", just steps from the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pioneers Trail\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes from the marina\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", and only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes to Ottawa and downtown Hull\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", this apartment offers the perfect mix of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, quality, and location\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What makes this unit stand out:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Private balcony to enjoy the outdoors\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern engineered wood and ceramic flooring\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Dishwasher included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Concrete construction between floors for superior soundproofing\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Air conditioning \u0026 air exchanger for year-round comfort\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bathroom with separate tub and shower\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 parking space included (option for a second available)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"peaceful, family-friendly neighborhood\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" close to everything you need.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking unit\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No dogs allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Not heated / not electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement moderne à Aylmer – Emplacement de choix!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Offrez-vous un style de vie recherché dans l’un des meilleurs secteurs d’Aylmer! Situé \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"en face de l’école D’Arcy McGee\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à quelques pas du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"sentier des Pionniers\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"5 minutes de la marina\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" et à \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes d’Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ce logement combine \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, qualité et emplacement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce qui fait la différence :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Balcon privé pour profiter des belles saisons\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Planchers en bois d’ingénierie et céramique au look moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Lave-vaisselle inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Construction en béton entre les étages (excellente insonorisation)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Air climatisé + échangeur d’air\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Salle de bain avec bain et douche séparés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 1 stationnement inclus (option d’un 2e disponible)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un environnement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"familial, pratique et paisible\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", à proximité de tout.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Chiens non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ⚡ Non chauffé / non éclairé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"17-rue-de-liverpool\",\"17 Rue De Liverpool\",\"17\",45.428934,-75.806856,[2653],[2653],\"1800\",\"/storage/v1/object/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png\",\"66de2865-e85c-4bcd-b3e8-fcb7fb5bd71a\",\"b1c9c4f2-4fbc-4e78-8b72-eaf8a69b4a0c\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Modern Apartment for Rent – 32 De la Fabrique Street, Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Looking for a modern apartment in one of Aylmer’s most desirable areas? Discover this beautiful recently built unit located at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"32 De la Fabrique Street\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offering the perfect balance of \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"comfort, convenience, and tranquility\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"What this unit offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Recent construction with modern finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Dishwasher included for added convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Private parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright, practical, and well-designed living space\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love it:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in a quiet and sought-after neighborhood close to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"shops, services, trails, and everyday essentials\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"The perfect place for comfortable and stress-free living!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss out!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartement moderne à louer – 32 rue de la Fabrique, Aylmer!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Vous recherchez un logement moderne dans un secteur recherché d’Aylmer? Découvrez ce superbe appartement récemment construit au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"32 rue de la Fabrique\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", offrant un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"confort, tranquillité et accessibilité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ce que vous offre le logement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🏗️ Construction récente avec finition moderne\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🍽️ Lave-vaisselle inclus pour plus de commodité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚗 Stationnement privé inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espace de vie pratique, lumineux et bien aménagé\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez l’adorer :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé dans un secteur calme et recherché, à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"services, commerces, sentiers et commodités essentielles\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Le logement parfait pour un quotidien simple et confortable!\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• ❌ Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"30-rue-de-la-fabrique\",\"30 Rue De La Fabrique\",45.409807,-75.85807,[2663],[2663],\"/storage/v1/object/public/halfred/buildings/66de2865-e85c-4bcd-b3e8-fcb7fb5bd71a/chatgpt-image-11-mai-2026-135011.png\",\"09e7d261-a038-4c50-9a9d-78c63f739fc1\",\"project\",\"61746f76-2212-43c5-b807-2ba59073c831\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Beautiful New Contemporary Apartments – PURE Project in the Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover a modern and upscale living experience in one of the most desirable areas of the Plateau! ✨ Located only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"8 minutes from Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", the \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"PURE Project\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" offers an all-inclusive urban lifestyle in a vibrant and modern community.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Exceptional location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 Close to daycares and a high school\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Several parks and green spaces within walking distance\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Near shops, restaurants, and all essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Quick access to public transportation and major roadways\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏢 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"PURE complex features:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ High-quality modern apartments\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Shared rooftop terrace\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Gym and coworking space\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Large underground garage\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Secure entrances\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Elevator access to all floors\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Everything is included:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Internet \u0026 cable\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Electricity, heating, and air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ 5 appliances included: refrigerator, stove, dishwasher, washer, and dryer\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Parking options:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Indoor parking available ($)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Electric vehicle charging stations available ($)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love PURE:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A modern project designed to offer comfort, tranquility, and quality living in one of Gatineau’s best neighborhoods.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Important details:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚫 No pets allowed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Non-smoking complex\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📑 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Minimum 12-month lease\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🔥 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Magnifiques appartements neufs et contemporains – Projet PURE au Plateau!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" 🔥\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez une expérience de vie moderne et haut de gamme au cœur du secteur le plus recherché du Plateau! ✨ Situé à seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"8 minutes d’Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", le projet \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"PURE\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" vous offre un mode de vie urbain, pratique et tout inclus dans une communauté dynamique et moderne.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📍 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏫 À proximité de garderies et d’une école secondaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Plusieurs parcs et espaces verts accessibles à pied\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🛍️ Près de tous les commerces, restaurants et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚌 Accès rapide au transport en commun et aux grands axes routiers\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏢 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Les avantages du complexe PURE :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Appartements modernes de qualité supérieure\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Terrasse commune\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Gym et espace de coworking\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Grand garage souterrain\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Entrées sécurisées\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Ascenseur pour un accès facile à tous les étages\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Tout est inclus :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Internet \u0026 câble\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Électricité, chauffage et climatisation\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ 5 électroménagers inclus : réfrigérateur, cuisinière, lave-vaisselle, laveuse et sécheuse\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Options de stationnement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Stationnement intérieur disponible ($)\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✔️ Bornes électriques disponibles ($)\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez adorer PURE :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un projet moderne pensé pour offrir confort, tranquillité et qualité de vie dans l’un des meilleurs secteurs de Gatineau.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📌 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Informations importantes :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚫 Animaux non acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚭 Complexe non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📑 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📆 Bail minimum de 12 mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"available_to_rent\",\"929-vanier-road\",\"929 Vanier Road\",\"Chemin Vanier\",45.434211,-75.817957,[2683,2684,2685,2686],[2682],\"PURE\",\"583 - 1257\",36,193,\"1790\",\"buildingCount\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/09e7d261-a038-4c50-9a9d-78c63f739fc1/0__09e7d261-a038-4c50-9a9d-78c63f739fc1.webp?version=7ff2ee86-2759-4ed9-8d5b-a8fe02dd8fff\",\"/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg\",\"/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocamoverall.jpg\",\"/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/gym-d.jpg\",\"/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/exterieurgym.jpg\",\"bc7470bb-44c7-4ff7-9028-f58f4c8810ae\",\"63a3366d-bd30-45af-af68-d25143fbf8e9\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Contemporary All-Inclusive Apartments – Plateau Area\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover these stunning modern all-inclusive apartments located in a premium 4-storey building designed to offer comfort, tranquility, and modern living. With reinforced concrete construction and 9-foot ceilings, enjoy superior soundproofing and bright, spacious living spaces.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏙️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Prime Location – Plateau, Gatineau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located in the heart of the Plateau, just steps from \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Parc Central, the Agora and its urban village, the municipal library\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", and all essential services. Only \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes from downtown Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", with quick access to public transportation, schools, medical clinics, restaurants, shops, and major retailers.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 The neighborhood also offers:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Dog park\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Community garden\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Outdoor skating rink\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Splash pad\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Children’s playgrounds\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"All-inclusive for maximum comfort:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ 5 appliances included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Internet included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Cable included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Outdoor parking included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Air conditioning\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Heat \u0026 electricity included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Storage spaces\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Window blinds included\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Why you’ll love this project:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"A modern and highly sought-after environment offering exceptional quality of life in one of Gatineau’s most desirable neighborhoods.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Rental conditions:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Minimum 12-month lease\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Credit check required\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐱🐶 Cats and dogs under 15 lbs accepted\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Non-smoking complex\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📸 Model photos – units may vary\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contact \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" today at \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" for more information or to schedule your visit!\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Appartements contemporains tout inclus – Secteur du Plateau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" ✨\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez ces magnifiques appartements modernes tout inclus situés dans un immeuble haut de gamme de 4 étages, conçu pour offrir un style de vie alliant confort, tranquillité et modernité. Grâce à sa structure en béton armé et ses plafonds de 9 pieds, profitez d’une excellente insonorisation ainsi que d’espaces lumineux et élégants.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏙️ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Emplacement exceptionnel – Plateau de Gatineau\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé au cœur du Plateau, à proximité immédiate du \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Parc Central, de l’Agora et de son village urbain, de la bibliothèque municipale\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", ainsi que de tous les services essentiels. À seulement \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"10 minutes du centre-ville d’Ottawa\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", avec un accès rapide au transport en commun, écoles, cliniques médicales, restaurants, commerces et grandes surfaces.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 Le secteur offre également :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Parc à chiens\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Jardin communautaire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Patinoire extérieure\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Jeux d’eau\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Aires de jeux pour enfants\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Tout inclus pour un maximum de confort :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ 5 électroménagers inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Internet inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Câble inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Stationnement extérieur inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Air climatisé\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Chauffage \u0026 électricité inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Espaces de rangement\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✅ Stores aux fenêtres inclus\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"💡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Pourquoi vous allez adorer ce projet :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un environnement moderne et recherché offrant une qualité de vie exceptionnelle au cœur de l’un des secteurs les plus prisés de Gatineau.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📋 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Conditions de location :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📆 Bail minimum de 12 mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📋 Enquête de crédit obligatoire\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🐱🐶 Chats et chiens de moins de 15 lb acceptés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 🚭 Complexe non-fumeur\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• 📸 Photos modèles – les unités peuvent varier\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 Contactez \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Halfred\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" dès maintenant au \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"819-593-3304\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" pour plus d’informations ou pour planifier votre visite!\\\\\\\"}]}]}\\\"}\",\"10-rue-marjorie-d-shackleton\",\"10 Rue Marjorie-D.-Shackleton\",\"Rue Marjorie-D.-Shackleton\",45.428546,-75.804521,[2702,2703],[2701],\"Nuvo\",\"450 - 1104\",67,\"1533\",\"/storage/v1/object/public/halfred/buildings/bc7470bb-44c7-4ff7-9028-f58f4c8810ae/0-Marjorie-D-Shackleton.jpg\",\"/storage/v1/object/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png\",\"/storage/v1/object/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-2.jpg\",\"29c613cb-e9da-464f-8678-52a3c0176351\",\"c7e9f007-7df4-4df2-8965-4fbdba74df07\",\"{\\\"en\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"NEW RENTAL PROJECT IN CHELSEA – ALL INCLUSIVE\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Discover \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"brand-new apartments among the most spacious in Chelsea\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", featuring \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"oversized balconies\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" and designed for a lifestyle that blends \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature, comfort, and modern living\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Located just minutes from Gatineau and Ottawa, this is where \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"peaceful surroundings meet everyday convenience\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Units designed to impress:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• High-quality new construction\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"All-inclusive living\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\": heat, electricity, hot water \u0026 internet\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Full set of appliances included\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Bright open spaces with large windows\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Modern, high-end finishes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Oversized private balconies\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Air conditioning for year-round comfort\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Parking options:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Outdoor: $75/month\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Indoor garage with integrated storage: $150/month\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"An unbeatable location:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Set in the heart of Chelsea, enjoy a peaceful environment surrounded by nature, with easy access to \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"trails, bike paths, local shops, and essential services\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"The perfect balance between \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"outdoor living and city access\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Don’t miss this opportunity!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Units are in high demand—contact us today to schedule your visit.\\\\\\\"}]}]}\\\",\\\"fr\\\":\\\"{\\\\\\\"type\\\\\\\":\\\\\\\"doc\\\\\\\",\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null}},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🏡 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"NOUVEAU PROJET LOCATIF À CHELSEA – TOUT INCLUS\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Découvrez des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"logements neufs parmi les plus spacieux de Chelsea\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", avec \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"balcons surdimensionnés\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\", dans un environnement unique alliant \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"nature, confort et modernité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"À seulement quelques minutes de Gatineau et d’Ottawa, profitez d’un mode de vie recherché, où \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"tranquillité et accessibilité\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" se rencontrent.\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"✨ \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Des unités pensées pour vous impressionner :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Construction neuve de qualité supérieure\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Tout inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\" : chauffage, électricité, eau chaude et internet\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Électroménagers complets inclus\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Espaces lumineux avec grandes fenêtres\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Finitions modernes et haut de gamme\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Balcon privé surdimensionné\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Climatisation pour un confort optimal\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🚗 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Stationnement :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Extérieur : 75$/mois\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"• Intérieur (garage) avec rangement intégré : 150$/mois\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"🌳 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Un emplacement exceptionnel :\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Situé au cœur de Chelsea, profitez d’un cadre paisible entouré de nature, à proximité des \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"sentiers, pistes cyclables, commerces locaux et services essentiels\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Un parfait équilibre entre \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"plein air et vie urbaine\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\".\\\\\\\"}]},{\\\\\\\"type\\\\\\\":\\\\\\\"horizontalRule\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"paragraph\\\\\\\",\\\\\\\"attrs\\\\\\\":{\\\\\\\"textAlign\\\\\\\":null},\\\\\\\"content\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"📞 \\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"marks\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"bold\\\\\\\"}],\\\\\\\"text\\\\\\\":\\\\\\\"Ne manquez pas cette opportunité unique!\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"hardBreak\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"text\\\\\\\",\\\\\\\"text\\\\\\\":\\\\\\\"Les unités sont en forte demande. Contactez-nous dès maintenant pour planifier votre visite.\\\\\\\"}]}]}\\\"}\",\"chelseacreekmulti\",\"95-chemin-old-chelsea\",\"95 Chemin Old Chelsea\",\"Chemin Old Chelsea\",\"95\",\"Chelsea\",45.503356,-75.796062,[2723],[2722],\"Chelsea Creek Multi \",\"1971\",\"953 - 1098\",72,\"2150\",\"/storage/v1/object/public/halfred/buildings/29c613cb-e9da-464f-8678-52a3c0176351/image_8_2.jpg\",\"/storage/v1/object/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg\",\"26f1bc76-d9d7-4874-96aa-d5db0874ab14\",\"f8af9520-39ba-4c35-a08d-ae7ae53b71fb\",\"{\\\"en\\\":\\\"Halfred is proud to introduce the Desrosiers Project, a brand-new, modern rental building designed for today’s lifestyle—clean lines, smart layouts, and comfort built for the future.\\\\n\\\\n🔑 General Features\\\\n\\\\n❄️ Air conditioning included\\\\n\\\\n🌐 Internet included\\\\n\\\\n⚡ Heating and electricity not included\\\\n\\\\n🍽 5 appliances included\\\\n(Note: 3½ units do not include a dishwasher)\\\\n\\\\n🚗 Outdoor parking included\\\\n\\\\n🌿 Private outdoor balconies\\\\n\\\\n🏗 New construction with modern finishes\\\\n\\\\n📋 Credit check required | Minimum 12-month lease\\\\n\\\\n✨ A forward-looking project, perfect for professionals, couples, and families seeking modern comfort, convenience, and predictable all-inclusive living.\\\\n\\\\n📞 Interested?\\\\nContact Halfred today for more information or to reserve your unit.\\\\nAvailability is limited — secure your new home now.\\\",\\\"fr\\\":\\\"Halfred est fier de vous présenter le projet Desrosiers, un immeuble locatif neuf et moderne, conçu pour répondre aux besoins d’aujourd’hui et de demain. Un cadre de vie pratique, confortable et bien pensé.\\\\n\\\\n🔑 Caractéristiques générales\\\\n\\\\n❄️ Climatisation incluse\\\\n\\\\n🌐 Internet inclus\\\\n\\\\n⚡ Chauffage et électricité non inclus\\\\n\\\\n🍽 5 électroménagers inclus\\\\n(À noter : les 3 ½ n’incluent pas de lave-vaisselle)\\\\n\\\\n🚗 Stationnement extérieur inclus\\\\n\\\\n🌿 Balcons extérieurs\\\\n\\\\n🏗 Construction neuve avec finitions modernes\\\\n\\\\n📋 Enquête de crédit obligatoire | Bail minimum de 12 mois\\\\n\\\\n✨ Un projet tourné vers l’avenir, parfait pour les professionnels, couples ou familles recherchant la tranquillité, le confort moderne et la prévisibilité d’un loyer tout inclus.\\\\n\\\\n📞 Intéressé(e)?\\\\nContactez Halfred dès maintenant pour plus d’informations ou pour réserver votre unité.\\\\nLes disponibilités sont limitées — ne laissez pas passer cette opportunité.\\\"}\",\"26-rue-larabie\",\"26 Rue Larabie\",45.492742,-75.610248,[2736],[2735],\"Desrosiers\",\"2026-05-15\",\"/storage/v1/object/public/halfred/buildings/26f1bc76-d9d7-4874-96aa-d5db0874ab14/Capture_d_ecran_2025-12-22_121959.png\",\"/storage/v1/object/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg\",\"address\",{\"_571\":2807,\"_577\":188,\"_578\":700,\"_579\":2808,\"_581\":2809,\"_2810\":2795,\"_2811\":2782,\"_2785\":2792,\"_2812\":2813},\"analytics\",{\"_2801\":2802,\"_2803\":2804,\"_2805\":2806},{\"_2797\":2798,\"_2799\":2800},\"contact\",{\"_2768\":2769,\"_2770\":2771,\"_2737\":2772},\"customDomains\",[2762,2763],\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_2759\":24,\"_2760\":16,\"_2761\":24},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"halfred\",\"templateConfig\",{},\"templateId\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",\"showUnitAvailability\",{\"_2764\":2767},{\"_2764\":2765,\"_2766\":2707},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_2773\":2774,\"_2775\":2776,\"_2777\":700,\"_2778\":1720,\"_573\":2779,\"_577\":2780,\"_2781\":2782,\"_2783\":2784,\"_2785\":2786,\"_2787\":2788,\"_2789\":2790,\"_571\":700},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"civicNumber\",\"Rue Noel\",{\"_2791\":188,\"_2793\":188},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_2791\":2795,\"_2793\":2796},\"country\",{\"_2791\":2792,\"_2793\":2794},\"lat\",45.467906,\"lng\",-75.7344541,\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"45.467989\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",\"lang\",{\"_74\":2842,\"_233\":2754,\"_2843\":2844,\"_594\":2758,\"_565\":2746,\"_49\":2741,\"_2845\":2846,\"_2737\":2738,\"_2742\":2743,\"_29\":2847,\"_2848\":2849,\"_2850\":2851,\"_2852\":2853,\"_2751\":2752,\"_2854\":2855,\"_2856\":2857,\"_2753\":-5,\"_2858\":-5,\"_2757\":-5,\"_2755\":2756,\"_2744\":2745,\"_2859\":-5,\"_2860\":-5,\"_21\":22,\"_2861\":2862,\"_2863\":2864,\"_2865\":2866,\"_236\":2750,\"_2867\":2868,\"_2747\":-7,\"_2869\":2870,\"_2748\":2871,\"_2872\":2873,\"_2874\":2875,\"_2739\":2876,\"_27\":2877,\"_2878\":2879,\"_2880\":2881},\"toast\",\"user\",{\"_2827\":24,\"_2828\":-5,\"_2829\":-5,\"_2830\":-5,\"_2831\":-5,\"_2832\":-5,\"_2833\":-5,\"_2834\":-5,\"_2835\":-5,\"_2836\":-5,\"_2768\":-5,\"_2770\":-5,\"_2837\":-5,\"_2838\":24,\"_2839\":24,\"_2840\":-5,\"_2841\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isStaff\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_236\":2964},\"social\",{\"_2961\":2962,\"_2963\":700},{\"_117\":118,\"_119\":120,\"_121\":122,\"_123\":124,\"_125\":122,\"_126\":122,\"_127\":128,\"_129\":130},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_2958\":2921,\"_60\":16,\"_2959\":24,\"_2960\":2916},\"plan\",{\"_170\":2940,\"_2941\":700,\"_2942\":2943,\"_2944\":2945,\"_2946\":2947,\"_2948\":2949,\"_2950\":389,\"_2951\":2952,\"_2953\":389,\"_2954\":2955,\"_2956\":189,\"_2957\":1202},\"metadata\",{\"_2739\":2876},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_2933\":2934,\"_2848\":2849,\"_2935\":2936,\"_2751\":2752,\"_2937\":2938,\"_2773\":2939},\"bucket\",{\"_2930\":2754,\"_2931\":2932},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_2819\":2927,\"_2928\":2929},\"tosHistory\",[2916],{\"_2890\":16,\"_2891\":-7,\"_2760\":16,\"_2892\":24,\"_2893\":24,\"_2894\":16,\"_2895\":16,\"_2896\":24,\"_2897\":24,\"_2898\":-7,\"_2899\":24,\"_2900\":24,\"_2901\":24,\"_2902\":2903,\"_2904\":24,\"_40\":24,\"_2905\":-7,\"_2906\":-7,\"_2907\":-7,\"_2908\":24,\"_2759\":24,\"_2909\":24,\"_2761\":24,\"_2910\":2911,\"_2912\":16,\"_2913\":24,\"_2914\":24,\"_2915\":24},\"disabledModules\",[],\"banner\",{\"_238\":2888,\"_240\":2889},{\"_2803\":2804,\"_2886\":2887,\"_2801\":2802,\"_2805\":2806},[117],\"payments\",{\"_2882\":16,\"_2883\":16,\"_2884\":24,\"_2885\":24},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_2917\":2918,\"_2919\":2920,\"_2880\":2921,\"_60\":16,\"_58\":2922,\"_2923\":2924,\"_2925\":2926},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_2965\":2966},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/420bc91c1c25a4561a13.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png?width=1200&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/13__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/3__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 17 Rue De Liverpool, Gatineau</title><meta description="🔥 Modern Apartment in Aylmer – Prime Location! 🔥 Enjoy a premium lifestyle in one of Aylmer’s most sought-after areas! Located directly..."/><meta property="og:title" content="Halfred | Apartment rentals | Appartement à louer 17 Rue De Liverpool, Gatineau"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content="🔥 Modern Apartment in Aylmer – Prime Location! 🔥 Enjoy a premium lifestyle in one of Aylmer’s most sought-after areas! Located directly..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png"/><meta property="og:url" content="www.halfred.ca/listings/17-rue-de-liverpool/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/listing-detail.page-D34BzzZ7.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="bd0dc5ae4a4dd43b13a591c9f59b9758-80f4424eeafbcd54-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=bd0dc5ae4a4dd43b13a591c9f59b9758,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.6357406593649815,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/17-rue-de-liverpool/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png?width=800&amp;height=600&amp;quality=80" alt="Gatineau: appartement de 2 chambres à louer par Halfred | Apartment rentals" class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->1</div></div></div><div class="hidden sm:block"><div class="relative overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-96" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/17-rue-de-liverpool/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png?width=1200&amp;height=600&amp;quality=80" alt="Gatineau: appartement de 2 chambres à louer par Halfred | Apartment rentals" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">17 Rue De Liverpool</h1><p class="text-sm text-foreground-600">Gatineau (Plateau)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>1650$</b> à <b>1702$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1200<!-- --> <!-- --> - <!-- -->1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 juillet</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_eiiiuatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description de l&#x27;annonce</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Appartement moderne à Aylmer – Emplacement de choix!</strong> 🔥</p><p>Offrez-vous un style de vie recherché dans l’un des meilleurs secteurs d’Aylmer! Situé <strong>en face de l’école D’Arcy McGee</strong>, à quelques pas du <strong>sentier des Pionniers</strong>, à <strong>5 minutes de la marina</strong> et à <strong>10 minutes d’Ottawa</strong>, ce logement combine <strong>confort, qualité et emplacement</strong>.</p><p>🏡 <strong>Ce qui fait la différence :</strong><br>• Balcon privé pour profiter des belles saisons<br>• Planchers en bois d’ingénierie et céramique au look moderne<br>• Lave-vaisselle inclus<br>• Construction en béton entre les étages (excellente insonorisation)<br>• Air climatisé + échangeur d’air<br>• Salle de bain avec bain et douche séparés<br>• 🚗 1 stationnement inclus (option d’un 2e disponible)</p><p>📍 <strong>Pourquoi vous allez l’adorer :</strong><br>Un environnement <strong>familial, pratique et paisible</strong>, à proximité de tout.</p><p>📌 <strong>Conditions :</strong><br>• 🚭 Non-fumeur<br>• ❌ Chiens non acceptés<br>• ⚡ Non chauffé / non éclairé<br>• 📋 Enquête de crédit obligatoire<br>• 📆 Bail minimum de 12 mois</p><p>📞 <strong>Ne manquez pas cette opportunité!</strong><br>Contactez <strong>Halfred</strong> au <strong>819-593-3304</strong> pour planifier votre visite.</p></div></div></div></div><div class="border-b-[1px] pt-8 pb-8"><div class="space-y-3" data-sentry-component="UnitsSection" data-sentry-source-file="units-section.tsx"><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/17-rue-de-liverpool/details/gallery?unit=fd4f9e93-23ef-4f28-b8b9-3cd008c0620f" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/13__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp?width=96&amp;height=72&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement 2 chambres à Gatineau, 17 Rue De Liverpool" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">14 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->3</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1200<!-- --> <!-- -->pieds carrés</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->3</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1702<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1856<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/17-rue-de-liverpool/details/gallery?unit=5bdf29bd-0aa5-43b9-b409-bc868d284f13" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/3__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp?width=96&amp;height=72&amp;quality=80" alt="2 chambres, Gatineau - appartement Halfred | Apartment rentals à louer" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">14 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->1</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1260<!-- --> <!-- -->pieds carrés</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->3</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1650<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1800<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/5bdf29bd-0aa5-43b9-b409-bc868d284f13/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="pr-8"><div class="flex justify-center space-x-8 pb-4 lg:justify-start" data-sentry-component="WalkScore" data-sentry-source-file="walk-score.tsx"><div class="flex flex-col items-center space-y-2 "><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de mobilité</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3b8uatij5_" aria-label="Walk score of 23" aria-valuenow="23" aria-valuemin="0" aria-valuemax="100" aria-valuetext="23" role="progressbar" data-sentry-element="CircularProgress" data-sentry-source-file="walk-score.tsx"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-danger w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">23</span></div></div></div></div></div><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">17 Rue De Liverpool</h1><p class="text-sm text-foreground-600">Gatineau (Plateau)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>1650$</b> à <b>1702$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1200<!-- --> <!-- --> - <!-- -->1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 juillet</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_1qabeatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/listing-detail.page-D34BzzZ7.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicListingDetailPage": {
338 − "id": "PublicListingDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/:slug/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/listing-detail.page-D34BzzZ7.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/index-C5vezUBD.js",
354 − "/assets/seo.helpers-DUWcGrSj.js",
355 − "/assets/should-revalidate-for-modal-CqioTNup.js",
356 − "/assets/listing-card-vLpuwroq.js",
357 − "/assets/types-BlrrbiGM.js",
358 − "/assets/use-tenant-BWWCVgWC.js",
359 − "/assets/index-DoORTE4j.js",
360 − "/assets/icon-ChitaFhd.js",
361 − "/assets/chunk-T45N425O-C34bNx0L.js",
362 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
363 − "/assets/preload-helper-Djj1Qpxo.js",
364 − "/assets/index-yaZ7Ke31.js",
365 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
366 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
367 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
368 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
369 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
370 − "/assets/settings.types-DE5bLdHg.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicListingDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_634\":-5,\"_635\":-7,\"_636\":637,\"_638\":639,\"_19\":20,\"_17\":640,\"_641\":-5,\"_642\":643,\"_294\":295,\"_644\":-5,\"_645\":-5},\"PublicListingsLayoutPage\",{\"_17\":284,\"_285\":286,\"_287\":288,\"_289\":53,\"_290\":291,\"_292\":293,\"_294\":295,\"_296\":51,\"_297\":51,\"_298\":51},\"PublicListingDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":143,\"_144\":145,\"_89\":146,\"_147\":146,\"_77\":96,\"_148\":149,\"_150\":151,\"_108\":152,\"_111\":153,\"_109\":154,\"_33\":155,\"_156\":157,\"_158\":159,\"_160\":-5,\"_161\":-5,\"_162\":163,\"_164\":53,\"_165\":166,\"_167\":168},\"auth\",{\"_141\":53,\"_142\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136,\"_137\":138},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/17-rue-de-liverpool/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",23,\"Car-Dependent\",\"updated\",\"2026-04-17 21:31:09.261724\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/17Rue-De-Liverpool/lat=45.428934/lng=-75.806856/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.429,\"snapped_lon\",-75.807,\"transit\",{\"_33\":-5,\"_139\":-5,\"_140\":-5},\"summary\",\"score\",\"loggedIn\",\"isStaff\",\"17-rue-de-liverpool\",\"area\",1200,\"17 Rue De Liverpool\",\"name\",\"buildingId\",\"d87f7d25-71bb-4599-9b70-c8d1cd1b2c73\",\"availabilty\",[\"D\",1785542400000],\"Plateau\",-75.806856,45.428934,{\"_211\":282,\"_20\":283},\"images\",[281],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[266,267,268,269,270,271],\"listed\",\"units\",[185,186],\"cardData\",{\"_43\":143,\"_89\":146,\"_77\":96,\"_108\":152,\"_109\":154,\"_111\":153,\"_169\":-5,\"_170\":171,\"_172\":173,\"_144\":174,\"_175\":176,\"_177\":178},\"unitId\",\"bedrooms\",[184],\"bathrooms\",[118],[145,183],\"price\",[181,182],\"availability\",[179,180],\"2026-07-01T00:00:00.000Z\",\"2026-08-01T00:00:00.000Z\",1800,1856,1260,2,{\"_43\":245,\"_144\":145,\"_188\":-5,\"_175\":182,\"_170\":184,\"_172\":118,\"_189\":246,\"_156\":247,\"_164\":53,\"_192\":193,\"_194\":195,\"_196\":197,\"_177\":248,\"_199\":-5,\"_200\":-5,\"_201\":249,\"_36\":250},{\"_43\":187,\"_144\":183,\"_188\":-5,\"_175\":181,\"_170\":184,\"_172\":118,\"_189\":190,\"_156\":191,\"_164\":53,\"_192\":193,\"_194\":195,\"_196\":197,\"_177\":198,\"_199\":-5,\"_200\":-5,\"_201\":202,\"_36\":203},\"5bdf29bd-0aa5-43b9-b409-bc868d284f13\",\"floor\",\"alias\",\"1\",[231,232,233,234,235,236,237,238,239,240,241,242,243,244],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1782864000000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_175\":229,\"_33\":230},[204,205,206,207,208],{\"_90\":225,\"_38\":226},{\"_90\":221,\"_38\":222},{\"_90\":218,\"_38\":210},{\"_90\":214,\"_38\":215},{\"_90\":209,\"_38\":210},{\"_211\":212,\"_20\":213},\"lucide:check\",\"en\",\"Water Tank\",\"Réservoir d'eau\",{\"_211\":216,\"_20\":217},\"lucide:thermometer-sun\",\"Central Air Conditioning\",\"Climatisation centrale\",{\"_211\":219,\"_20\":220},\"Dishwasher\",\"Lave-vaisselle\",{\"_211\":223,\"_20\":224},\"lucide:droplet\",\"Water\",\"Eau\",{\"_211\":227,\"_20\":228},\"lucide:car\",\"Parking\",\"Stationnement\",1650,\"*** Promotion pour un bail de 12 mois ***\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/3__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/4__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/11__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/10__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/2__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/12__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/13__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/14__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/1__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/6__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/7__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/8__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/9__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"/storage/v1/object/public/halfred/units/5bdf29bd-0aa5-43b9-b409-bc868d284f13/5__5bdf29bd-0aa5-43b9-b409-bc868d284f13.webp\",\"fd4f9e93-23ef-4f28-b8b9-3cd008c0620f\",\"3\",[252,253,254,255,256,257,258,259,260,261,262,263,264,265],[\"D\",1785542400000],{\"_175\":251,\"_33\":230},[],1702,\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/13__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/14__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/5__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/4__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/6__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/3__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/2__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/15__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/10__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/11__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/1__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/7__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/8__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",\"/storage/v1/object/public/halfred/units/fd4f9e93-23ef-4f28-b8b9-3cd008c0620f/9__fd4f9e93-23ef-4f28-b8b9-3cd008c0620f.webp\",{\"_90\":280,\"_38\":222},{\"_90\":279,\"_38\":210},{\"_90\":278,\"_38\":215},{\"_90\":277,\"_38\":226},{\"_90\":276,\"_38\":210},{\"_90\":272,\"_38\":273},{\"_211\":274,\"_20\":275},\"lucide:paw-print\",\"Cats Allowed\",\"Chats autorisés\",{\"_211\":219,\"_20\":220},{\"_211\":227,\"_20\":228},{\"_211\":216,\"_20\":217},{\"_211\":212,\"_20\":213},{\"_211\":223,\"_20\":224},\"/storage/v1/object/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Modern Apartment in Aylmer – Prime Location!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Enjoy a premium lifestyle in one of Aylmer’s most sought-after areas! Located \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"directly across from D’Arcy McGee School\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", just steps from the \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pioneers Trail\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"5 minutes from the marina\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", and only \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"10 minutes to Ottawa and downtown Hull\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", this apartment offers the perfect mix of \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"comfort, quality, and location\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What makes this unit stand out:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Private balcony to enjoy the outdoors\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Modern engineered wood and ceramic flooring\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Dishwasher included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Concrete construction between floors for superior soundproofing\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Air conditioning \u0026 air exchanger for year-round comfort\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Bathroom with separate tub and shower\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 parking space included (option for a second available)\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"A \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"peaceful, family-friendly neighborhood\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" close to everything you need.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚭 Non-smoking unit\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ No dogs allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Not heated / not electricity included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Minimum 12-month lease\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Don’t miss out!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" to schedule your visit.\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Appartement moderne à Aylmer – Emplacement de choix!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Offrez-vous un style de vie recherché dans l’un des meilleurs secteurs d’Aylmer! Situé \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"en face de l’école D’Arcy McGee\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", à quelques pas du \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"sentier des Pionniers\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", à \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"5 minutes de la marina\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" et à \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"10 minutes d’Ottawa\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", ce logement combine \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"confort, qualité et emplacement\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce qui fait la différence :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Balcon privé pour profiter des belles saisons\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Planchers en bois d’ingénierie et céramique au look moderne\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Lave-vaisselle inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Construction en béton entre les étages (excellente insonorisation)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Air climatisé + échangeur d’air\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Salle de bain avec bain et douche séparés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 stationnement inclus (option d’un 2e disponible)\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’adorer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Un environnement \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"familial, pratique et paisible\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", à proximité de tout.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Conditions :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚭 Non-fumeur\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ Chiens non acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Non chauffé / non éclairé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Bail minimum de 12 mois\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ne manquez pas cette opportunité!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour planifier votre visite.\\\"}]}]}\",{\"_23\":24,\"_25\":632,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":633,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_175\":402,\"_403\":404,\"_405\":406,\"_144\":407,\"_188\":408,\"_409\":53,\"_172\":410,\"_170\":411,\"_412\":51,\"_413\":53,\"_414\":415,\"_416\":417},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_299\":300,\"_301\":302,\"_303\":304,\"_305\":306,\"_307\":300,\"_308\":309,\"_310\":311},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[388],\"analysisProductsPrice\",{\"_388\":389,\"_390\":391,\"_392\":393,\"_394\":395,\"_396\":393,\"_397\":393,\"_398\":399,\"_400\":401},\"notifications\",{\"_370\":371},\"form\",{\"_363\":53,\"_364\":51,\"_365\":53,\"_366\":53,\"_367\":51,\"_368\":51,\"_369\":51},\"enabledSkus\",\"submissions\",{\"_313\":314,\"_315\":316,\"_317\":318,\"_319\":320,\"_27\":321,\"_322\":-5},\"agent\",{\"_312\":51},\"hideAgentNewSubmissionBtn\",\"all\",[349,350,351,352,353,354,355,359,360,361,362],\"steps\",[349,350,351,352,353,354,355],\"badges\",[339,340,341,342,343,344],\"statuses\",[333,323,325,327,329,331,334,335,336,337,338],{\"_323\":324,\"_325\":326,\"_327\":328,\"_329\":330,\"_331\":332},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_345\":323,\"_347\":324},{\"_345\":325,\"_347\":326},{\"_345\":327,\"_347\":328},{\"_345\":329,\"_347\":330},{\"_345\":331,\"_347\":332},{\"_345\":346,\"_347\":348},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_345\":333,\"_347\":-5,\"_356\":51},{\"_345\":323,\"_347\":324,\"_356\":53,\"_357\":51,\"_358\":51},{\"_345\":325,\"_347\":326,\"_356\":53,\"_357\":51,\"_358\":51},{\"_345\":327,\"_347\":328,\"_356\":53,\"_357\":51,\"_358\":51},{\"_345\":329,\"_347\":330,\"_356\":53,\"_357\":51,\"_358\":51},{\"_345\":331,\"_347\":332,\"_356\":53,\"_357\":51,\"_358\":51},{\"_345\":334,\"_347\":-5,\"_356\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_345\":335,\"_347\":-5,\"_356\":51},{\"_345\":336,\"_347\":-5,\"_356\":51},{\"_345\":337,\"_347\":-5,\"_356\":51},{\"_345\":338,\"_347\":-5,\"_356\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_310\":372,\"_373\":374,\"_17\":375,\"_376\":377},[385,386,387],\"manager\",[],[379,380,381,382,383,384],\"admin\",[378],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,[118,631],\"pricePerMonth\",[118,631],\"pricePerSqft\",[291,291],[291,630],[629,437],\"hasFloor\",[291,184],[291,628],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492],\"availableNeighborhoods\",[418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435],{\"_147\":190,\"_290\":118},{\"_147\":458,\"_290\":118},{\"_147\":457,\"_290\":118},{\"_147\":455,\"_290\":456},{\"_147\":454,\"_290\":118},{\"_147\":453,\"_290\":184},{\"_147\":451,\"_290\":452},{\"_147\":96,\"_290\":450},{\"_147\":448,\"_290\":449},{\"_147\":447,\"_290\":184},{\"_147\":446,\"_290\":118},{\"_147\":152,\"_290\":445},{\"_147\":444,\"_290\":118},{\"_147\":442,\"_290\":443},{\"_147\":441,\"_290\":184},{\"_147\":440,\"_290\":118},{\"_147\":438,\"_290\":439},{\"_147\":436,\"_290\":437},\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",5,\"Plateau \",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"2\",{\"_43\":626,\"_147\":627,\"_38\":226},{\"_43\":624,\"_147\":625,\"_38\":222},{\"_43\":622,\"_147\":623,\"_38\":210},{\"_43\":620,\"_147\":621,\"_38\":215},{\"_43\":615,\"_147\":616,\"_38\":617},{\"_43\":613,\"_147\":614,\"_38\":210},{\"_43\":608,\"_147\":609,\"_38\":610},{\"_43\":606,\"_147\":607,\"_38\":273},{\"_43\":602,\"_147\":603,\"_38\":215},{\"_43\":597,\"_147\":598,\"_38\":599},{\"_43\":593,\"_147\":594,\"_38\":499},{\"_43\":589,\"_147\":590,\"_38\":210},{\"_43\":585,\"_147\":586,\"_38\":539},{\"_43\":581,\"_147\":582,\"_38\":521},{\"_43\":576,\"_147\":577,\"_38\":578},{\"_43\":572,\"_147\":573,\"_38\":521},{\"_43\":567,\"_147\":568,\"_38\":569},{\"_43\":563,\"_147\":564,\"_38\":526},{\"_43\":558,\"_147\":559,\"_38\":560},{\"_43\":554,\"_147\":555,\"_38\":273},{\"_43\":550,\"_147\":551,\"_38\":273},{\"_43\":546,\"_147\":547,\"_38\":539},{\"_43\":542,\"_147\":543,\"_38\":544},{\"_43\":537,\"_147\":538,\"_38\":539},{\"_43\":533,\"_147\":534,\"_38\":499},{\"_43\":529,\"_147\":530,\"_38\":226},{\"_43\":524,\"_147\":525,\"_38\":526},{\"_43\":519,\"_147\":520,\"_38\":521},{\"_43\":514,\"_147\":515,\"_38\":516},{\"_43\":510,\"_147\":511,\"_38\":226},{\"_43\":506,\"_147\":507,\"_38\":215},{\"_43\":502,\"_147\":503,\"_38\":504},{\"_43\":497,\"_147\":498,\"_38\":499},{\"_43\":493,\"_147\":494,\"_38\":210},\"counter-type\",{\"_211\":495,\"_20\":496},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_211\":500,\"_20\":501},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_211\":505,\"_20\":505},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_211\":508,\"_20\":509},\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_211\":512,\"_20\":513},\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_211\":517,\"_20\":518},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_211\":522,\"_20\":523},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_211\":527,\"_20\":528},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_211\":531,\"_20\":532},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_211\":535,\"_20\":536},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_211\":540,\"_20\":541},\"lucide:washing-machine\",\"Dryer\",\"Sèche-linge\",\"gym\",{\"_211\":545,\"_20\":545},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_211\":548,\"_20\":549},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_211\":552,\"_20\":553},\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_211\":556,\"_20\":557},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_211\":561,\"_20\":562},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_211\":565,\"_20\":566},\"Oven\",\"Four\",\"refrigerator\",{\"_211\":570,\"_20\":571},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_211\":574,\"_20\":575},\"Cable\",\"Câble\",\"stove\",{\"_211\":579,\"_20\":580},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_211\":583,\"_20\":584},\"Fiber Internet\",\"Internet fibre\",\"washer\",{\"_211\":587,\"_20\":588},\"Washer\",\"Laveuse\",\"elevator\",{\"_211\":591,\"_20\":592},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_211\":595,\"_20\":596},\"Balcony\",\"Balcon\",\"electricity\",{\"_211\":600,\"_20\":601},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"electric-heating\",{\"_211\":604,\"_20\":605},\"Electric Heating\",\"Chauffage Électrique\",\"cats-allowed\",{\"_211\":274,\"_20\":275},\"blinds\",{\"_211\":611,\"_20\":612},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_211\":212,\"_20\":213},\"washer-dryer-outlet\",{\"_211\":618,\"_20\":619},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"central-air-conditioning\",{\"_211\":216,\"_20\":217},\"dishwasher\",{\"_211\":219,\"_20\":220},\"water\",{\"_211\":223,\"_20\":224},\"parking\",{\"_211\":227,\"_20\":228},4,-1,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_345\":660,\"_43\":44,\"_661\":662,\"_48\":49,\"_33\":34,\"_27\":28,\"_663\":664,\"_23\":24,\"_29\":30,\"_301\":665,\"_666\":667,\"_668\":669,\"_670\":671,\"_40\":41,\"_672\":673,\"_674\":675,\"_42\":-5,\"_676\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_677\":-5,\"_678\":-5,\"_294\":295,\"_679\":680,\"_681\":682,\"_683\":684,\"_38\":39,\"_685\":686,\"_35\":-7,\"_687\":688,\"_36\":689,\"_690\":691,\"_692\":693,\"_25\":694,\"_299\":695,\"_696\":697,\"_698\":699},\"toast\",\"user\",{\"_646\":51,\"_647\":-5,\"_648\":-5,\"_649\":-5,\"_650\":-5,\"_651\":-5,\"_652\":-5,\"_653\":-5,\"_654\":-5,\"_655\":-5,\"_62\":-5,\"_64\":-5,\"_656\":-5,\"_142\":51,\"_657\":51,\"_658\":-5,\"_659\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":783},\"social\",{\"_780\":781,\"_782\":72},{\"_388\":389,\"_390\":391,\"_392\":393,\"_394\":395,\"_396\":393,\"_397\":393,\"_398\":399,\"_400\":401},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_777\":739,\"_331\":53,\"_778\":51,\"_779\":734},\"plan\",{\"_147\":758,\"_759\":72,\"_760\":761,\"_762\":763,\"_764\":765,\"_766\":767,\"_768\":291,\"_769\":770,\"_771\":291,\"_772\":773,\"_774\":450,\"_775\":776},\"metadata\",{\"_25\":694},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_751\":752,\"_666\":667,\"_753\":754,\"_40\":41,\"_755\":756,\"_67\":757},\"bucket\",{\"_748\":44,\"_749\":750},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_639\":745,\"_746\":747},\"tosHistory\",[734],{\"_708\":53,\"_709\":-7,\"_52\":53,\"_710\":51,\"_711\":51,\"_712\":53,\"_713\":53,\"_714\":51,\"_715\":51,\"_716\":-7,\"_717\":51,\"_718\":51,\"_719\":51,\"_720\":721,\"_722\":51,\"_312\":51,\"_723\":-7,\"_724\":-7,\"_725\":-7,\"_726\":51,\"_50\":51,\"_727\":51,\"_54\":51,\"_728\":729,\"_730\":53,\"_731\":51,\"_732\":51,\"_733\":51},\"disabledModules\",[],\"banner\",{\"_211\":706,\"_20\":707},{\"_103\":104,\"_704\":705,\"_101\":102,\"_105\":106},[388],\"payments\",{\"_700\":53,\"_701\":53,\"_702\":51,\"_703\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_735\":736,\"_737\":738,\"_698\":739,\"_331\":53,\"_329\":740,\"_741\":742,\"_743\":744},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_784\":785},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
added tests/fixtures/halfred/5666a53f80cc844c1f80.html +1014 −0
@@ -0,0 +1,1014 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg?width=640&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=640&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg?width=640&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=640&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png?width=640&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png?width=640&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png?width=640&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/3a125037-e08b-44f7-9cf7-f7e3a0eafb0d/20240601_152633.jpg?width=640&amp;height=640&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals</title><meta name="description" content="Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main."/><meta property="og:title" content="Halfred | Apartment rentals"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main."/><meta property="og:url" content="https://www.halfred.ca/fr/listings/list"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/list"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/list"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/list"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/list"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/listings-list.page-CsWk2xLE.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="817e9c66197d747313538b16c0852d95-13a73813a1e66c4c-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=817e9c66197d747313538b16c0852d95,sentry-org_id=476518,sentry-transaction=GET%20%2Flist,sentry-sampled=true,sentry-sample_rand=0.7636683064793848,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex" data-sentry-component="EditorialViewTabs" data-sentry-source-file="view-tabs.tsx"><a aria-current="page" class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] transition-colors bg-[var(--ed-active-fill)] text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Liste</a><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] transition-colors text-[var(--ed-secondary)] hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true"><span></span>Carte</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="pb-4" data-sentry-component="EditorialListPage" data-sentry-source-file="list.tsx"><main class="mx-auto min-h-[60vh] max-w-[1320px] px-[clamp(16px,3vw,40px)] pb-[clamp(28px,4vw,48px)] pt-[clamp(18px,2.2vw,28px)]"><div class="flex items-start gap-[clamp(24px,2.6vw,44px)] lg:min-h-[calc(100dvh-var(--ed-header-h,78px)-16px)]"><section class="min-w-0 flex-[1_1_54%]"><div data-ed-rise="true" class="space-y-3 pb-5 lg:sticky lg:top-[var(--ed-header-h,78px)] lg:z-30 lg:bg-[var(--ed-surface)] lg:pb-8 lg:pt-2"><div class="flex min-h-[32px] items-start justify-between gap-x-4"><div class="flex min-w-0 flex-1 flex-wrap items-center gap-x-2 gap-y-2"><span class="mr-1 whitespace-nowrap text-[13.5px] text-[var(--ed-secondary)] lg:text-[14.5px]"><b class="font-semibold text-[var(--ed-ink)]">174</b> <!-- -->annonces</span></div></div><div class="hidden lg:block"><div class="inline-flex max-w-full flex-wrap items-center gap-x-2 gap-y-2 self-start rounded-[18px] bg-[var(--ed-chip)] py-2 pl-3.5 pr-2.5"><span class="ed-kicker mr-1.5 text-[10px] tracking-[0.12em]">Filtres populaires</span><button type="button" class="inline-flex h-7 items-center gap-1.5 rounded-full border border-[var(--ed-border)] bg-white pl-2 pr-2.5 text-[12.5px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Gatineau<span class="text-[11px] tabular-nums text-[var(--ed-tertiary)]">37</span></button><button type="button" class="inline-flex h-7 items-center gap-1.5 rounded-full border border-[var(--ed-border)] bg-white pl-2 pr-2.5 text-[12.5px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Plateau<span class="text-[11px] tabular-nums text-[var(--ed-tertiary)]">30</span></button><button type="button" class="inline-flex h-7 items-center gap-1.5 rounded-full border border-[var(--ed-border)] bg-white pl-2 pr-2.5 text-[12.5px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Hull<span class="text-[11px] tabular-nums text-[var(--ed-tertiary)]">21</span></button><button type="button" class="inline-flex h-7 items-center gap-1.5 rounded-full border border-[var(--ed-border)] bg-white pl-2 pr-2.5 text-[12.5px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>2 chambres</button></div></div></div><div data-ed-rise="true" data-testid="listings-grid" class="grid grid-cols-1 gap-x-7 gap-y-8 sm:grid-cols-2 sm:gap-y-12 md:grid-cols-3 lg:grid-cols-3"><div class="min-w-0" style="view-transition-name:ed-card-929-vanier-road"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: Spacious maison, 1 - 2 bedrooms, Gatineau" loading="eager" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">36 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">PURE</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">583–1,257 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,320</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-26-rue-larabie"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau: maison with 2 bedrooms, Halfred | Apartment rentals rental" loading="eager" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">Desrosiers</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">644–1,260 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,700</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,559</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-95-chemin-old-chelsea"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this logement with 1 - 2 bedrooms in Chelsea, 95 Chemin Old Chelsea" loading="eager" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">30 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">Chelsea Creek Multi </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Chelsea</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">953–1,098 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$2,150</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,971</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-10-rue-marjorie-d-shackleton"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this unité with 1 - 3 bedrooms in Gatineau, 10 Rue Marjorie-D.-Shackleton" loading="eager" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">25 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">Nuvo</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">474–1,104 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,465</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-30-rue-de-matapedia"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/30-rue-de-matapedia/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: maison with 2 bedrooms for rent, 30 Rue De Matapédia, Gatineau" loading="eager" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">30 Rue De Matapédia</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Pointe-Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">800 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,400</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,300</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-90-rue-du-campagnard"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/90-rue-du-campagnard/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this unité with 1 bedrooms in Gatineau" loading="eager" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">90 Rue Du Campagnard</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,295</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,188</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-190-rue-henri-matisse"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/190-rue-henri-matisse/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Spacious unité with 2 bedrooms for rent in Gatineau" loading="eager" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">190 Rue Henri-Matisse</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,260 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,575</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,443</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-242-rue-de-la-fregate"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/242-rue-de-la-fregate/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/3a125037-e08b-44f7-9cf7-f7e3a0eafb0d/20240601_152633.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals appartement for rent, 2 bedrooms, 242 Rue De La Frégate" loading="eager" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">242 Rue De La Frégate</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000–1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,675</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,536</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-44-rue-de-matapedia"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/44-rue-de-matapedia/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: Spacious logement, 2 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">44 Rue De Matapédia</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">900 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,295</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,000</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-133-rue-patenaude"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/133-rue-patenaude/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: maison for rent, 2 bedrooms, 133 Rue Patenaude, Buckingham" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">133 Rue Patenaude</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Buckingham · Buckingham</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">900 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,550</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,421</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-88-rue-frontenac"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/88-rue-frontenac/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: appartement with 3 bedrooms in Gatineau, 88 Rue Frontenac" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">88 Rue Frontenac</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,420</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,302</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-110-impasse-de-lorraine"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/110-impasse-de-lorraine/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/3d717fcf-a310-4287-84b3-ea55fa811d82/0001-0001.jpg?width=640&amp;height=640&amp;quality=80" alt="unité with 2 bedrooms for rent by Halfred | Apartment rentals, 110 Impasse De Lorraine, Angers" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">110 Impasse De Lorraine</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">angers · Angers</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,350</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,239</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-28-rue-normand"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/28-rue-normand/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/4fb6c85a-5238-4bb0-8418-d47dbe1fbf94/chatgpt-image-11-mai-2026-131208.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals unité for rent in Gatineau: 2 bedrooms, 28 Rue Normand" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">28 Rue Normand</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,414</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,297</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-31-rue-lemieux"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/31-rue-lemieux/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals maison for rent in Gatineau: 1 - 2 bedrooms, 31 Rue Lemieux" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">3 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">31 Rue Lemieux</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">700–1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,275</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,169</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-29-rue-lemieux"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/29-rue-lemieux/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg?width=640&amp;height=640&amp;quality=80" alt="2 bedrooms, Gatineau - Halfred | Apartment rentals maison for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">29 Rue Lemieux</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,747</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,375</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-83-rue-lucien-brault"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/83-rue-lucien-brault/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/1cdbd26c-9364-41c2-92c9-caf897b52387/chatgpt-image-13-mai-2026-142624.png?width=640&amp;height=640&amp;quality=80" alt="appartement with 2 bedrooms for rent by Halfred | Apartment rentals, 83 Rue Lucien-Brault, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">4 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">83 Rue Lucien-Brault</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">790 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,500</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,375</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-24-rue-du-sommet"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/24-rue-du-sommet/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/22882540-b4b3-42d5-942c-16f87e1f2ad6/chatgpt-image-11-mai-2026-120228.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau: maison with 2 bedrooms for rent by Halfred | Apartment rentals" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">24 Rue Du Sommet</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">900 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,325</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,215</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-226-rue-de-la-fregate"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/226-rue-de-la-fregate/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/e5c1230b-e90d-45f6-b4f1-e9c56df31529/20240601_152633.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement with 2 bedrooms for rent, 226 Rue De La Frégate, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">226 Rue De La Frégate</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,650</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,513</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-8-rue-du-cure-armand-larocque"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/8-rue-du-cure-armand-larocque/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/46b6649f-c9c3-42ae-878d-ee0420f81a37/facade.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals maison for rent, 1 bedrooms, 8 Rue Du Curé-Armand-Larocque" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">8 Curé-Armand-Larocque</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,220</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,050</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-54-rue-katimavik"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/54-rue-katimavik/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/5cf3755a-4140-459d-ba3a-e4c42f34c6fa/0__5cf3755a-4140-459d-ba3a-e4c42f34c6fa.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Spacious maison with 2 bedrooms for rent in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">54 Rue Katimavik</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,635</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,499</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-50-impasse-john-roney"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/50-impasse-john-roney/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/bf43c3d6-d5a3-4a02-9726-49c35b444acb/chatgpt-image-12-mai-2026-135601.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: maison for rent, 1 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">50 Impasse john Roney</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,250</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,146</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-22-rue-du-sommet"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/22-rue-du-sommet/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/ea305b6a-7ea8-48c3-80a4-1dcbe2880463/chatgpt-image-7-mai-2026-152840.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: maison with 2 bedrooms, 22 Rue Du Sommet, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">22 rue du Sommet</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">900 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,550</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,395</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-215-rue-de-la-fregate"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/215-rue-de-la-fregate/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/125b3c0b-1e7a-4019-af6f-d34941fc3a98/0002-0002.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau: appartement with 2 bedrooms, Halfred | Apartment rentals rental" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">215 Frégate</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,650</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,513</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0" style="view-transition-name:ed-card-125-boulevard-lorrain"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/125-boulevard-lorrain/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/84687d04-5d07-4547-b653-a2555d0b5417/facade-png.jpg?width=640&amp;height=640&amp;quality=80" alt="1 bedrooms, Gatineau - Halfred | Apartment rentals unité for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">125 Bd Lorrain</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">900 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,295</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$995</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/145-rue-larose/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/8aae1724-2ba3-4813-a052-d838cf6bc376/03afb40a-0ef2-42f1-8056-6afe8d609563?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: unité with 1 - 2 bedrooms for rent, 145 Rue Larose, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">4 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">145 Rue Larose</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650–850 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,300</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/25-rue-pharand/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/92f96d4d-a44d-4c5a-ad2c-c29b5181e757/chatgpt-image-11-mai-2026-124022.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: unité with 2 bedrooms for rent, 25 Rue Pharand, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">3 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">25 Rue Pharand</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">700–718 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,400</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,285</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/357-avenue-de-buckingham/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/ab8c22d5-e72d-42ee-a7ea-599e6bd3d31e/cd1102dd-a02a-4545-afb4-f2bed80ec0b8?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: unité with 3 bedrooms for rent, 357 Avenue De Buckingham, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">357 Avenue De Buckingham</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">East Buckingham · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,650</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,513</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/440-rue-de-pointe-gatineau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/c05f441a-72af-4190-bd5a-60094e8f2811/chatgpt-image-12-mai-2026-133423.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: maison for rent, 2 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">440 Rue De Pointe-Gatineau</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">850 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,425</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,307</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/82-rue-du-britannia/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/16313772-8d62-4a6e-8a3e-9ec3826a94a9/0001-0001.jpg?width=640&amp;height=640&amp;quality=80" alt="2 bedrooms, Halfred | Apartment rentals appartement for rent in Gatineau, 82 Rue Du Britannia" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">82 Rue Du Britannia</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,650</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,480</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/30-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/aa767c12-90aa-40bb-80a4-2000d95576d5/chatgpt-image-11-mai-2026-134243.png?width=640&amp;height=640&amp;quality=80" alt="logement with 2 bedrooms for rent by Halfred | Apartment rentals, 30 Boulevard D&#x27;amsterdam, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">30 Boul. Amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,625</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,490</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/8-rue-katimavik/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/fa732ec6-1c57-44dd-9a8e-73b060e20eaa/955katimavik-19.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: maison for rent, 2 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">8 rue Katimavik</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,727</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,584</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/145-rue-champlain/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4/0__1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: appartement with 1 bedrooms for rent, 145 Rue Champlain, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">145 Rue Champlain</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650–700 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,400</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,150</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/217-chemin-de-la-savane/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/d43fc80a-206e-49a4-8f80-53e98b15c00a/chatgpt-image-7-mai-2026-144808-1.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals logement for rent in Gatineau: 1 bedrooms, 217 Chemin De La Savane" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">217 Chemin de la Savane</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,099</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,008</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/132-rue-de-notre-dame-de-i-ile/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/be56875e-a526-4f45-9fe0-26c224557a81/chatgpt-image-4-mai-2026-160524.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: appartement with 0 bedrooms for rent, 132 Rue De Notre-Dame-De-I&#x27;île, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">132 Rue De Notre-Dame-De-I&#x27;île</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">Studio</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">300 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$850</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$780</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/576-boulevard-des-hautes-plaines/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/5cd46b63-f6ac-4a3f-ad33-e59204355119/1.jpg?width=640&amp;height=640&amp;quality=80" alt="2 bedrooms, Gatineau - Halfred | Apartment rentals maison for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">576 Hautes Plaines</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">895 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,495</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,299</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/86-rue-du-campagnard/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/e91fbdb5-1eb9-468c-b08d-ba764337c1c7/chatgpt-image-29-mai-2026-144508.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Spacious appartement with 1 bedrooms for rent in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">86 Rue Du Campagnard</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,295</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,188</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/11-rue-de-liverpool/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/077ef07d-50bf-47f6-ba57-2d3f4b773669/chatgpt-image-30-avr-2026-154307.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this appartement with 2 bedrooms in Gatineau, 11 Rue De Liverpool" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">11 Rue De Liverpool</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,750</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,605</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/235-rue-de-liverpool/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/6eed1895-1ef5-483e-87fb-3eb81e4bb456/0-Liverpool.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement with 2 bedrooms for rent in Gatineau, 235 Rue De Liverpool" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">235 Rue De Liverpool</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,650</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,475</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/100-rue-du-maquis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/141403da-f50d-40f5-8023-b4ca3d1991eb/maquis-ete.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: logement with 2 bedrooms for rent, Halfred | Apartment rentals real estate" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">100 Rue Du Maquis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000–1,270 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,868</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,713</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/227-rue-de-la-fregate/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/95357dba-82da-4548-99ae-5ce07fb66ea8/0001-0001.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: unité with 2 bedrooms for rent, Halfred | Apartment rentals real estate" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">227 Rue De La Frégate</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,675</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,536</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/219-rue-de-la-fregate/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement with 2 bedrooms for rent, 219 Rue De La Frégate, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">219 Frégate</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,650</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,513</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/120-rue-du-maquis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/e14bb4d8-18f5-481b-9c40-3b3e0eead9c6/maquis-ete.png?width=640&amp;height=640&amp;quality=80" alt="1 - 3 bedrooms, Gatineau - Halfred | Apartment rentals unité for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">3 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">120 Rue Du Maquis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">795–1,270 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,494</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/37-rue-saint-hyacinthe/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/ad469e6c-2bf5-49e4-b05b-eda2862715cd/chatgpt-image-12-mai-2026-115853.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: unité with 1 - 2 bedrooms for rent, 37 Rue Saint-Hyacinthe, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">37 Rue Saint-Hyacinthe</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">500–1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,075</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $986</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/63-rue-dupuis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/aa08deab-4cb1-49b6-98fb-ad9cde3293b4/1.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: maison for rent, 2 bedrooms, 63 Rue Dupuis, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">Oasis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,700 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,725</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,625</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/66-rue-brodeur/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/8bffbd2a-29a5-4a1e-947f-5e8696921e17/chatgpt-image-12-mai-2026-154427.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this maison with 2 bedrooms in Gatineau, 66 Rue Brodeur" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">66 Rue Brodeur</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">760 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,500</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,375</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/69-rue-dupuis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/24308035-7b33-4697-b021-7bab3c82c002/chatgpt-image-5-juin-2026-151558.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals appartement for rent, 2 bedrooms, 69 Rue Dupuis" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">69 Rue Dupuis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,170 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,711</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,569</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/239-rue-de-liverpool/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals logement: 2 bedrooms for rent, 239 Rue De Liverpool, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">239 Rue De Liverpool</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200–1,260 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,650</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,475</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/45-rue-du-cure-andre-preseault/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/e00d5a57-738d-4df6-ab83-f445cfa6ef0d/chatgpt-image-12-mai-2026-134325.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: maison with 2 bedrooms for rent by Halfred | Apartment rentals" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">45 Rue Du Curé-André-Préseault</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">900 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,300</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,200</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/67-rue-dupuis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/91b98fd4-f93a-4e2a-a076-e3ea5fe4351e/chatgpt-image-24-avr-2026-103353.png?width=640&amp;height=640&amp;quality=80" alt="2 bedrooms, Gatineau - Halfred | Apartment rentals logement for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">67 Rue Dupuis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,170 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,917</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,650</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/311-avenue-de-buckingham/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png?width=640&amp;height=640&amp;quality=80" alt="Buckingham rental: maison with 2 bedrooms for rent, Halfred | Apartment rentals real estate" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">311 Avenue De Buckingham</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Buckingham</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,350</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,238</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/32-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/6f120676-6393-4993-8e9e-02e7956cac18/0__6f120676-6393-4993-8e9e-02e7956cac18.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: logement for rent, 1 - 2 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">32 Boulevard D&#x27;amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650–1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,275</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,169</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/614-boulevard-du-plateau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/dc0526fb-178d-498f-9807-59deec6ff1ad/955katimavik-19.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement with 1 bedrooms for rent, 614 Boulevard Du Plateau, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">614 Boulevard Du Plateau</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,250</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,145</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/238-rue-de-la-fregate/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/b92384e4-7b73-4b7b-8bb5-e34f1ef89d56/0002-0002.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement for rent, 2 bedrooms, 238 Rue De La Frégate, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">238 Rue de la Frégate </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,675</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,536</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/137-impasse-john-roney/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/90b13a61-9f7c-42c0-b515-fbee5a8ac67a/137-141-exterieur-web-1.jpg?width=640&amp;height=640&amp;quality=80" alt="appartement with 2 bedrooms for rent by Halfred | Apartment rentals, 137 Impasse John-Roney, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">137 imp John-Roney</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,525</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,490</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/30-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/66de2865-e85c-4bcd-b3e8-fcb7fb5bd71a/chatgpt-image-11-mai-2026-135011.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals appartement: 1 bedrooms for rent, 30 Rue De La Fabrique, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">Muscat 8 </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,296</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,188</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/222-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/4701216f-94f1-49a3-ab92-9e7adb41e97e/chatgpt-image-12-juin-2026-103813.png?width=640&amp;height=640&amp;quality=80" alt="2 bedrooms, Gatineau - Halfred | Apartment rentals unité for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">222 Boulevard D&#x27;amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,695</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,554</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/226-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/d251872b-9f75-48b5-a34f-173c80185a42/4f16b0f5-da70-4fb3-b3e6-98d3493f87d7.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement with 3 bedrooms for rent in Gatineau, 226 Boulevard D&#x27;amsterdam" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">226 Boul. D&#x27;Amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,796</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,647</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/84-boulevard-de-l-amerique-francaise/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/d6292b49-5f2f-4ac0-9221-cc3ef3f81df1/chatgpt-image-13-mai-2026-144332.png?width=640&amp;height=640&amp;quality=80" alt="1 - 3 bedrooms, Gatineau - Halfred | Apartment rentals appartement for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">84 Amérique Française</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1–2<!-- --> <!-- -->salles de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">0–1,400 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,250</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,146</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/817-rue-larouche/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/44bba3b4-67a5-4fc3-9d3e-5c71ad2e9a69/chatgpt-image-13-mai-2026-141043.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this appartement with 2 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">817 Larouche </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">850 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,450</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,330</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/193-chemin-mcconnell/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/021698f9-ebd8-4fcc-adc1-1ad8c1d7014e/chatgpt-image-7-mai-2026-130425.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: maison with 2 bedrooms, 193 Chemin Mcconnell, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">193 Chemin McConnell</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,860</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,705</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/123-boulevard-lorrain/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/6dea55d4-2d55-4872-a4fa-52d6e61ab2d1/facade-png.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau: maison with 1 bedrooms for rent by Halfred | Apartment rentals" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">123 boulevard Lorrain</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">900 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,250</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$995</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/213-rue-du-piree/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/5797ab82-b5ef-4581-b3a0-c3e9c236f300/facade-png.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: unité with 3 bedrooms, 213 Rue Du Pirée, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">213 Rue Du Pirée</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,400 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$2,475</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$2,335</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/17-rue-de-liverpool/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: unité with 2 bedrooms for rent, 17 Rue De Liverpool, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">17 Rue De Liverpool</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200–1,260 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,800</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,650</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/194-rue-henri-matisse/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/987fe064-b0ec-409e-b759-49c31cdf7268/chatgpt-image-7-juil-2026-112401.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this logement with 3 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Nov 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">194 rue Henri-Matisse</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,260 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,850</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,695</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/33-rue-lemieux/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/a59671ee-e225-41af-bc89-3cf1dfb6dbd8/59cc0a61-3a2e-4e02-9d44-9db9894788af?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Spacious unité with 1 - 2 bedrooms for rent in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-[var(--ed-ink)] font-medium text-white shadow-[0_2px_10px_rgba(26,26,23,0.2)] px-3 py-1 text-[12px]">Offre</span><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">33 Rue Lemieux</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">700–1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="text-[var(--ed-secondary)] line-through">$1,340</span><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,229</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/14-rue-roy/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/7914359c-2606-46af-82da-110907c1e98b/0__7914359c-2606-46af-82da-110907c1e98b.webp?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals unité for rent, 3 bedrooms, 14 Rue Roy" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">14 Rue Roy</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,675</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/165-rue-eddy/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/53162c68-ecf7-460c-8e99-8c9a066569e2/chatgpt-image-5-mai-2026-132844.png?width=640&amp;height=640&amp;quality=80" alt="0 - 2 bedrooms, Halfred | Apartment rentals appartement for rent in Gatineau, 165 Rue Eddy" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">5 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">165 Rue Eddy</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">studio<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">300–700 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $975</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/4-rue-katimavik/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/d4b45d49-f0ca-4d3a-9ce9-36e58bfebee1/955katimavik-19.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: Spacious appartement, 2 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">4 Katimavik</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,695</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/130-rue-lombard/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/eba5ab26-2c0a-4768-8469-70d9c3aef8ad/chatgpt-image-4-mai-2026-155321.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals unité for rent in Gatineau: 2 bedrooms, 130 Rue Lombard" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">130 Rue Lombard</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,295</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/32-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/582448bc-e1b8-4ab8-affb-b313d8965495/chatgpt-image-11-mai-2026-143639.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Spacious unité with 1 bedrooms for rent in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">Muscat 8 </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,335</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/189-chemin-mcconnell/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/ca813baa-2b30-4e2c-be21-1a6ffacd20bf/chatgpt-image-9-juin-2026-161743.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: appartement for rent, 1 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">189 Chemin Mcconnell</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,425</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/46-rue-joseph-galipeau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/92f1b218-202c-42ea-a8f7-fca7f232c0bf/1front.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: unité for rent, 2 bedrooms, 46 Rue Joseph-Galipeau, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">46 Rue Joseph-Galipeau</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,650</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/555-rue-de-pointe-gatineau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/a7ff6d4e-c3cc-4862-bfa1-0a98d4db0942/14612434_1.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals logement for rent in Gatineau: 2 bedrooms, 555 Rue De Pointe-Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">3 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">555 Rue De Pointe-Gatineau</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Pointe-Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">900–1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,928</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/36-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/5a9ca168-3b79-4f75-8878-adbc522cdc80/0__5a9ca168-3b79-4f75-8878-adbc522cdc80.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement for rent, 2 bedrooms, 36 Boulevard D&#x27;amsterdam, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">36 Boulevard D&#x27;amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,600</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/46-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/19b68190-c4a1-49da-ad12-5f91e07a96a5/chatgpt-image-10-juin-2026-105814.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: logement with 3 bedrooms for rent, 46 Rue De La Fabrique, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">46 fabrique</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,804</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/988-rue-jacinthe/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/1dbd0c7f-a43a-4f63-b3d9-9885f0afc7fd/chatgpt-image-14-mai-2026-121846.png?width=640&amp;height=640&amp;quality=80" alt="1 bedrooms, Halfred | Apartment rentals logement for rent in Saint-Jérôme, 988 Rue Jacinthe" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">988 Rue Jacinthe</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Saint-Jérôme · Saint-Jérôme</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,075</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/124-rue-lombard/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/cd69cabb-5cc9-4fd5-acf5-e9decbcfe93f/0__capture-decran-2022-09-16-144622.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement with 1 bedrooms for rent in Gatineau, 124 Rue Lombard" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">124 Rue Lombard</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Masson · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">500 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,099</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/249-champlain/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/e45035fb-624e-4cb3-ae04-e866b81cc76e/chatgpt-image-31-aout-2026-104818-png.jpg?width=640&amp;height=640&amp;quality=80" alt="unité with 3 bedrooms for rent by Halfred | Apartment rentals, 249 Champlain, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">249 rue Champlain</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">0 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$2,089</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/44-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/5a12418a-557a-4cc4-bd0e-7691895d2734/chatgpt-image-5-juin-2026-153827.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: unité for rent, 3 bedrooms, 44 Rue De La Fabrique, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">44 Fabrique</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,801</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/247-rue-de-la-fregate/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/58216cde-2c69-4210-a7aa-b0954533f663/0002-0002.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: unité for rent, 2 bedrooms, 247 Rue De La Frégate, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">247 Rue De La Frégate</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,598</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/21-rue-courchesne/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/0d46504d-9ed3-41d3-ba4c-2e3686090e17/chatgpt-image-7-mai-2026-143425.png?width=640&amp;height=640&amp;quality=80" alt="2 bedrooms, Gatineau - Halfred | Apartment rentals unité for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">21 rue Courchesne</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,134</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/14-rue-larabie/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/22241c14-5811-4eae-8714-ff0726c318dc/022241c14-5811-4eae-8714-ff0726c318dc.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals appartement: 3 bedrooms for rent, 14 Rue Larabie, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">14 Rue Larabie</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2,063 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$2,400</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/565-rue-de-pointe-gatineau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/4f6550e0-66ec-4d58-8bbb-74d644e7820b/545_Rue_de_Pointe-Gatineau_115-02.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau: unité with 1 bedrooms, Halfred | Apartment rentals rental" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">565 rue de Pointe Gatineau </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Pointe-Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,171</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/130-rue-du-maquis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/c228126d-942b-46b4-9621-df0e7ec2e9bc/24b9a430-5293-8274-b936-e24e505a6bb9?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement with 2 - 3 bedrooms for rent in Gatineau, 130 Rue Du Maquis" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">130 Rue Du Maquis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,298 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,775</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1792-rue-schryer/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/634b56cf-4ab5-4226-88f4-2c5aeb45a23f/schryer-facade.PNG?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this maison with 2 bedrooms in Gatineau, 1792 Rue Schryer" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1792 Rue Schyer</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,595</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/9-rue-trudeau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/d8e54f87-5f29-4e87-8c26-e25f02839900/chatgpt-image-10-juin-2026-143202.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this unité with 2 - 3 bedrooms in Gatineau, 9 Rue Trudeau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">9 Trudeau</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">0–1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,400</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/2-rue-de-la-fondriere/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/b9a80486-6b48-4e25-939e-c84f59ee2219/chatgpt-image-7-mai-2026-132500.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement with 1 - 2 bedrooms for rent in Gatineau, 2 Rue De La Fondrière" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">3 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">2 Rue De La Fondrière</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">700 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,250</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/77-rue-papineau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/286aba8f-0441-4dc5-a49b-1a72ca288051/0__286aba8f-0441-4dc5-a49b-1a72ca288051.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: maison with 2 bedrooms, 77 Rue Papineau, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">77 rue Papineau</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,650</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/855-boulevard-maloney-est/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/8de520ad-0f6c-49bc-8053-94bd4e5746d2/855-boul-maloney.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: logement with 1 bedrooms for rent, Halfred | Apartment rentals real estate" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">855 Boulevard Maloney Est</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">518 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,295</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1855-rue-saint-louis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/2084d539-7995-4539-8ee7-481b532c7880/1875_Rue_Saint-Louis-1.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: appartement with 3 bedrooms for rent, 1855 Rue Saint-Louis, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1855 rue Saint Louis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Touraine · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">850 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,069</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/66-impasse-john-roney/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/d9c6dbbf-d98b-40ca-b3ed-d6f927388c93/chatgpt-image-5-juin-2026-161747.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: logement with 1 bedrooms for rent, 66 Impasse John-Roney, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">66 Impasse John-Roney</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,250</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1770-rue-schryer/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/3e1c14a0-b7c5-476e-8bc6-6f480065a787/schryer-facade.PNG?width=640&amp;height=640&amp;quality=80" alt="Gatineau: appartement with 2 bedrooms, Halfred | Apartment rentals rental" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1770 Rue Schryer</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">East Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,595</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1794-rue-schryer/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/099f55a3-21fd-4082-bc67-c15de816bad5/0__099f55a3-21fd-4082-bc67-c15de816bad5.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this logement with 2 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1794 Rue Schryer</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200–1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,595</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1845-rue-saint-louis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/70ffc37f-8fb3-4f54-adb1-2bc6e438fe9a/1855_Rue_Saint-Louis_6-01.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: maison for rent, 2 bedrooms, 1845 Rue Saint-Louis, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1845 Saint Louis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Touraine · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">750 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,164</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/56-rue-lucien-brault/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/16fb93ca-c039-4133-b4ac-57e39bdb470b/chatgpt-image-12-mai-2026-143800.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Spacious maison with 2 bedrooms for rent in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">4 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">56 Rue Lucien-Brault</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">737–1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,407</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1804-rue-schryer/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/a03b227b-53cf-44fa-8143-4856be4af4c3/1.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: maison with 2 bedrooms for rent in Gatineau, 1804 Rue Schryer" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1804 Rue Schryer</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">East Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,595</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/9-rue-de-liverpool/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/60c62e13-5402-4ccb-b41e-4f7beb13a07a/chatgpt-image-13-mai-2026-155525.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: maison with 2 bedrooms, 9 Rue De Liverpool, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">9 Rue De Liverpool</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,775</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/331-chemin-de-la-savane/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/4f5af977-c033-4ae7-b4d2-a7f166436ca9/chatgpt-image-11-mai-2026-144528.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this logement with 2 bedrooms in Gatineau, 331 Chemin De La Savane" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">8 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">331 Chemin De La Savane</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Old Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000–1,050 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,690</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/235-rue-papineau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/0f7da5ad-cfa9-46d0-9433-bb6f758a3323/chatgpt-image-12-juin-2026-104948.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: unité for rent, 1 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">235 Rue Papineau</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600–700 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,200</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/209-rue-du-piree/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/c528a867-7970-44ec-bd2c-84bf427b75b4/facade-png.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: unité with 1 - 3 bedrooms, 209 Rue Du Pirée, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">209 Rue Du Pirée</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1–2<!-- --> <!-- -->salles de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">700–1,400 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,392</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/272-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/957dfbb3-0f76-498d-9feb-145f08835ed0/chatgpt-image-11-mai-2026-125342.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: unité with 1 bedrooms for rent in Gatineau, 272 Boulevard D&#x27;amsterdam" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">272 Boulevard D&#x27;amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,263</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/23-rue-de-liverpool/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/ff199afb-12ea-45df-aa08-017ace88926d/chatgpt-image-11-mai-2026-095521.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals appartement for rent, 1 bedrooms, 23 Rue De Liverpool" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">23 Rue De Liverpool</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,250</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/38-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/fd70b466-2c38-44f3-a594-106edaac7097/chatgpt-image-12-juin-2026-102041.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement with 1 bedrooms for rent in Gatineau, 38 Rue De La Fabrique" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">38 Rue De La Fabrique</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,335</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/16-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/140f3eca-df2c-4ab3-922a-ee5dcbad432f/chatgpt-image-5-juin-2026-153827.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this appartement with 3 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">Unnamed Building</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,804</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/25-rue-des-flandres/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/be36cf3f-00b1-47f5-a05e-7e69aff700da/25_Rue_des_Flandres_17-01.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement with 2 bedrooms for rent, 25 Rue Des Flandres, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">25 Rue Des Flandres</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Touraine · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">750 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,400</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/183-chemin-mcconnell/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/06239c3c-d070-439b-9003-368a2fc674d7/chatgpt-image-5-mai-2026-160111.png?width=640&amp;height=640&amp;quality=80" alt="maison with 2 bedrooms for rent by Halfred | Apartment rentals, 183 chemin McConnell , Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">183 chemin McConnell </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,860</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/260-boulevard-de-la-cite/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/1bf2d9b0-3e62-406a-9cd2-11930e86ebf3/0__1.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: unité with 2 bedrooms for rent, Halfred | Apartment rentals real estate" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">4 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">260 Boulevard De La Cité</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Old Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000–1,050 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,690</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/211-rue-de-la-fregate/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/3d8a632a-b1cb-4fd2-bace-6154bd2408b2/0002-0002.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau: unité with 1 bedrooms, Halfred | Apartment rentals rental" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">211 Rue De La Frégate</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,195</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/35-rue-lafreniere/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/728ae93d-c005-483b-bc5d-3f2f77681d7a/25_Rue_Lafreni_re_109-01.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals unité: 1 - 2 bedrooms for rent, 35 Rue Lafrenière, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">3 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">35 rue Lafreniere</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Pointe-Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600–850 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $830</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/19-rue-de-liverpool/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/f9e11522-a7ac-490d-b299-3537453e72d4/chatgpt-image-3-juil-2026-133549.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals logement for rent in Gatineau: 2 bedrooms, 19 Rue De Liverpool" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">19 Rue De Liverpool</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,805</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/6-rue-victoria/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/1e421877-8719-4a76-a44e-6f8052ca483f/0-6%20Rue%20Victoria.png?width=640&amp;height=640&amp;quality=80" alt="1 - 2 bedrooms, Gatineau - Halfred | Apartment rentals unité for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">6 Rue Victoria</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600–700 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,450</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/205-chemin-de-la-savane/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/b77958d4-db7e-43bc-8505-3979e9731c7f/Exterieur-Savane.jpg?width=640&amp;height=640&amp;quality=80" alt="unité with 1 bedrooms for rent by Halfred | Apartment rentals, 205 Chemin De La Savane, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">205 Chemin De La Savane</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,125</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1075-boulevard-maloney-est/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/167980e1-91f0-4c50-9d79-c079730671ca/chatgpt-image-5-juin-2026-150918.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this unité with 1 - 3 bedrooms in Gatineau, 1075 Boulevard Maloney Est" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1075 Boulevard Maloney Est</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600–1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $990</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/141-impasse-john-roney/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/298dfb14-9b05-4453-b643-326fac520882/57johnroney-(9).jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: appartement with 1 bedrooms, 141 Impasse John-Roney, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">Unnamed Building</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,225</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/19-rue-forget/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/3afdee0b-a084-458f-98e5-be5019f5e3c7/chatgpt-image-5-mai-2026-161251.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals logement for rent, 2 bedrooms, 19 Rue Forget" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">19 Rue Forget</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,350</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/228-boulevard-maisonneuve/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/6d3e5fd8-7816-4eda-b5c5-012731841a2a/facade.JPG?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this maison with 1 bedrooms in Gatineau, 228 Boulevard Maisonneuve" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">228 Boulevard Maisonneuve</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">700 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,150</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/299-chemin-freeman/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/1ad6c3b7-9a45-425c-b1f0-874bcdf77d42/chatgpt-image-11-mai-2026-132653.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this logement with 2 bedrooms in Gatineau, 299 Chemin Freeman" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">299 Chemin Freeman</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,500</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/9-rue-du-glenbow/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/cc97da83-3eee-406a-8752-563e588a4631/chatgpt-image-5-juin-2026-162226.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this maison with 2 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">9 Du Glenbow</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,625</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1875-rue-saint-louis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/56e79a73-5a86-4dda-86b6-0ee66508e5c3/1875_Rue_Saint-Louis-1.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: maison with 2 - 3 bedrooms in Gatineau, 1875 Rue Saint-Louis" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">3 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1875 rue Saint Louis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Touraine · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650–750 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,154</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/43-boulevard-de-l-amerique-francaise/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/ff657b33-e7e5-41e3-bb59-377a0e321bbf/2583850f-fca0-44ea-849d-422f9ac17761.png?width=640&amp;height=640&amp;quality=80" alt="2 bedrooms, Gatineau - Halfred | Apartment rentals unité for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">43 Boulevard De L&#x27;amérique-Française </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,600</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/195-mcconnell-road/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/0d8681e9-d0d1-4e86-8c58-c1b86a22cc11/chatgpt-image-22-mai-2026-121048.png?width=640&amp;height=640&amp;quality=80" alt="unité with 1 bedrooms for rent by Halfred | Apartment rentals, 195 McConnell Road, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">195 Chemin McConnell</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600–650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,380</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/11-rue-duquesne/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/bfe3e1ad-69bd-4aab-9774-377431111ad5/01-facade-png.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: maison with 0 - 1 bedrooms for rent, Halfred | Apartment rentals real estate" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">11 Rue Duquesne</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">studio<!-- -->–<!-- -->1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">400–500 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,050</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/40-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/031ad7bb-2e17-49f9-b144-a4e731a30632/chatgpt-image-26-mai-2026-141410.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: maison with 2 bedrooms, 40 Rue De La Fabrique, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">40 Rue De La Fabrique</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,765</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/50-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/91a7d0d5-abdf-4321-8a4a-7ee874b031a4/chatgpt-image-22-mai-2026-140203.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau: maison with 2 bedrooms, Halfred | Apartment rentals rental" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">Muscat 8</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,765</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/41-rue-du-stratus/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/2e7b45a0-d95d-4938-813b-e5649dda3dac/chatgpt-image-12-mai-2026-130146.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals appartement for rent, 2 bedrooms, 41 Rue Du Stratus" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">41 rue du Stratus </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">0 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,550</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/185-chemin-mcconnell/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/02625045-061c-4e39-b079-5ab018c885fc/chatgpt-image-5-mai-2026-160111.png?width=640&amp;height=640&amp;quality=80" alt="maison with 3 bedrooms for rent by Halfred | Apartment rentals, 185 Chemin Mcconnell, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">185 Chemin Mcconnell</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,958</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/278-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/67179769-cd26-4be5-ac8d-72586177a60b/chatgpt-image-11-mai-2026-125342.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: Spacious appartement, 3 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">278 Boulevard d&#x27;Amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,785</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/370-boulevard-albiny-paquette/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/c2247f9d-7c0a-4cda-a409-b00e50785bff/6edba770-7fa1-48fb-9f49-4003fe4c855a?width=640&amp;height=640&amp;quality=80" alt="1 - 3 bedrooms, Halfred | Apartment rentals appartement for rent in Mont-Laurier, 370 Boulevard Albiny-Paquette" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">370 Albiny-Paquette</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Mont-Laurier</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">500–900 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $620</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/19-rue-d-orleans/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/86c59a9d-e13f-4f08-83b7-d1673afdc0a6/30_Rue_d_Orl_ans_4-02.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals unité for rent, 2 bedrooms, 19 Rue D&#x27;orléans" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">19 rue d&#x27;Orléans</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Pointe-Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">750 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,143</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/155-rue-wigwas/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/3b6fd29b-8bfe-4037-9a10-1b8505c232b1/0__3b6fd29b-8bfe-4037-9a10-1b8505c232b1.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement for rent, 1 - 2 bedrooms, 155 Rue Wìgwàs, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">3 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">155 Rue Wìgwàs</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650–967 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,250</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/31-rue-des-flandres/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/389afe55-631b-45fe-a1d7-8e3c19c47111/29-rue-des-flandres-01.jpg?width=640&amp;height=640&amp;quality=80" alt="1 bedrooms, Halfred | Apartment rentals appartement for rent in Gatineau, 31 rue des Flandres" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">31 rue des Flandres</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Québec · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,282</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1780-rue-schryer/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/66dff9c4-f8b7-4d1d-8e04-702997184f75/0-1780%20Rue%20Schryer.PNG?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: maison with 2 bedrooms in Gatineau, 1780 Rue Schryer" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1780 Rue Schryer</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,595</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/27-rue-des-flandres/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/5e2e4d03-5517-4eae-9f1b-c2c0c0568239/27_Rue_des_Flandres-1.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this unité with 1 - 2 bedrooms in Gatineau, 27 Rue Des Flandres" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">3 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">27 rue des Flandres</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Touraine · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650–750 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,450</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/276-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/f7f4879a-0505-48c9-8066-4880b68c51e9/chatgpt-image-11-mai-2026-125342.png?width=640&amp;height=640&amp;quality=80" alt="2 bedrooms, Halfred | Apartment rentals unité for rent in Gatineau, 276 Boulevard D&#x27;amsterdam" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">276 Boulevard D&#x27;amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000–1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,695</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/26-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/ca884e1e-5cd9-4871-9497-28ba5f212791/955katimavik-19.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: unité with 1 bedrooms for rent, Halfred | Apartment rentals real estate" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">26 Bd d&#x27;Amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,275</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/159-rue-eddy/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/6032cc84-5345-49d0-bdd8-22d97cf94346/chatgpt-image-5-mai-2026-132844.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement with 0 - 1 bedrooms for rent in Gatineau, 159 Rue Eddy" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">5 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">159 Rue Eddy</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">studio<!-- -->–<!-- -->1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">300–585 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $975</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/48-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/8d6e3918-0039-48c3-a299-53208d039373/chatgpt-image-26-mai-2026-141410.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this maison with 2 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">48 rue de la Fabrique </h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,765</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1812-rue-schryer/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/188549ec-48d8-4a35-b407-95e5c18d055e/schryer-facade.PNG?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals appartement for rent, 2 bedrooms, 1812 Rue Schryer" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1812 rue Schryer</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,595</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1865-rue-saint-louis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/6cd9ce1a-82c4-4216-9c81-8f29b7d19cc0/1855_Rue_Saint-Louis_6-01.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: appartement with 1 - 3 bedrooms in Gatineau, 1865 Rue Saint-Louis" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1865 rue Saint Louis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Touraine · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650–850 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,183</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/6-rue-des-beaux-arts/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/578ff7aa-8048-43d4-8d36-23154bc95d01/5cd59b082d009-5f1291fb.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: unité with 2 bedrooms for rent by Halfred | Apartment rentals" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">6 rue des Beaux-Arts</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,260 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,650</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/224-boulevard-maisonneuve/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/61ef446c-8731-4b03-8e7d-183ea55c4f22/facade.JPG?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals rental: Spacious maison, 2 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">224 Boulevard Maisonneuve</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,136</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/240-boulevard-alexandre-tache/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/cb846da3-20fd-446f-9b54-17c395294dd4/chatgpt-image-11-mai-2026-121541.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Spacious appartement with 1 - 2 bedrooms for rent in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">7 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">240 Boulevard Alexandre-Taché</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650–1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,025</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/274-boulevard-d-amsterdam/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/512114bb-16ff-49fa-a5f4-be7ba43ba54b/0__512114bb-16ff-49fa-a5f4-be7ba43ba54b.webp?width=640&amp;height=640&amp;quality=80" alt="Gatineau: maison with 3 bedrooms, Halfred | Apartment rentals rental" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">274 Boulevard D&#x27;amsterdam</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,300 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,790</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/104-rue-katimavik/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/38b42c3c-f240-4f74-b45e-05c18c6441d5/chatgpt-image-12-mai-2026-115205.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this appartement with 1 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">104 Rue Katimavik</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,305</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/90-rue-du-campagnard/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/d712ead7-c990-4511-ae8a-1faa9aad2aac/0__d712ead7-c990-4511-ae8a-1faa9aad2aac.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals maison for rent in Gatineau: 1 bedrooms, 90 Rue Du Campagnard" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">90 Rue Du Campagnard</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,295</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/34-rue-de-rochefort/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/ceac451a-df09-438c-abbc-6d2b03ed4ef0/0__ceac451a-df09-438c-abbc-6d2b03ed4ef0.webp?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: appartement with 2 bedrooms for rent, Halfred | Apartment rentals real estate" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">34 Rue De Rochefort</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,070 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,995</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/295-avenue-de-l-hippodrome/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/3988647d-8a00-4ef5-b53f-1dbbace17352/chatgpt-image-10-juil-2026-134814.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement with 1 bedrooms for rent, 295 Avenue De L&#x27;hippodrome, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Nov 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">295 avenue de l&#x27;Hippodrome</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,370</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/6-rue-katimavik/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/c7e4d4f1-02b1-4cf4-9dd1-f3bef076656e/0__5cf3755a-4140-459d-ba3a-e4c42f34c6fa.webp?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement with 2 bedrooms for rent, 6 Rue Katimavik, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">6 Rue Katimavik</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,595</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/255-rue-de-la-fregate/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/680c18df-4c10-4e52-9f29-dcdb3b8d8253/0001-0001.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this logement with 2 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">255 rue de la Frégate</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,598</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/124-rue-katimavik/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/e679b965-dff7-4831-ad1a-61dc86152395/chatgpt-image-4-mars-2026-160532.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau rental: logement with 2 bedrooms for rent, Halfred | Apartment rentals real estate" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Nov 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">124 Rue Katimavik</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,685</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/22-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/d316e4d1-0564-4633-bac0-1fcbbb0fb249/chatgpt-image-5-juin-2026-153827.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau: unité with 1 bedrooms for rent by Halfred | Apartment rentals" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Nov 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">22 Rue De La Fabrique</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">0 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,296</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/122-rue-katimavik/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/fa001da8-92aa-41d1-8724-aac2310af599/0__fa001da8-92aa-41d1-8724-aac2310af599.webp?width=640&amp;height=640&amp;quality=80" alt="1 bedrooms, Gatineau - Halfred | Apartment rentals unité for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Dec 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">122 Rue Katimavik</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,275</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/191-chemin-mcconnell/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/34795aef-8938-4001-82bd-fa052e32aa00/chatgpt-image-9-juin-2026-161743.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: appartement for rent, 2 bedrooms, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">191 Chemin Mcconnell</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,860</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/127-rue-de-britannia/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/960af3bf-a117-4c02-8ed1-04565243d331/chatgpt-image-10-juin-2026-113228.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: logement with 2 - 3 bedrooms for rent, 127 Rue De Britannia, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">127 Rue De Britannia</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250–1,260 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,750</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/74-boulevard-saint-raymond/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/5b58e3a4-6629-4700-bb91-2deae5053af0/5439a31a-ae56-4bdd-bccd-e0e5e6c197e6.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this logement with 2 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">74 Boulevard Saint-Raymond</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,150 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,450</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/156-boulevard-du-plateau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/bd04cd5e-8a41-4c08-967b-a4e27d3b9632/chatgpt-image-5-mai-2026-131714.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: maison for rent, 3 bedrooms, 156 Boulevard Du Plateau, Hull" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">156 Boulevard Du Plateau</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Plateau · Hull</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,650</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/220-rue-de-malartic/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/a3ed2e8c-3635-4b79-b86a-9cc6fff6bfa8/chatgpt-image-22-mai-2026-141642.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: Rent this appartement with 2 bedrooms in Gatineau, 220 Rue De Malartic" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Dec 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">220 Rue De Malartic</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,100 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,470</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/1784-rue-schryer/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/465d5d0e-318c-413a-a198-2750bfdeab80/6cd2e9d7-1c68-4d17-a164-502dd5d04d0f?width=640&amp;height=640&amp;quality=80" alt="2 bedrooms, Gatineau - Halfred | Apartment rentals logement for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Nov 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">1784 rue Schryer</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">East Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,595</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/38-rue-d-orleans/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/d510914b-89ce-4573-8dac-8668e93ca814/30_Rue_d_Orl_ans_4-02.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau: logement with 3 bedrooms, Halfred | Apartment rentals rental" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Jan 1, 2027</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">38 rue d&#x27;Orléans</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Pointe-Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">750 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,209</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/25-rue-lafreniere/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/4ccd3b3f-be74-4a56-93c4-043f6ec5f4fa/25_Rue_Lafreni_re_109-01.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement with 1 bedrooms for rent in Gatineau, 25 Rue Lafrenière" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 9, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">25 rue Lafreniere</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Pointe-Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$843</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/70-rue-latour/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/6981e517-69e1-48d3-a3d2-8214b9ac3227/capture.PNG?width=640&amp;height=640&amp;quality=80" alt="Gatineau: Halfred | Apartment rentals unité for rent, 2 bedrooms, 70 Rue Latour" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Nov 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">70 Latour</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">East Buckingham · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,000 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,200</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/821-rue-larouche/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/4170fde9-d035-4af3-b032-40bdb7dfba1a/chatgpt-image-13-mai-2026-141043.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement for rent, 2 bedrooms, 821 Rue Larouche, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Jan 1, 2027</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">821 Rue Larouche</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Templeton · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">850 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,450</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/94-rue-du-campagnard/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/aa7ef5d1-665c-44aa-ad50-85521004ab2e/chatgpt-image-29-mai-2026-144508.png?width=640&amp;height=640&amp;quality=80" alt="1 bedrooms, Halfred | Apartment rentals unité for rent in Gatineau, 94 Rue Du Campagnard" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">94 Rue Du Campagnard</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,204</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/359-avenue-de-buckingham/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/906cb9e3-2580-45d4-bc80-f423a67d6ad5/facade.PNG?width=640&amp;height=640&amp;quality=80" alt="unité with 1 bedrooms for rent by Halfred | Apartment rentals, 359 Avenue De Buckingham, Buckingham" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Nov 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">359 Avenue De Buckingham</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Buckingham · Buckingham</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,045</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/6-rue-du-cure-armand-larocque/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/6900c1b8-c06a-4a76-80eb-92b210e159ae/chatgpt-image-12-mai-2026-150158.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: logement with 3 bedrooms for rent in Gatineau, 6 Rue Du Curé-Armand-Larocque" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">6 Curé-Armand-Larocque</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,695</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/149-rue-saint-redempteur/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/2aea5f59-eaf7-43af-8c8c-fb4feb559131/1-3.jpg?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals appartement: 0 bedrooms for rent, 149 Rue Saint-Rédempteur, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Dec 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">149 Rue Saint-Rédempteur</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Hull · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">Studio</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$900</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/19-rue-de-matapedia/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/1b289572-c06a-4dc5-a038-0efc1f2ed2f5/chatgpt-image-may-6-2026-at-091033-am.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals: appartement for rent, 2 bedrooms, 19 Rue De Matapédia, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Nov 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">19 Rue De Matapédia</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">2<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">900 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,300</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/215-chemin-de-la-savane/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/8d0311ab-3d42-4109-9820-2d441a0eb4d9/215_chemin_de_la_savanne.PNG?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: unité with 1 bedrooms for rent, 215 Chemin De La Savane, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">215 chemin de la savane</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Pointe-Gatineau · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,150</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/36-rue-de-la-fabrique/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/60ca83de-3ad2-44d1-b3b3-7d2ba774bf7f/chatgpt-image-11-mai-2026-153814.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: logement with 1 - 3 bedrooms for rent, 36 Rue De La Fabrique, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">2 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">36 Rue De La Fabrique</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650–1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,335</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/545-rue-de-pointe-gatineau/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/89ebc6a5-94ac-43df-9412-0557ff224d37/545_Rue_de_Pointe-Gatineau_115-03.jpg?width=640&amp;height=640&amp;quality=80" alt="appartement with 0 - 3 bedrooms for rent by Halfred | Apartment rentals, 545 rue de Pointe Gatineau, Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><span class="absolute bottom-2.5 left-2.5 z-10 rounded-md bg-black/60 px-2 py-0.5 text-[11px] font-medium text-white">5 unités</span><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">545 rue de Pointe Gatineau</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Québec · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">studio<!-- -->–<!-- -->3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">600–650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">À partir de $1,044</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/140-rue-du-maquis/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/879ed7ea-e716-4518-abfe-42ef3a99056e/chatgpt-image-5-juin-2026-155918.png?width=640&amp;height=640&amp;quality=80" alt="Halfred | Apartment rentals real estate: Rent this appartement with 3 bedrooms in Gatineau" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Dec 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">140 Rue Du Maquis</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,250 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,895</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/102-rue-de-britannia/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/8d9966b8-787d-444d-bf2a-51c9b08e0da6/Capture_d_cran_2025-11-13_071737.png?width=640&amp;height=640&amp;quality=80" alt="Gatineau: unité with 3 bedrooms, Halfred | Apartment rentals rental" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Dec 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">102 Rue De Britannia</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Aylmer · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1,200 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,671</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/13279-rue-lemonde/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/1155e1d0-53be-4926-8e33-bb462d37e06e/facade.jpg?width=640&amp;height=640&amp;quality=80" alt="3 bedrooms, Mirabel - Halfred | Apartment rentals appartement for rent" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Oct 1, 2026</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">13279 Lemonde</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Mirabel</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">3<!-- --> <!-- -->chambres</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">0 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,400</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div><div class="min-w-0"><a data-testid="listing-card" class="group block min-w-0" data-sentry-element="RemixLink" data-sentry-component="EditorialListingCard" data-sentry-source-file="listing-card.tsx" href="/fr/listings/29-rue-des-flandres/details" data-discover="true"><div class="relative aspect-[4/3] overflow-hidden rounded-[16px] sm:aspect-square"><div aria-hidden="true" class="ed-thumb absolute inset-0"></div><img src="/storage/v1/render/image/public/halfred/buildings/bd89aa91-62d0-48ac-981d-858e10515b1d/29_Rue_des_Flandres-01.jpg?width=640&amp;height=640&amp;quality=80" alt="Gatineau: logement with 1 bedrooms, Halfred | Apartment rentals rental" loading="lazy" class="absolute inset-0 h-full w-full object-cover transition-transform duration-700 [@media(hover:hover)]:group-hover:scale-[1.05] "/><div class="absolute left-3 top-3 z-10 flex flex-wrap items-center gap-1.5"><span class="flex flex-wrap items-center gap-1.5" data-sentry-component="EditorialStatusPills" data-sentry-source-file="listing-card.tsx"><span class="rounded-full bg-white/95 font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)] px-3 py-1 text-[12px]">Dernières unités</span></span><span class="rounded-full bg-white/95 px-2.5 py-[3px] text-[11px] font-medium text-[var(--ed-ink)] shadow-[0_2px_10px_rgba(26,26,23,0.14)]">Disponible le Jan 1, 2027</span></div></div><div class="mt-2.5"><h3 class="ed-serif m-0 min-w-0 truncate text-[15px] font-medium leading-snug tracking-[-0.005em] text-[var(--ed-ink)]">29 rue des Flandres</h3><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]">Touraine · Gatineau</p><p class="m-0 mt-0.5 text-[13px] leading-[1.45] text-[var(--ed-secondary)]"><span class="block "><span class="flex flex-wrap items-center gap-x-3 gap-y-1"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->chambre</span></span><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">1<!-- --> <!-- -->salle de bain</span></span></span><span class="mt-1 flex items-center"><span class="inline-flex min-w-0 items-center gap-1.5" data-sentry-component="SpecItem" data-sentry-source-file="listing-card.tsx"><span></span><span class="min-w-0">650 pi²</span></span></span></span></p><p class="m-0 mt-1 flex flex-wrap items-baseline gap-x-1.5 text-[14px] leading-[1.4]" data-sentry-component="line" data-sentry-source-file="listing-card.tsx"><span class="font-bold tracking-[-0.01em] text-[var(--ed-ink)]">$1,137</span><span class="text-[12px] text-[var(--ed-secondary)]">/ mois</span></p></div></a></div></div></section><aside data-ed-rise="2" class="sticky top-[calc(var(--ed-header-h,78px)+8px)] hidden max-h-[1200px] min-h-[480px] flex-[1_1_46%] lg:block lg:h-[calc(100dvh-var(--ed-header-h,78px)-16px)]" style="view-transition-name:ed-map-pane"><!--$?--><template id="B:0"></template><div class="relative overflow-hidden bg-[#efede6] h-full rounded-[22px] border border-[var(--ed-hairline)]" data-sentry-component="MapLoadingShell" data-sentry-source-file="listings-map.lazy.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div class="pointer-events-none absolute inset-0 flex items-center justify-center"><span class="h-7 w-7 animate-spin rounded-full border-2 border-[var(--ed-border)] border-t-[var(--ed-ink)]"></span></div></div><!--/$--></aside></div></main></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-ink)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/listings-list.page-CsWk2xLE.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",
323 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
324 + "/assets/index-DGzYOEP8.js",
325 + "/assets/Item-DuavYi1u.js",
326 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
327 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
328 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
329 + "/assets/useControlledState-C6ovzWeF.js",
330 + "/assets/useField-CBKMx-DQ.js",
331 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
332 + "/assets/chunk-M3MASYO7-COH9P04M.js",
333 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
334 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
335 + "/assets/useToggleState-DY8z2i0t.js",
336 + "/assets/index-BzZ-MzUq.js",
337 + "/assets/useToggle-QKKEqo_x.js",
338 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
339 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
340 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
341 + "/assets/use-tenant-wE0zDJ1a.js",
342 + "/assets/use-debounce-D23YJQRM.js",
343 + "/assets/use-debounced-callback-Do1iUmMt.js",
344 + "/assets/locale-switcher-kD-MOI9x.js",
345 + "/assets/use-show-profile-modal-Cgfts1ut.js",
346 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
347 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
348 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
349 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
350 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
351 + "/assets/getItemCount-BQolBIkZ.js",
352 + "/assets/useSelectableItem-Ds0Ihirs.js",
353 + "/assets/useDescription-DF6TDnVi.js",
354 + "/assets/index-D8QbWu84.js",
355 + "/assets/useMenuTriggerState-CHKcWOlC.js",
356 + "/assets/useMenuTrigger-DKFjnCNZ.js",
357 + "/assets/show-BOEsnqQk.js",
358 + "/assets/index-BxwHZyk5.js",
359 + "/assets/use-screenshot-mode-RoZeXH-d.js",
360 + "/assets/storage-image-BRiFwsnF.js",
361 + "/assets/debug-build-VZlf1Aof.js",
362 + "/assets/empty-image-DeSmMdF3.js",
363 + "/assets/storage-JzkTKPy4.js",
364 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
365 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
366 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
367 + "/assets/use-auth-D_t8q_v4.js",
368 + "/assets/OtpInput-CJhAm1Gc.js",
369 + "/assets/roles-Cde3N6LE.js",
370 + "/assets/chunk-T45N425O-CCF24x8B.js",
371 + "/assets/index-CwlnhZHs.js",
372 + "/assets/tooltip-_QqyKTfK.js",
373 + "/assets/eversa-logo-DmkjJgjq.js",
374 + "/assets/exports-mapbox-Dy-MMXYe.js",
375 + "/assets/client-CpT78rmL.js",
376 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
377 + "/assets/useProgressBar-DhWwJb16.js",
378 + "/assets/index-Cy2bmlj7.js",
379 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
380 + "/assets/std-cron-C0Hf3jWh.js",
381 + "/assets/legacy-date-D-X4tG6T.js",
382 + "/assets/use-is-iframe-DIKEri2l.js",
383 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
384 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
385 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
386 + "/assets/link-CrZmIZC6.js",
387 + "/assets/rich-text-display--Qas76Hg.js",
388 + "/assets/utils-D0p-v41w.js",
389 + "/assets/signature-block-8SMePIUg.js",
390 + "/assets/index-DqzG1Q9x.js",
391 + "/assets/client-only-BGvaz0Jn.js",
392 + "/assets/use-hydrated-nn_6IPIK.js",
393 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
394 + "/assets/settings.types-CTRD0B_j.js",
395 + "/assets/input-CkQmsiJb.js",
396 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
397 + "/assets/extends-BSSSaanF.js",
398 + "/assets/user-menu-BuoWMPG0.js",
399 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
400 + "/assets/index-CRabYQb-.js",
401 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
402 + "/assets/Section-CaP3oBph.js",
403 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
404 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
405 + "/assets/LiveAnnouncer-CnNJa9NI.js",
406 + "/assets/useUpdateEffect-DsCDOPa2.js",
407 + "/assets/index-BT5H2sjL.js",
408 + "/assets/features-animation-BCPmlPPs.js",
409 + "/assets/index-8boKsGvQ.js",
410 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
411 + "/assets/use-server-command-DJ0CxbuT.js",
412 + "/assets/create-rpc-stub-SmqOCk37.js",
413 + "/assets/index-BoeY4VQ9.js",
414 + "/assets/app-form-CRPZmLNY.js",
415 + "/assets/button-KaTnxiWj.js",
416 + "/assets/spinner-DDyy7LQF.js",
417 + "/assets/zod-CmeTJI5u.js",
418 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
419 + "/assets/form-hidden-input-DI5aJPYE.js",
420 + "/assets/form-input-C6s4itpV.js",
421 + "/assets/system-preferences-DL4TO29S.js",
422 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
423 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
424 + "/assets/use-in-view-BNnh4L6M.js",
425 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js",
426 + "/assets/should-revalidate-for-modal-BjoLrI2F.js"
427 + ],
428 + "css": [
429 + "/assets/rich-text-editor-D9Rskyfk.css#",
430 + "/assets/listing-card-CI-uxcFh.css"
431 + ]
432 + },
433 + "PublicListingsListPage": {
434 + "id": "PublicListingsListPage",
435 + "parentId": "PublicListingsLayoutPage",
436 + "path": "list",
437 + "hasAction": false,
438 + "hasLoader": true,
439 + "hasClientAction": false,
440 + "hasClientLoader": false,
441 + "hasClientMiddleware": false,
442 + "hasDefaultExport": true,
443 + "hasErrorBoundary": false,
444 + "module": "/assets/listings-list.page-CsWk2xLE.js",
445 + "imports": [
446 + "/assets/chunk-QUQL4437-m7Whu12z.js",
447 + "/assets/jsx-runtime-umhk6iWe.js",
448 + "/assets/runtime-MtUT-9pW.js",
449 + "/assets/instance-Dwq5XJYG.js",
450 + "/assets/locale-rlhQ6FjN.js",
451 + "/assets/use-localized-path-BMxKZwMg.js",
452 + "/assets/seo.helpers-rKbdQkhM.js",
453 + "/assets/listing-card-Cg3TPyWe.js",
454 + "/assets/types-BKXG3Vd5.js",
455 + "/assets/i18n-CTdcZBaW.js",
456 + "/assets/date-C7fQmg2U.js",
457 + "/assets/format-BKStloXP.js",
458 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
459 + "/assets/formatDistanceToNow-BvwR-I5H.js",
460 + "/assets/paths-CiQnXl4X.js",
461 + "/assets/use-tenant-wE0zDJ1a.js",
462 + "/assets/runtime-TD3m583z.js",
463 + "/assets/exports-mapbox-Dy-MMXYe.js",
464 + "/assets/index-DJnVLKJF.js",
465 + "/assets/use-locale-BnwvbFV-.js",
466 + "/assets/icon-D77RBjQx.js",
467 + "/assets/show-BOEsnqQk.js",
468 + "/assets/client-CpT78rmL.js",
469 + "/assets/index-CXP4lC37.js",
470 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
471 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
472 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
473 + "/assets/useProgressBar-DhWwJb16.js",
474 + "/assets/preload-helper-Cer9inx8.js",
475 + "/assets/index-DmhvH8SD.js",
476 + "/assets/number-lhSI2oqU.js",
477 + "/assets/useLabel-FzyH2LZi.js",
478 + "/assets/useLabels-BL4rQGMb.js",
479 + "/assets/useNumberFormatter-DG2VO0C1.js",
480 + "/assets/context-C7uvIu_A.js",
481 + "/assets/NumberFormatter-BWU_gJyt.js",
482 + "/assets/index-Cy2bmlj7.js",
483 + "/assets/index-blsAimsU.js",
484 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
485 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
486 + "/assets/mergeRefs-C8xtGVp3.js",
487 + "/assets/useControlledState-Dl_rDvO0.js",
488 + "/assets/FocusScope-CWuTxhav.js",
489 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
490 + "/assets/useField-CBKMx-DQ.js",
491 + "/assets/useFormValidation-BlL8vXtt.js",
492 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
493 + "/assets/std-cron-C0Hf3jWh.js",
494 + "/assets/legacy-date-D-X4tG6T.js",
495 + "/assets/listingTypes-CkyCgPCr.js",
496 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
497 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
498 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
499 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
500 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
501 + "/assets/useButton-DZK-beuH.js",
502 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
503 + "/assets/useOverlayTriggerState-woQJgDxB.js",
504 + "/assets/index-B915wqUE.js",
505 + "/assets/accelerated-values-ClBEnI7v.js",
506 + "/assets/useTreeState-Dx1W0YuM.js",
507 + "/assets/SelectionManager-BmJrKgY4.js",
508 + "/assets/scrollIntoView-BWAA50rI.js",
509 + "/assets/isScrollable-Dnxj3NSq.js",
510 + "/assets/useSelectableList-BOP0KhmN.js",
511 + "/assets/DOMLayoutDelegate-Brany3qe.js",
512 + "/assets/useCollator-CbJkpXG2.js",
513 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
514 + "/assets/index-DGzYOEP8.js",
515 + "/assets/Item-DuavYi1u.js",
516 + "/assets/use-is-iframe-DIKEri2l.js",
517 + "/assets/floor-label-CGeBlKR2.js",
518 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
519 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
520 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
521 + "/assets/storage-image-BRiFwsnF.js",
522 + "/assets/debug-build-VZlf1Aof.js",
523 + "/assets/empty-image-DeSmMdF3.js",
524 + "/assets/storage-JzkTKPy4.js",
525 + "/assets/link-CrZmIZC6.js",
526 + "/assets/chunk-T45N425O-CCF24x8B.js",
527 + "/assets/modal-BG3X61k6.js",
528 + "/assets/modal-root-haL454LR.js",
529 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
530 + "/assets/useDialog-Bh9KG6MB.js",
531 + "/assets/VisuallyHidden-D-Q2SU4O.js",
532 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
533 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
534 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
535 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
536 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
537 + "/assets/proxy-BlmPTkqy.js",
538 + "/assets/create-visual-element-Cc1-iv7S.js",
539 + "/assets/layout-CqatgvGE.js",
540 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
541 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
542 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
543 + "/assets/index-DuhTrrt1.js",
544 + "/assets/useModal-C3khzgYn.js",
545 + "/assets/index-BxwHZyk5.js",
546 + "/assets/rich-text-display--Qas76Hg.js",
547 + "/assets/utils-D0p-v41w.js",
548 + "/assets/signature-block-8SMePIUg.js",
549 + "/assets/index-DqzG1Q9x.js",
550 + "/assets/client-only-BGvaz0Jn.js",
551 + "/assets/use-hydrated-nn_6IPIK.js",
552 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
553 + "/assets/chunk-M3MASYO7-COH9P04M.js",
554 + "/assets/settings.types-CTRD0B_j.js",
555 + "/assets/use-show-profile-modal-Cgfts1ut.js",
556 + "/assets/input-CkQmsiJb.js",
557 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
558 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
559 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
560 + "/assets/useControlledState-C6ovzWeF.js",
561 + "/assets/extends-BSSSaanF.js",
562 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
563 + "/assets/use-debounce-D23YJQRM.js",
564 + "/assets/use-debounced-callback-Do1iUmMt.js",
565 + "/assets/use-auth-D_t8q_v4.js",
566 + "/assets/OtpInput-CJhAm1Gc.js",
567 + "/assets/roles-Cde3N6LE.js",
568 + "/assets/index-CwlnhZHs.js",
569 + "/assets/index-BzZ-MzUq.js",
570 + "/assets/powered-by-eversa-BF980dJS.js",
571 + "/assets/tooltip-_QqyKTfK.js",
572 + "/assets/eversa-logo-DmkjJgjq.js",
573 + "/assets/use-screenshot-mode-RoZeXH-d.js",
574 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
575 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
576 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
577 + "/assets/getItemCount-BQolBIkZ.js",
578 + "/assets/useSelectableItem-Ds0Ihirs.js",
579 + "/assets/useDescription-DF6TDnVi.js",
580 + "/assets/index-D8QbWu84.js",
581 + "/assets/useMenuTriggerState-CHKcWOlC.js",
582 + "/assets/useMenuTrigger-DKFjnCNZ.js",
583 + "/assets/user-menu-BuoWMPG0.js",
584 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
585 + "/assets/index-CRabYQb-.js",
586 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
587 + "/assets/Section-CaP3oBph.js",
588 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
589 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
590 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
591 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
592 + "/assets/LiveAnnouncer-CnNJa9NI.js",
593 + "/assets/useUpdateEffect-DsCDOPa2.js",
594 + "/assets/index-BT5H2sjL.js",
595 + "/assets/features-animation-BCPmlPPs.js",
596 + "/assets/index-8boKsGvQ.js",
597 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
598 + "/assets/use-server-command-DJ0CxbuT.js",
599 + "/assets/create-rpc-stub-SmqOCk37.js",
600 + "/assets/index-BoeY4VQ9.js",
601 + "/assets/app-form-CRPZmLNY.js",
602 + "/assets/button-KaTnxiWj.js",
603 + "/assets/spinner-DDyy7LQF.js",
604 + "/assets/zod-CmeTJI5u.js",
605 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
606 + "/assets/form-hidden-input-DI5aJPYE.js",
607 + "/assets/form-input-C6s4itpV.js",
608 + "/assets/system-preferences-DL4TO29S.js",
609 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
610 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
611 + "/assets/use-in-view-BNnh4L6M.js",
612 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
613 + ],
614 + "css": [
615 + "/assets/rich-text-editor-D9Rskyfk.css#",
616 + "/assets/listing-card-CI-uxcFh.css"
617 + ]
618 + },
619 + "PublicHomePage": {
620 + "id": "PublicHomePage",
621 + "parentId": "public-language",
622 + "path": "",
623 + "hasAction": false,
624 + "hasLoader": true,
625 + "hasClientAction": false,
626 + "hasClientLoader": false,
627 + "hasClientMiddleware": false,
628 + "hasDefaultExport": true,
629 + "hasErrorBoundary": false,
630 + "module": "/assets/home.page-CEey5s8m.js",
631 + "imports": [
632 + "/assets/chunk-QUQL4437-m7Whu12z.js",
633 + "/assets/jsx-runtime-umhk6iWe.js",
634 + "/assets/runtime-MtUT-9pW.js",
635 + "/assets/facebook-pixel-B5MxbSaJ.js",
636 + "/assets/google-analytics-D-bO2gMa.js",
637 + "/assets/lead-capture-config.helpers-DpZ6az3C.js",
638 + "/assets/global-progress-CjDASA7T.js",
639 + "/assets/header-BBMyfPB0.js",
640 + "/assets/footer-Byz07yjl.js",
641 + "/assets/listing-card-Cg3TPyWe.js",
642 + "/assets/seo.helpers-rKbdQkhM.js",
643 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
644 + "/assets/types-BKXG3Vd5.js",
645 + "/assets/index-CXP4lC37.js",
646 + "/assets/use-locale-BnwvbFV-.js",
647 + "/assets/instance-Dwq5XJYG.js",
648 + "/assets/locale-rlhQ6FjN.js",
649 + "/assets/lead-capture-layout-D9cSW77z.js",
650 + "/assets/locale-switcher-kD-MOI9x.js",
651 + "/assets/use-show-profile-modal-Cgfts1ut.js",
652 + "/assets/i18n-CTdcZBaW.js",
653 + "/assets/date-C7fQmg2U.js",
654 + "/assets/format-BKStloXP.js",
655 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
656 + "/assets/formatDistanceToNow-BvwR-I5H.js",
657 + "/assets/paths-CiQnXl4X.js",
658 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
659 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
660 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
661 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
662 + "/assets/preload-helper-Cer9inx8.js",
663 + "/assets/index-DmhvH8SD.js",
664 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
665 + "/assets/Item-DuavYi1u.js",
666 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
667 + "/assets/useDialog-Bh9KG6MB.js",
668 + "/assets/VisuallyHidden-D-Q2SU4O.js",
669 + "/assets/isScrollable-Dnxj3NSq.js",
670 + "/assets/useLabels-BL4rQGMb.js",
671 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
672 + "/assets/context-C7uvIu_A.js",
673 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
674 + "/assets/FocusScope-CWuTxhav.js",
675 + "/assets/index-DJnVLKJF.js",
676 + "/assets/useOverlayTriggerState-woQJgDxB.js",
677 + "/assets/useControlledState-Dl_rDvO0.js",
678 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
679 + "/assets/number-lhSI2oqU.js",
680 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
681 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
682 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
683 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
684 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
685 + "/assets/index-DuhTrrt1.js",
686 + "/assets/mergeRefs-C8xtGVp3.js",
687 + "/assets/getItemCount-BQolBIkZ.js",
688 + "/assets/SelectionManager-BmJrKgY4.js",
689 + "/assets/scrollIntoView-BWAA50rI.js",
690 + "/assets/useSelectableItem-Ds0Ihirs.js",
691 + "/assets/useDescription-DF6TDnVi.js",
692 + "/assets/index-D8QbWu84.js",
693 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
694 + "/assets/useSelectableList-BOP0KhmN.js",
695 + "/assets/DOMLayoutDelegate-Brany3qe.js",
696 + "/assets/useCollator-CbJkpXG2.js",
697 + "/assets/useTreeState-Dx1W0YuM.js",
698 + "/assets/useMenuTriggerState-CHKcWOlC.js",
699 + "/assets/useMenuTrigger-DKFjnCNZ.js",
700 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
701 + "/assets/index-blsAimsU.js",
702 + "/assets/storage-image-BRiFwsnF.js",
703 + "/assets/icon-D77RBjQx.js",
704 + "/assets/debug-build-VZlf1Aof.js",
705 + "/assets/empty-image-DeSmMdF3.js",
706 + "/assets/storage-JzkTKPy4.js",
707 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
708 + "/assets/use-tenant-wE0zDJ1a.js",
709 + "/assets/use-localized-path-BMxKZwMg.js",
710 + "/assets/modal-BG3X61k6.js",
711 + "/assets/runtime-TD3m583z.js",
712 + "/assets/modal-root-haL454LR.js",
713 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
714 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
715 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
716 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
717 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
718 + "/assets/proxy-BlmPTkqy.js",
719 + "/assets/create-visual-element-Cc1-iv7S.js",
720 + "/assets/accelerated-values-ClBEnI7v.js",
721 + "/assets/layout-CqatgvGE.js",
722 + "/assets/listingTypes-CkyCgPCr.js",
723 + "/assets/floor-label-CGeBlKR2.js",
724 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
725 + "/assets/useFormValidation-BlL8vXtt.js",
726 + "/assets/useLabel-FzyH2LZi.js",
727 + "/assets/useNumberFormatter-DG2VO0C1.js",
728 + "/assets/NumberFormatter-BWU_gJyt.js",
729 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
730 + "/assets/useModal-C3khzgYn.js",
731 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
732 + "/assets/useButton-DZK-beuH.js",
733 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
734 + "/assets/index-B915wqUE.js",
735 + "/assets/index-DGzYOEP8.js",
736 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
737 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
738 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
739 + "/assets/useControlledState-C6ovzWeF.js",
740 + "/assets/useField-CBKMx-DQ.js",
741 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
742 + "/assets/chunk-M3MASYO7-COH9P04M.js",
743 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
744 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
745 + "/assets/useToggleState-DY8z2i0t.js",
746 + "/assets/index-BzZ-MzUq.js",
747 + "/assets/useToggle-QKKEqo_x.js",
748 + "/assets/use-debounce-D23YJQRM.js",
749 + "/assets/use-debounced-callback-Do1iUmMt.js",
750 + "/assets/show-BOEsnqQk.js",
751 + "/assets/index-BxwHZyk5.js",
752 + "/assets/use-screenshot-mode-RoZeXH-d.js",
753 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
754 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
755 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
756 + "/assets/powered-by-eversa-BF980dJS.js",
757 + "/assets/tooltip-_QqyKTfK.js",
758 + "/assets/eversa-logo-DmkjJgjq.js",
759 + "/assets/use-auth-D_t8q_v4.js",
760 + "/assets/OtpInput-CJhAm1Gc.js",
761 + "/assets/roles-Cde3N6LE.js",
762 + "/assets/chunk-T45N425O-CCF24x8B.js",
763 + "/assets/index-CwlnhZHs.js",
764 + "/assets/exports-mapbox-Dy-MMXYe.js",
765 + "/assets/client-CpT78rmL.js",
766 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
767 + "/assets/useProgressBar-DhWwJb16.js",
768 + "/assets/index-Cy2bmlj7.js",
769 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
770 + "/assets/std-cron-C0Hf3jWh.js",
771 + "/assets/legacy-date-D-X4tG6T.js",
772 + "/assets/use-is-iframe-DIKEri2l.js",
773 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
774 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
775 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
776 + "/assets/link-CrZmIZC6.js",
777 + "/assets/rich-text-display--Qas76Hg.js",
778 + "/assets/utils-D0p-v41w.js",
779 + "/assets/signature-block-8SMePIUg.js",
780 + "/assets/index-DqzG1Q9x.js",
781 + "/assets/client-only-BGvaz0Jn.js",
782 + "/assets/use-hydrated-nn_6IPIK.js",
783 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
784 + "/assets/settings.types-CTRD0B_j.js",
785 + "/assets/input-CkQmsiJb.js",
786 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
787 + "/assets/extends-BSSSaanF.js",
788 + "/assets/user-menu-BuoWMPG0.js",
789 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
790 + "/assets/index-CRabYQb-.js",
791 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
792 + "/assets/Section-CaP3oBph.js",
793 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
794 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
795 + "/assets/LiveAnnouncer-CnNJa9NI.js",
796 + "/assets/useUpdateEffect-DsCDOPa2.js",
797 + "/assets/index-BT5H2sjL.js",
798 + "/assets/features-animation-BCPmlPPs.js",
799 + "/assets/index-8boKsGvQ.js",
800 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
801 + "/assets/use-server-command-DJ0CxbuT.js",
802 + "/assets/create-rpc-stub-SmqOCk37.js",
803 + "/assets/index-BoeY4VQ9.js",
804 + "/assets/app-form-CRPZmLNY.js",
805 + "/assets/button-KaTnxiWj.js",
806 + "/assets/spinner-DDyy7LQF.js",
807 + "/assets/zod-CmeTJI5u.js",
808 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
809 + "/assets/form-hidden-input-DI5aJPYE.js",
810 + "/assets/form-input-C6s4itpV.js",
811 + "/assets/system-preferences-DL4TO29S.js",
812 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
813 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
814 + "/assets/use-in-view-BNnh4L6M.js",
815 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
816 + ],
817 + "css": [
818 + "/assets/rich-text-editor-D9Rskyfk.css#",
819 + "/assets/listing-card-CI-uxcFh.css"
820 + ]
821 + },
822 + "PublicListingsIndexPage": {
823 + "id": "PublicListingsIndexPage",
824 + "parentId": "PublicListingsLayoutPage",
825 + "path": "",
826 + "hasAction": false,
827 + "hasLoader": false,
828 + "hasClientAction": false,
829 + "hasClientLoader": false,
830 + "hasClientMiddleware": false,
831 + "hasDefaultExport": true,
832 + "hasErrorBoundary": false,
833 + "module": "/assets/listings-index.page-DjplF3AX.js",
834 + "imports": [
835 + "/assets/chunk-QUQL4437-m7Whu12z.js",
836 + "/assets/jsx-runtime-umhk6iWe.js",
837 + "/assets/runtime-MtUT-9pW.js",
838 + "/assets/instance-Dwq5XJYG.js",
839 + "/assets/locale-rlhQ6FjN.js",
840 + "/assets/use-localized-path-BMxKZwMg.js",
841 + "/assets/listing-card-Cg3TPyWe.js",
842 + "/assets/types-BKXG3Vd5.js",
843 + "/assets/i18n-CTdcZBaW.js",
844 + "/assets/date-C7fQmg2U.js",
845 + "/assets/format-BKStloXP.js",
846 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
847 + "/assets/formatDistanceToNow-BvwR-I5H.js",
848 + "/assets/paths-CiQnXl4X.js",
849 + "/assets/use-tenant-wE0zDJ1a.js",
850 + "/assets/runtime-TD3m583z.js",
851 + "/assets/exports-mapbox-Dy-MMXYe.js",
852 + "/assets/index-DJnVLKJF.js",
853 + "/assets/use-locale-BnwvbFV-.js",
854 + "/assets/icon-D77RBjQx.js",
855 + "/assets/show-BOEsnqQk.js",
856 + "/assets/client-CpT78rmL.js",
857 + "/assets/index-CXP4lC37.js",
858 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
859 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
860 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
861 + "/assets/useProgressBar-DhWwJb16.js",
862 + "/assets/preload-helper-Cer9inx8.js",
863 + "/assets/index-DmhvH8SD.js",
864 + "/assets/number-lhSI2oqU.js",
865 + "/assets/useLabel-FzyH2LZi.js",
866 + "/assets/useLabels-BL4rQGMb.js",
867 + "/assets/useNumberFormatter-DG2VO0C1.js",
868 + "/assets/context-C7uvIu_A.js",
869 + "/assets/NumberFormatter-BWU_gJyt.js",
870 + "/assets/index-Cy2bmlj7.js",
871 + "/assets/index-blsAimsU.js",
872 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
873 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
874 + "/assets/mergeRefs-C8xtGVp3.js",
875 + "/assets/useControlledState-Dl_rDvO0.js",
876 + "/assets/FocusScope-CWuTxhav.js",
877 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
878 + "/assets/useField-CBKMx-DQ.js",
879 + "/assets/useFormValidation-BlL8vXtt.js",
880 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
881 + "/assets/std-cron-C0Hf3jWh.js",
882 + "/assets/legacy-date-D-X4tG6T.js",
883 + "/assets/listingTypes-CkyCgPCr.js",
884 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
885 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
886 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
887 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
888 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
889 + "/assets/useButton-DZK-beuH.js",
890 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
891 + "/assets/useOverlayTriggerState-woQJgDxB.js",
892 + "/assets/index-B915wqUE.js",
893 + "/assets/accelerated-values-ClBEnI7v.js",
894 + "/assets/useTreeState-Dx1W0YuM.js",
895 + "/assets/SelectionManager-BmJrKgY4.js",
896 + "/assets/scrollIntoView-BWAA50rI.js",
897 + "/assets/isScrollable-Dnxj3NSq.js",
898 + "/assets/useSelectableList-BOP0KhmN.js",
899 + "/assets/DOMLayoutDelegate-Brany3qe.js",
900 + "/assets/useCollator-CbJkpXG2.js",
901 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
902 + "/assets/index-DGzYOEP8.js",
903 + "/assets/Item-DuavYi1u.js",
904 + "/assets/use-is-iframe-DIKEri2l.js",
905 + "/assets/floor-label-CGeBlKR2.js",
906 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
907 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
908 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
909 + "/assets/storage-image-BRiFwsnF.js",
910 + "/assets/debug-build-VZlf1Aof.js",
911 + "/assets/empty-image-DeSmMdF3.js",
912 + "/assets/storage-JzkTKPy4.js",
913 + "/assets/link-CrZmIZC6.js",
914 + "/assets/chunk-T45N425O-CCF24x8B.js",
915 + "/assets/modal-BG3X61k6.js",
916 + "/assets/modal-root-haL454LR.js",
917 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
918 + "/assets/useDialog-Bh9KG6MB.js",
919 + "/assets/VisuallyHidden-D-Q2SU4O.js",
920 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
921 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
922 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
923 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
924 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
925 + "/assets/proxy-BlmPTkqy.js",
926 + "/assets/create-visual-element-Cc1-iv7S.js",
927 + "/assets/layout-CqatgvGE.js",
928 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
929 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
930 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
931 + "/assets/index-DuhTrrt1.js",
932 + "/assets/useModal-C3khzgYn.js",
933 + "/assets/index-BxwHZyk5.js",
934 + "/assets/rich-text-display--Qas76Hg.js",
935 + "/assets/utils-D0p-v41w.js",
936 + "/assets/signature-block-8SMePIUg.js",
937 + "/assets/index-DqzG1Q9x.js",
938 + "/assets/client-only-BGvaz0Jn.js",
939 + "/assets/use-hydrated-nn_6IPIK.js",
940 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
941 + "/assets/chunk-M3MASYO7-COH9P04M.js",
942 + "/assets/settings.types-CTRD0B_j.js",
943 + "/assets/use-show-profile-modal-Cgfts1ut.js",
944 + "/assets/input-CkQmsiJb.js",
945 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
946 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
947 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
948 + "/assets/useControlledState-C6ovzWeF.js",
949 + "/assets/extends-BSSSaanF.js",
950 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
951 + "/assets/use-debounce-D23YJQRM.js",
952 + "/assets/use-debounced-callback-Do1iUmMt.js",
953 + "/assets/use-auth-D_t8q_v4.js",
954 + "/assets/OtpInput-CJhAm1Gc.js",
955 + "/assets/roles-Cde3N6LE.js",
956 + "/assets/index-CwlnhZHs.js",
957 + "/assets/index-BzZ-MzUq.js",
958 + "/assets/powered-by-eversa-BF980dJS.js",
959 + "/assets/tooltip-_QqyKTfK.js",
960 + "/assets/eversa-logo-DmkjJgjq.js",
961 + "/assets/use-screenshot-mode-RoZeXH-d.js",
962 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
963 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
964 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
965 + "/assets/getItemCount-BQolBIkZ.js",
966 + "/assets/useSelectableItem-Ds0Ihirs.js",
967 + "/assets/useDescription-DF6TDnVi.js",
968 + "/assets/index-D8QbWu84.js",
969 + "/assets/useMenuTriggerState-CHKcWOlC.js",
970 + "/assets/useMenuTrigger-DKFjnCNZ.js",
971 + "/assets/user-menu-BuoWMPG0.js",
972 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
973 + "/assets/index-CRabYQb-.js",
974 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
975 + "/assets/Section-CaP3oBph.js",
976 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
977 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
978 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
979 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
980 + "/assets/LiveAnnouncer-CnNJa9NI.js",
981 + "/assets/useUpdateEffect-DsCDOPa2.js",
982 + "/assets/index-BT5H2sjL.js",
983 + "/assets/features-animation-BCPmlPPs.js",
984 + "/assets/index-8boKsGvQ.js",
985 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
986 + "/assets/use-server-command-DJ0CxbuT.js",
987 + "/assets/create-rpc-stub-SmqOCk37.js",
988 + "/assets/index-BoeY4VQ9.js",
989 + "/assets/app-form-CRPZmLNY.js",
990 + "/assets/button-KaTnxiWj.js",
991 + "/assets/spinner-DDyy7LQF.js",
992 + "/assets/zod-CmeTJI5u.js",
993 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
994 + "/assets/form-hidden-input-DI5aJPYE.js",
995 + "/assets/form-input-C6s4itpV.js",
996 + "/assets/system-preferences-DL4TO29S.js",
997 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
998 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
999 + "/assets/use-in-view-BNnh4L6M.js",
1000 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
1001 + ],
1002 + "css": [
1003 + "/assets/rich-text-editor-D9Rskyfk.css#",
1004 + "/assets/listing-card-CI-uxcFh.css"
1005 + ]
1006 + }
1007 + },
1008 + "url": "/assets/manifest-2b2cda1e.js",
1009 + "version": "2b2cda1e"
1010 +};
1011 + window.__reactRouterRouteModules = {"root":route0,"public-language":route1,"PublicListingsLayoutPage":route2,"PublicListingsListPage":route3};
1012 +
1013 +import("/assets/entry.client-BIJa3TY3.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":-5,\"_8\":9,\"_10\":11},\"actionData\",\"errors\",\"root\",{\"_4134\":-5,\"_4135\":-7,\"_4136\":4137,\"_4138\":4139,\"_4140\":21,\"_26\":4141,\"_4142\":-5,\"_4143\":4144,\"_41\":42,\"_4145\":-5,\"_4146\":-5},\"public-language\",\"PublicListingsLayoutPage\",{\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":25,\"_33\":34,\"_35\":36,\"_37\":38,\"_39\":40,\"_41\":42,\"_43\":25,\"_44\":25,\"_45\":25},\"PublicListingsListPage\",{\"_12\":13,\"_14\":13,\"_15\":16,\"_17\":18,\"_19\":-7,\"_20\":21,\"_22\":23,\"_24\":25},\"title\",\"Halfred | Apartment rentals\",\"ogTitle\",\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"image\",\"language\",\"fr\",\"url\",\"https://www.halfred.ca/fr/listings/list\",\"noindex\",false,\"tenant\",{\"_4055\":4056,\"_4057\":4058,\"_68\":4059,\"_4060\":4061,\"_4062\":4063,\"_15\":16,\"_4064\":-7,\"_4065\":4066,\"_17\":18,\"_4067\":4068,\"_4069\":-5,\"_260\":4070,\"_4071\":4072,\"_4073\":4074,\"_12\":13},\"listings\",[3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700],\"listingsByView\",{\"_419\":29,\"_420\":421,\"_422\":423},\"explodeProjects\",\"initialFilters\",{\"_160\":161,\"_162\":163,\"_164\":165,\"_166\":167,\"_168\":169,\"_170\":36,\"_171\":172,\"_173\":174,\"_175\":25,\"_176\":36,\"_177\":178,\"_179\":180},\"defaultView\",true,\"count\",174,\"filters\",{},\"configs\",{\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53,\"_54\":47,\"_55\":56,\"_57\":58},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[141],\"analysisProductsPrice\",{\"_141\":142,\"_143\":144,\"_145\":146,\"_147\":148,\"_149\":150,\"_151\":152,\"_153\":154,\"_155\":154,\"_156\":157,\"_158\":152,\"_159\":150},\"notifications\",{\"_118\":119},\"form\",{\"_111\":36,\"_112\":25,\"_113\":36,\"_114\":36,\"_115\":25,\"_116\":25,\"_117\":25},\"enabledSkus\",\"submissions\",{\"_60\":61,\"_62\":63,\"_64\":65,\"_66\":67,\"_68\":69,\"_70\":-5},\"agent\",{\"_59\":25},\"hideAgentNewSubmissionBtn\",\"all\",[97,98,99,100,101,102,103,107,108,109,110],\"steps\",[97,98,99,100,101,102,103],\"badges\",[87,88,89,90,91,92],\"statuses\",[81,71,73,75,77,79,82,83,84,85,86],\"colors\",{\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_93\":71,\"_95\":72},{\"_93\":73,\"_95\":74},{\"_93\":75,\"_95\":76},{\"_93\":77,\"_95\":78},{\"_93\":79,\"_95\":80},{\"_93\":94,\"_95\":96},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_93\":81,\"_95\":-5,\"_104\":25},{\"_93\":71,\"_95\":72,\"_104\":36,\"_105\":25,\"_106\":25},{\"_93\":73,\"_95\":74,\"_104\":36,\"_105\":25,\"_106\":25},{\"_93\":75,\"_95\":76,\"_104\":36,\"_105\":25,\"_106\":25},{\"_93\":77,\"_95\":78,\"_104\":36,\"_105\":25,\"_106\":25},{\"_93\":79,\"_95\":80,\"_104\":36,\"_105\":25,\"_106\":25},{\"_93\":82,\"_95\":-5,\"_104\":36},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_93\":83,\"_95\":-5,\"_104\":25},{\"_93\":84,\"_95\":-5,\"_104\":25},{\"_93\":85,\"_95\":-5,\"_104\":25},{\"_93\":86,\"_95\":-5,\"_104\":25},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_57\":120,\"_121\":122,\"_26\":123,\"_124\":125},[133,134,135,136,137,138,128,129,139,140],\"manager\",[],[127,128,129,130,131,132],\"admin\",[126],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"agent-submission-snoozed\",\"agent-submission-snoozed-reminder\",\"agent-submission-snoozed-expired\",\"application-deadline-reminder\",\"application-deadline-expired\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1299,\"qc_citizen_criminal_plumitif_municipal_check\",699,\"qc_citizen_rental_board_check\",799,\"on_citizen_rental_board_check\",999,\"ca_citizen_workplace_reference_verification\",1499,\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",\"qc_citizen_rental_board_extended_check\",\"price\",[204,418],\"pricePerMonth\",[204,418],\"pricePerSqft\",[414,414],\"area\",[414,417],\"floor\",[415,416],\"hasFloor\",\"bathrooms\",[414,206],\"bedrooms\",[414,220],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259],\"availableNeighborhoods\",[181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197],{\"_198\":225,\"_37\":204},{\"_198\":223,\"_37\":224},{\"_198\":222,\"_37\":206},{\"_198\":221,\"_37\":206},{\"_198\":219,\"_37\":220},{\"_198\":217,\"_37\":218},{\"_198\":215,\"_37\":216},{\"_198\":214,\"_37\":204},{\"_198\":213,\"_37\":206},{\"_198\":212,\"_37\":204},{\"_198\":210,\"_37\":211},{\"_198\":209,\"_37\":204},{\"_198\":207,\"_37\":208},{\"_198\":205,\"_37\":206},{\"_198\":203,\"_37\":204},{\"_198\":201,\"_37\":202},{\"_198\":199,\"_37\":200},\"name\",\"Touraine\",7,\"Templeton\",14,\"Saint-Jérôme\",1,\"Québec\",2,\"Pointe-Gatineau\",8,\"Plateau \",\"Plateau\",30,\"plateau\",\"Old Gatineau\",\"Masson\",\"Hull\",21,\"Gatineau\",37,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",20,\"angers\",{\"_260\":410,\"_198\":411,\"_17\":288},{\"_260\":405,\"_198\":406,\"_17\":407},{\"_260\":401,\"_198\":402,\"_17\":263},{\"_260\":397,\"_198\":398,\"_17\":312},{\"_260\":393,\"_198\":394,\"_17\":263},{\"_260\":389,\"_198\":390,\"_17\":283},{\"_260\":385,\"_198\":386,\"_17\":307},{\"_260\":380,\"_198\":381,\"_17\":382},{\"_260\":376,\"_198\":377,\"_17\":307},{\"_260\":371,\"_198\":372,\"_17\":373},{\"_260\":366,\"_198\":367,\"_17\":368},{\"_260\":362,\"_198\":363,\"_17\":325},{\"_260\":358,\"_198\":359,\"_17\":269},{\"_260\":354,\"_198\":355,\"_17\":283},{\"_260\":350,\"_198\":351,\"_17\":352},{\"_260\":346,\"_198\":347,\"_17\":293},{\"_260\":342,\"_198\":343,\"_17\":312},{\"_260\":338,\"_198\":339,\"_17\":269},{\"_260\":333,\"_198\":334,\"_17\":335},{\"_260\":328,\"_198\":329,\"_17\":330},{\"_260\":323,\"_198\":324,\"_17\":325},{\"_260\":319,\"_198\":320,\"_17\":263},{\"_260\":315,\"_198\":316,\"_17\":288},{\"_260\":310,\"_198\":311,\"_17\":312},{\"_260\":305,\"_198\":306,\"_17\":307},{\"_260\":300,\"_198\":301,\"_17\":302},{\"_260\":296,\"_198\":297,\"_17\":293},{\"_260\":291,\"_198\":292,\"_17\":293},{\"_260\":286,\"_198\":287,\"_17\":288},{\"_260\":281,\"_198\":282,\"_17\":283},{\"_260\":276,\"_198\":277,\"_17\":278},{\"_260\":272,\"_198\":273,\"_17\":274},{\"_260\":267,\"_198\":268,\"_17\":269},{\"_260\":261,\"_198\":262,\"_17\":263},\"slug\",\"counter-type\",{\"_264\":265,\"_21\":266},\"lucide:check\",\"en\",\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_264\":270,\"_21\":271},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_264\":275,\"_21\":275},\"lucide:armchair\",\"Commodes\",\"disabled-access\",{\"_264\":279,\"_21\":280},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"gas-heating\",{\"_264\":284,\"_21\":285},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"underground-garage\",{\"_264\":289,\"_21\":290},\"lucide:car\",\"Underground Garage\",\"Garage souterrain\",\"small-dogs-allowed\",{\"_264\":294,\"_21\":295},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_264\":298,\"_21\":299},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"washer-dryer-outlet\",{\"_264\":303,\"_21\":304},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"cable-internet\",{\"_264\":308,\"_21\":309},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"laundry-room\",{\"_264\":313,\"_21\":314},\"lucide:washing-machine\",\"Laundry Room\",\"Buanderie\",\"garage-parking\",{\"_264\":317,\"_21\":318},\"Garage Parking\",\"Parking garage\",\"water-tank\",{\"_264\":321,\"_21\":322},\"Water Tank\",\"Réservoir d'eau\",\"microwave\",{\"_264\":326,\"_21\":327},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"blinds\",{\"_264\":331,\"_21\":332},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water\",{\"_264\":336,\"_21\":337},\"lucide:droplet\",\"Water\",\"Eau\",\"building-terrace\",{\"_264\":340,\"_21\":341},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_264\":344,\"_21\":345},\"Dryer\",\"Sèche-linge\",\"cats-allowed\",{\"_264\":348,\"_21\":349},\"Cats Allowed\",\"Chats autorisés\",\"gym\",{\"_264\":353,\"_21\":353},\"lucide:dumbbell\",\"Gym\",\"electric-heating\",{\"_264\":356,\"_21\":357},\"Electric Heating\",\"Chauffage Électrique\",\"balcony\",{\"_264\":360,\"_21\":361},\"Balcony\",\"Balcon\",\"oven\",{\"_264\":364,\"_21\":365},\"Oven\",\"Four\",\"electricity\",{\"_264\":369,\"_21\":370},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"refrigerator\",{\"_264\":374,\"_21\":375},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_264\":378,\"_21\":379},\"Cable\",\"Câble\",\"stove\",{\"_264\":383,\"_21\":384},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_264\":387,\"_21\":388},\"Fiber Internet\",\"Internet fibre\",\"central-air-conditioning\",{\"_264\":391,\"_21\":392},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_264\":395,\"_21\":396},\"Dishwasher\",\"Lave-vaisselle\",\"washer\",{\"_264\":399,\"_21\":400},\"Washer\",\"Laveuse\",\"elevator\",{\"_264\":403,\"_21\":404},\"Elevator\",\"Ascenseur\",\"locker-storage-space\",{\"_264\":408,\"_21\":409},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"parking\",{\"_264\":412,\"_21\":413},\"Parking\",\"Stationnement\",0,-1,6,2063,3050,\"list\",\"map\",[2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136],\"explode\",[424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616],{\"_617\":2936,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2937,\"_627\":2938,\"_629\":2820,\"_631\":2939,\"_633\":217,\"_634\":684,\"_635\":2940,\"_637\":2941,\"_639\":25,\"_640\":2942,\"_642\":2943,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":2938,\"_651\":1207,\"_160\":2248,\"_173\":1105,\"_171\":654,\"_166\":2910,\"_656\":36,\"_657\":200,\"_658\":25,\"_659\":885,\"_661\":200,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2927,\"_619\":1043,\"_621\":2115,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2928,\"_627\":2929,\"_629\":699,\"_631\":2451,\"_633\":217,\"_634\":223,\"_635\":2930,\"_637\":2931,\"_639\":25,\"_640\":2932,\"_642\":2933,\"_644\":2123,\"_645\":217,\"_646\":2124,\"_647\":684,\"_648\":2125,\"_649\":2126,\"_12\":2929,\"_651\":1158,\"_160\":2934,\"_173\":780,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2934,\"_672\":-5,\"_673\":2935,\"_674\":-5,\"_675\":-5},{\"_617\":2919,\"_619\":1043,\"_621\":2014,\"_15\":-5,\"_623\":2015,\"_624\":25,\"_625\":1045,\"_260\":2920,\"_627\":2921,\"_629\":2853,\"_631\":2922,\"_633\":2026,\"_634\":684,\"_635\":2923,\"_637\":2924,\"_639\":25,\"_640\":2925,\"_642\":2926,\"_644\":2025,\"_645\":2026,\"_646\":2027,\"_647\":684,\"_648\":2028,\"_649\":2029,\"_12\":2921,\"_651\":2030,\"_160\":2857,\"_173\":1105,\"_171\":654,\"_166\":2032,\"_656\":36,\"_657\":416,\"_658\":25,\"_659\":1546,\"_661\":416,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2857,\"_672\":-5,\"_673\":2031,\"_674\":-5,\"_675\":-5},{\"_617\":2911,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2912,\"_627\":2913,\"_629\":2820,\"_631\":2914,\"_633\":217,\"_634\":684,\"_635\":2915,\"_637\":2916,\"_639\":25,\"_640\":2917,\"_642\":2918,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":2913,\"_651\":1103,\"_160\":2248,\"_173\":1105,\"_171\":654,\"_166\":2910,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":885,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2904,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2905,\"_627\":2906,\"_629\":2820,\"_631\":2907,\"_633\":217,\"_634\":223,\"_635\":2828,\"_637\":2829,\"_639\":25,\"_640\":2908,\"_642\":2909,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":2906,\"_651\":1118,\"_160\":2248,\"_173\":1105,\"_171\":654,\"_166\":2910,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":2316,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2895,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2896,\"_627\":2897,\"_629\":917,\"_631\":2898,\"_633\":217,\"_634\":210,\"_635\":2899,\"_637\":2900,\"_639\":25,\"_640\":2901,\"_642\":2902,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":2897,\"_651\":1078,\"_160\":898,\"_173\":946,\"_171\":654,\"_166\":2903,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":2062,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":2088,\"_674\":-5,\"_675\":-5},{\"_617\":2886,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2887,\"_627\":2888,\"_629\":2820,\"_631\":2889,\"_633\":217,\"_634\":684,\"_635\":2890,\"_637\":2891,\"_639\":25,\"_640\":2892,\"_642\":2893,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":2888,\"_651\":2482,\"_160\":2127,\"_173\":654,\"_171\":654,\"_166\":2841,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":885,\"_661\":736,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2127,\"_672\":-5,\"_673\":2894,\"_674\":-5,\"_675\":-5},{\"_617\":2878,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2879,\"_627\":2880,\"_629\":2820,\"_631\":2881,\"_633\":217,\"_634\":684,\"_635\":2882,\"_637\":2883,\"_639\":25,\"_640\":2884,\"_642\":2885,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":2880,\"_651\":1078,\"_160\":2248,\"_173\":1105,\"_171\":654,\"_166\":2877,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":885,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2868,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2869,\"_627\":2870,\"_629\":2820,\"_631\":2871,\"_633\":217,\"_634\":684,\"_635\":2872,\"_637\":2873,\"_639\":25,\"_640\":2874,\"_642\":2875,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":2870,\"_651\":2876,\"_160\":923,\"_173\":1105,\"_171\":654,\"_166\":2877,\"_656\":36,\"_657\":200,\"_658\":25,\"_659\":885,\"_661\":200,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":2100,\"_674\":-5,\"_675\":-5},{\"_617\":2858,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2859,\"_627\":2860,\"_629\":1048,\"_631\":1034,\"_633\":217,\"_634\":210,\"_635\":2861,\"_637\":2862,\"_639\":25,\"_640\":2863,\"_642\":2864,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":2860,\"_651\":2865,\"_160\":2866,\"_173\":750,\"_171\":654,\"_166\":2867,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":2062,\"_661\":736,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2866,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2852,\"_619\":1043,\"_621\":2014,\"_15\":-5,\"_623\":2015,\"_624\":25,\"_625\":1045,\"_260\":2027,\"_627\":2025,\"_629\":2853,\"_631\":2854,\"_633\":2026,\"_634\":684,\"_635\":2028,\"_637\":2029,\"_639\":25,\"_640\":2855,\"_642\":2856,\"_644\":2025,\"_645\":2026,\"_646\":2027,\"_647\":684,\"_648\":2028,\"_649\":2029,\"_12\":2025,\"_651\":2030,\"_160\":2857,\"_173\":1105,\"_171\":654,\"_166\":2032,\"_656\":36,\"_657\":416,\"_658\":25,\"_659\":1546,\"_661\":416,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2857,\"_672\":-5,\"_673\":2031,\"_674\":-5,\"_675\":-5},{\"_617\":2842,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2843,\"_627\":2844,\"_629\":917,\"_631\":2845,\"_633\":217,\"_634\":210,\"_635\":2846,\"_637\":2847,\"_639\":25,\"_640\":2848,\"_642\":2849,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":2844,\"_651\":1078,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":2850,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":2062,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":2851,\"_674\":-5,\"_675\":-5},{\"_617\":2833,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2834,\"_627\":2835,\"_629\":2820,\"_631\":2836,\"_633\":217,\"_634\":684,\"_635\":2837,\"_637\":2838,\"_639\":25,\"_640\":2839,\"_642\":2840,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":2835,\"_651\":1307,\"_160\":2248,\"_173\":654,\"_171\":654,\"_166\":2841,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":885,\"_661\":736,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2816,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2818,\"_627\":2819,\"_629\":2820,\"_631\":2821,\"_633\":217,\"_634\":684,\"_635\":2822,\"_637\":2823,\"_639\":25,\"_640\":2824,\"_642\":2825,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":2819,\"_651\":1103,\"_160\":2830,\"_173\":1105,\"_171\":654,\"_166\":2831,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":885,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2830,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2808,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2809,\"_627\":2810,\"_629\":1048,\"_631\":1337,\"_633\":217,\"_634\":210,\"_635\":2811,\"_637\":2812,\"_639\":25,\"_640\":2813,\"_642\":2814,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":2810,\"_651\":2482,\"_160\":2060,\"_173\":1105,\"_171\":654,\"_166\":2815,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":2062,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2060,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2798,\"_619\":620,\"_621\":2799,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2800,\"_627\":2801,\"_629\":772,\"_631\":2230,\"_633\":217,\"_634\":207,\"_635\":2802,\"_637\":2803,\"_639\":25,\"_640\":2804,\"_642\":2805,\"_644\":2801,\"_645\":217,\"_646\":2800,\"_647\":207,\"_648\":2802,\"_649\":2803,\"_12\":2801,\"_651\":1078,\"_160\":779,\"_173\":780,\"_171\":654,\"_166\":2806,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":779,\"_672\":-5,\"_673\":691,\"_674\":-5,\"_675\":-5},{\"_617\":2792,\"_619\":620,\"_621\":2793,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1059,\"_627\":1060,\"_629\":823,\"_631\":1061,\"_633\":217,\"_634\":201,\"_635\":1062,\"_637\":1063,\"_639\":25,\"_640\":2794,\"_642\":2795,\"_644\":1060,\"_645\":217,\"_646\":1059,\"_647\":201,\"_648\":1062,\"_649\":1063,\"_12\":1060,\"_651\":2796,\"_160\":2235,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2235,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2780,\"_619\":620,\"_621\":2781,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2782,\"_627\":2783,\"_629\":2081,\"_631\":2784,\"_633\":217,\"_634\":201,\"_635\":2785,\"_637\":2786,\"_639\":25,\"_640\":2787,\"_642\":2788,\"_644\":2783,\"_645\":217,\"_646\":2782,\"_647\":201,\"_648\":2785,\"_649\":2786,\"_12\":2783,\"_651\":1103,\"_160\":2789,\"_173\":780,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2789,\"_672\":-5,\"_673\":2790,\"_674\":-5,\"_675\":-5},{\"_617\":2770,\"_619\":620,\"_621\":2771,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2772,\"_627\":2773,\"_629\":1524,\"_631\":2774,\"_633\":217,\"_634\":201,\"_635\":2775,\"_637\":2776,\"_639\":25,\"_640\":2777,\"_642\":2778,\"_644\":2773,\"_645\":217,\"_646\":2772,\"_647\":201,\"_648\":2775,\"_649\":2776,\"_12\":2773,\"_651\":1066,\"_160\":2260,\"_173\":780,\"_171\":654,\"_166\":1208,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2260,\"_672\":-5,\"_673\":2011,\"_674\":-5,\"_675\":-5},{\"_617\":2761,\"_619\":620,\"_621\":2762,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2763,\"_627\":2764,\"_629\":772,\"_631\":1858,\"_633\":217,\"_634\":217,\"_635\":2765,\"_637\":2766,\"_639\":25,\"_640\":2767,\"_642\":2768,\"_644\":2764,\"_645\":217,\"_646\":2763,\"_647\":217,\"_648\":2765,\"_649\":2766,\"_12\":2764,\"_651\":2030,\"_160\":855,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":855,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2749,\"_619\":620,\"_621\":2750,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2751,\"_627\":2752,\"_629\":2753,\"_631\":2754,\"_633\":222,\"_634\":222,\"_635\":2755,\"_637\":2756,\"_639\":25,\"_640\":2757,\"_642\":2758,\"_644\":2752,\"_645\":222,\"_646\":2751,\"_647\":222,\"_648\":2755,\"_649\":2756,\"_12\":2752,\"_651\":1103,\"_160\":2759,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2759,\"_672\":-5,\"_673\":1321,\"_674\":-5,\"_675\":-5},{\"_617\":2736,\"_619\":620,\"_621\":2737,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2738,\"_627\":2739,\"_629\":2740,\"_631\":2741,\"_633\":217,\"_634\":215,\"_635\":2742,\"_637\":2743,\"_639\":25,\"_640\":2744,\"_642\":2745,\"_644\":2739,\"_645\":217,\"_646\":2738,\"_647\":215,\"_648\":2742,\"_649\":2743,\"_12\":2739,\"_651\":1158,\"_160\":2746,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2746,\"_672\":-5,\"_673\":2747,\"_674\":-5,\"_675\":-5},{\"_617\":2722,\"_619\":620,\"_621\":2723,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2724,\"_627\":2725,\"_629\":2726,\"_631\":2727,\"_633\":2728,\"_634\":225,\"_635\":2729,\"_637\":2730,\"_639\":25,\"_640\":2731,\"_642\":2732,\"_644\":2725,\"_645\":2728,\"_646\":2724,\"_647\":225,\"_648\":2729,\"_649\":2730,\"_12\":2725,\"_651\":2733,\"_160\":2734,\"_173\":780,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2734,\"_672\":-5,\"_673\":1442,\"_674\":-5,\"_675\":-5},{\"_617\":2709,\"_619\":620,\"_621\":2710,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2711,\"_627\":2712,\"_629\":2713,\"_631\":2714,\"_633\":217,\"_634\":215,\"_635\":2715,\"_637\":2716,\"_639\":25,\"_640\":2717,\"_642\":2718,\"_644\":2712,\"_645\":217,\"_646\":2711,\"_647\":215,\"_648\":2715,\"_649\":2716,\"_12\":2712,\"_651\":1066,\"_160\":2719,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2719,\"_672\":-5,\"_673\":2720,\"_674\":-5,\"_675\":-5},{\"_617\":2699,\"_619\":620,\"_621\":2700,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2701,\"_627\":2702,\"_629\":2067,\"_631\":1237,\"_633\":217,\"_634\":215,\"_635\":2703,\"_637\":2704,\"_639\":25,\"_640\":2705,\"_642\":2706,\"_644\":2702,\"_645\":217,\"_646\":2701,\"_647\":215,\"_648\":2703,\"_649\":2704,\"_12\":2702,\"_651\":2707,\"_160\":2280,\"_173\":1105,\"_171\":654,\"_166\":2074,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":416,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2280,\"_672\":-5,\"_673\":971,\"_674\":-5,\"_675\":-5},{\"_617\":2689,\"_619\":620,\"_621\":2690,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2691,\"_627\":2692,\"_629\":2067,\"_631\":632,\"_633\":217,\"_634\":684,\"_635\":2693,\"_637\":2694,\"_639\":25,\"_640\":2695,\"_642\":2696,\"_644\":2692,\"_645\":217,\"_646\":2691,\"_647\":684,\"_648\":2693,\"_649\":2694,\"_12\":2692,\"_651\":1103,\"_160\":2352,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2352,\"_672\":-5,\"_673\":2697,\"_674\":-5,\"_675\":-5},{\"_617\":2678,\"_619\":620,\"_621\":2679,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2680,\"_627\":2681,\"_629\":1668,\"_631\":2682,\"_633\":217,\"_634\":684,\"_635\":2683,\"_637\":2684,\"_639\":25,\"_640\":2685,\"_642\":2686,\"_644\":2681,\"_645\":217,\"_646\":2680,\"_647\":684,\"_648\":2683,\"_649\":2684,\"_12\":2681,\"_651\":1307,\"_160\":2352,\"_173\":780,\"_171\":654,\"_166\":2687,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":736,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2352,\"_672\":-5,\"_673\":1419,\"_674\":-5,\"_675\":-5},{\"_617\":2667,\"_619\":620,\"_621\":2668,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2669,\"_627\":2670,\"_629\":2615,\"_631\":2118,\"_633\":217,\"_634\":215,\"_635\":2671,\"_637\":2672,\"_639\":25,\"_640\":2673,\"_642\":2674,\"_644\":2670,\"_645\":217,\"_646\":2669,\"_647\":215,\"_648\":2671,\"_649\":2672,\"_12\":2670,\"_651\":1103,\"_160\":2675,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2675,\"_672\":-5,\"_673\":2676,\"_674\":-5,\"_675\":-5},{\"_617\":2657,\"_619\":620,\"_621\":2658,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2659,\"_627\":2660,\"_629\":1524,\"_631\":2206,\"_633\":217,\"_634\":217,\"_635\":2661,\"_637\":2662,\"_639\":25,\"_640\":2663,\"_642\":2664,\"_644\":2660,\"_645\":217,\"_646\":2659,\"_647\":217,\"_648\":2661,\"_649\":2662,\"_12\":2660,\"_651\":2665,\"_160\":2403,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2645,\"_619\":620,\"_621\":2646,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2647,\"_627\":2648,\"_629\":798,\"_631\":2055,\"_633\":217,\"_634\":217,\"_635\":2649,\"_637\":2650,\"_639\":25,\"_640\":2651,\"_642\":2652,\"_644\":2648,\"_645\":217,\"_646\":2647,\"_647\":217,\"_648\":2649,\"_649\":2650,\"_12\":2653,\"_651\":2654,\"_160\":1354,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1354,\"_672\":-5,\"_673\":2655,\"_674\":-5,\"_675\":-5},{\"_617\":2633,\"_619\":620,\"_621\":2634,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2635,\"_627\":2636,\"_629\":965,\"_631\":2637,\"_633\":217,\"_634\":210,\"_635\":2638,\"_637\":2639,\"_639\":25,\"_640\":2640,\"_642\":2641,\"_644\":2636,\"_645\":217,\"_646\":2635,\"_647\":210,\"_648\":2638,\"_649\":2639,\"_12\":2636,\"_651\":1307,\"_160\":2642,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2642,\"_672\":-5,\"_673\":2643,\"_674\":-5,\"_675\":-5},{\"_617\":2623,\"_619\":620,\"_621\":2624,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2625,\"_627\":2626,\"_629\":1448,\"_631\":1327,\"_633\":217,\"_634\":223,\"_635\":2627,\"_637\":2628,\"_639\":25,\"_640\":2629,\"_642\":2630,\"_644\":2626,\"_645\":217,\"_646\":2625,\"_647\":223,\"_648\":2627,\"_649\":2628,\"_12\":2631,\"_651\":1158,\"_160\":2199,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2199,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2611,\"_619\":620,\"_621\":2612,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2613,\"_627\":2614,\"_629\":2615,\"_631\":977,\"_633\":217,\"_634\":684,\"_635\":2616,\"_637\":2617,\"_639\":25,\"_640\":2618,\"_642\":2619,\"_644\":2614,\"_645\":217,\"_646\":2613,\"_647\":684,\"_648\":2616,\"_649\":2617,\"_12\":2620,\"_651\":1103,\"_160\":2621,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2621,\"_672\":-5,\"_673\":1321,\"_674\":-5,\"_675\":-5},{\"_617\":2601,\"_619\":620,\"_621\":2602,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2603,\"_627\":2604,\"_629\":1524,\"_631\":759,\"_633\":217,\"_634\":201,\"_635\":2605,\"_637\":2606,\"_639\":25,\"_640\":2607,\"_642\":2608,\"_644\":2604,\"_645\":217,\"_646\":2603,\"_647\":201,\"_648\":2605,\"_649\":2606,\"_12\":2609,\"_651\":1078,\"_160\":2403,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2590,\"_619\":620,\"_621\":2591,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2592,\"_627\":2593,\"_629\":2152,\"_631\":2594,\"_633\":217,\"_634\":201,\"_635\":2595,\"_637\":2596,\"_639\":25,\"_640\":2597,\"_642\":2598,\"_644\":2593,\"_645\":217,\"_646\":2592,\"_647\":201,\"_648\":2595,\"_649\":2596,\"_12\":2599,\"_651\":1353,\"_160\":2160,\"_173\":654,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2160,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2580,\"_619\":620,\"_621\":2581,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2582,\"_627\":2583,\"_629\":2584,\"_631\":2503,\"_633\":217,\"_634\":217,\"_635\":2585,\"_637\":2586,\"_639\":25,\"_640\":2587,\"_642\":2588,\"_644\":2583,\"_645\":217,\"_646\":2582,\"_647\":217,\"_648\":2585,\"_649\":2586,\"_12\":2583,\"_651\":1103,\"_160\":779,\"_173\":1105,\"_171\":654,\"_166\":1146,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":2391,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":779,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2568,\"_619\":620,\"_621\":2569,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2570,\"_627\":2571,\"_629\":2572,\"_631\":862,\"_633\":217,\"_634\":215,\"_635\":2573,\"_637\":2574,\"_639\":25,\"_640\":2575,\"_642\":2576,\"_644\":2571,\"_645\":217,\"_646\":2570,\"_647\":215,\"_648\":2573,\"_649\":2574,\"_12\":2571,\"_651\":1307,\"_160\":2577,\"_173\":780,\"_171\":654,\"_166\":2578,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":721,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2577,\"_672\":-5,\"_673\":691,\"_674\":-5,\"_675\":-5},{\"_617\":2558,\"_619\":620,\"_621\":2559,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2560,\"_627\":2561,\"_629\":811,\"_631\":2562,\"_633\":217,\"_634\":221,\"_635\":2563,\"_637\":2564,\"_639\":25,\"_640\":2565,\"_642\":2566,\"_644\":2561,\"_645\":217,\"_646\":2560,\"_647\":221,\"_648\":2563,\"_649\":2564,\"_12\":2561,\"_651\":1158,\"_160\":2403,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2546,\"_619\":620,\"_621\":2547,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2548,\"_627\":2549,\"_629\":1807,\"_631\":2550,\"_633\":217,\"_634\":217,\"_635\":2551,\"_637\":2552,\"_639\":25,\"_640\":2553,\"_642\":2554,\"_644\":2549,\"_645\":217,\"_646\":2548,\"_647\":217,\"_648\":2551,\"_649\":2552,\"_12\":2549,\"_651\":2555,\"_160\":2556,\"_173\":780,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":2391,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2556,\"_672\":-5,\"_673\":1956,\"_674\":-5,\"_675\":-5},{\"_617\":2533,\"_619\":620,\"_621\":2534,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2535,\"_627\":2536,\"_629\":2537,\"_631\":2538,\"_633\":217,\"_634\":684,\"_635\":2539,\"_637\":2540,\"_639\":25,\"_640\":2541,\"_642\":2542,\"_644\":2536,\"_645\":217,\"_646\":2535,\"_647\":684,\"_648\":2539,\"_649\":2540,\"_12\":2536,\"_651\":2543,\"_160\":2544,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2544,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2523,\"_619\":620,\"_621\":2524,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2525,\"_627\":2526,\"_629\":1085,\"_631\":2230,\"_633\":217,\"_634\":217,\"_635\":2527,\"_637\":2528,\"_639\":25,\"_640\":2529,\"_642\":2530,\"_644\":2526,\"_645\":217,\"_646\":2525,\"_647\":217,\"_648\":2527,\"_649\":2528,\"_12\":2531,\"_651\":1158,\"_160\":2247,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2247,\"_672\":-5,\"_673\":1406,\"_674\":-5,\"_675\":-5},{\"_617\":2511,\"_619\":620,\"_621\":2512,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2513,\"_627\":2514,\"_629\":965,\"_631\":2055,\"_633\":217,\"_634\":210,\"_635\":2515,\"_637\":2516,\"_639\":25,\"_640\":2517,\"_642\":2518,\"_644\":2514,\"_645\":217,\"_646\":2513,\"_647\":210,\"_648\":2515,\"_649\":2516,\"_12\":2519,\"_651\":1158,\"_160\":2520,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2520,\"_672\":-5,\"_673\":2521,\"_674\":-5,\"_675\":-5},{\"_617\":2498,\"_619\":620,\"_621\":2499,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2500,\"_627\":2501,\"_629\":2502,\"_631\":2503,\"_633\":217,\"_634\":215,\"_635\":2504,\"_637\":2505,\"_639\":25,\"_640\":2506,\"_642\":2507,\"_644\":2501,\"_645\":217,\"_646\":2500,\"_647\":215,\"_648\":2504,\"_649\":2505,\"_12\":2501,\"_651\":2508,\"_160\":765,\"_173\":654,\"_171\":654,\"_166\":2509,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1633,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":765,\"_672\":-5,\"_673\":691,\"_674\":-5,\"_675\":-5},{\"_617\":2486,\"_619\":620,\"_621\":2487,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2488,\"_627\":2489,\"_629\":758,\"_631\":2490,\"_633\":217,\"_634\":217,\"_635\":2491,\"_637\":2492,\"_639\":25,\"_640\":2493,\"_642\":2494,\"_644\":2489,\"_645\":217,\"_646\":2488,\"_647\":217,\"_648\":2491,\"_649\":2492,\"_12\":2495,\"_651\":1307,\"_160\":2496,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2496,\"_672\":-5,\"_673\":1888,\"_674\":-5,\"_675\":-5},{\"_617\":2472,\"_619\":620,\"_621\":2473,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2474,\"_627\":2475,\"_629\":2476,\"_631\":2477,\"_633\":217,\"_634\":215,\"_635\":2478,\"_637\":2479,\"_639\":25,\"_640\":2480,\"_642\":2481,\"_644\":2475,\"_645\":217,\"_646\":2474,\"_647\":215,\"_648\":2478,\"_649\":2479,\"_12\":2475,\"_651\":2482,\"_160\":2483,\"_173\":693,\"_171\":654,\"_166\":2484,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2483,\"_672\":-5,\"_673\":842,\"_674\":-5,\"_675\":-5},{\"_617\":2457,\"_619\":620,\"_621\":2458,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2459,\"_627\":2460,\"_629\":2461,\"_631\":2462,\"_633\":217,\"_634\":217,\"_635\":2463,\"_637\":2464,\"_639\":25,\"_640\":2465,\"_642\":2466,\"_644\":2460,\"_645\":217,\"_646\":2459,\"_647\":217,\"_648\":2463,\"_649\":2464,\"_12\":2467,\"_651\":2468,\"_160\":2469,\"_173\":780,\"_171\":654,\"_166\":1055,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2469,\"_672\":-5,\"_673\":2470,\"_674\":-5,\"_675\":-5},{\"_617\":2447,\"_619\":620,\"_621\":2448,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2449,\"_627\":2450,\"_629\":823,\"_631\":2451,\"_633\":217,\"_634\":217,\"_635\":2452,\"_637\":2453,\"_639\":25,\"_640\":2454,\"_642\":2455,\"_644\":2450,\"_645\":217,\"_646\":2449,\"_647\":217,\"_648\":2452,\"_649\":2453,\"_12\":2450,\"_651\":1066,\"_160\":2235,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2235,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2437,\"_619\":620,\"_621\":2438,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2439,\"_627\":2440,\"_629\":1498,\"_631\":1348,\"_633\":217,\"_634\":684,\"_635\":2441,\"_637\":2442,\"_639\":25,\"_640\":2443,\"_642\":2444,\"_644\":2440,\"_645\":217,\"_646\":2439,\"_647\":684,\"_648\":2441,\"_649\":2442,\"_12\":2440,\"_651\":1307,\"_160\":2445,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2445,\"_672\":-5,\"_673\":945,\"_674\":-5,\"_675\":-5},{\"_617\":2428,\"_619\":620,\"_621\":2429,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2430,\"_627\":2431,\"_629\":1498,\"_631\":1628,\"_633\":217,\"_634\":210,\"_635\":2432,\"_637\":2433,\"_639\":25,\"_640\":2434,\"_642\":2435,\"_644\":2431,\"_645\":217,\"_646\":2430,\"_647\":210,\"_648\":2432,\"_649\":2433,\"_12\":2431,\"_651\":1699,\"_160\":2328,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2328,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2415,\"_619\":620,\"_621\":2416,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2417,\"_627\":2418,\"_629\":713,\"_631\":2419,\"_633\":217,\"_634\":223,\"_635\":2420,\"_637\":2421,\"_639\":25,\"_640\":2422,\"_642\":2423,\"_644\":2418,\"_645\":217,\"_646\":2417,\"_647\":223,\"_648\":2420,\"_649\":2421,\"_12\":2418,\"_651\":1158,\"_160\":2424,\"_173\":780,\"_171\":654,\"_166\":2425,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":2391,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2424,\"_672\":-5,\"_673\":2426,\"_674\":-5,\"_675\":-5},{\"_617\":2405,\"_619\":620,\"_621\":2406,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2407,\"_627\":2408,\"_629\":1524,\"_631\":2409,\"_633\":217,\"_634\":217,\"_635\":2410,\"_637\":2411,\"_639\":25,\"_640\":2412,\"_642\":2413,\"_644\":2408,\"_645\":217,\"_646\":2407,\"_647\":217,\"_648\":2410,\"_649\":2411,\"_12\":2408,\"_651\":1078,\"_160\":2260,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2260,\"_672\":-5,\"_673\":2011,\"_674\":-5,\"_675\":-5},{\"_617\":2393,\"_619\":620,\"_621\":2394,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2395,\"_627\":2396,\"_629\":1524,\"_631\":2397,\"_633\":217,\"_634\":217,\"_635\":2398,\"_637\":2399,\"_639\":25,\"_640\":2400,\"_642\":2401,\"_644\":2396,\"_645\":217,\"_646\":2395,\"_647\":217,\"_648\":2398,\"_649\":2399,\"_12\":2402,\"_651\":1158,\"_160\":2403,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2380,\"_619\":620,\"_621\":2381,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2382,\"_627\":2383,\"_629\":713,\"_631\":2384,\"_633\":217,\"_634\":223,\"_635\":2385,\"_637\":2386,\"_639\":25,\"_640\":2387,\"_642\":2388,\"_644\":2383,\"_645\":217,\"_646\":2382,\"_647\":223,\"_648\":2385,\"_649\":2386,\"_12\":2383,\"_651\":1158,\"_160\":2389,\"_173\":750,\"_171\":654,\"_166\":2390,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":2391,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2389,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2367,\"_619\":620,\"_621\":2368,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2369,\"_627\":2370,\"_629\":2371,\"_631\":2372,\"_633\":217,\"_634\":215,\"_635\":2373,\"_637\":2374,\"_639\":25,\"_640\":2375,\"_642\":2376,\"_644\":2370,\"_645\":217,\"_646\":2369,\"_647\":215,\"_648\":2373,\"_649\":2374,\"_12\":2370,\"_651\":1158,\"_160\":2377,\"_173\":1105,\"_171\":654,\"_166\":2378,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":200,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2377,\"_672\":-5,\"_673\":1462,\"_674\":-5,\"_675\":-5},{\"_617\":2355,\"_619\":620,\"_621\":2356,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2357,\"_627\":2358,\"_629\":2297,\"_631\":2359,\"_633\":217,\"_634\":201,\"_635\":2360,\"_637\":2361,\"_639\":25,\"_640\":2362,\"_642\":2363,\"_644\":2358,\"_645\":217,\"_646\":2357,\"_647\":201,\"_648\":2360,\"_649\":2361,\"_12\":2364,\"_651\":1103,\"_160\":1406,\"_173\":780,\"_171\":654,\"_166\":2129,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1406,\"_672\":-5,\"_673\":2365,\"_674\":-5,\"_675\":-5},{\"_617\":2342,\"_619\":620,\"_621\":2343,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2344,\"_627\":2345,\"_629\":2346,\"_631\":1716,\"_633\":217,\"_634\":684,\"_635\":2347,\"_637\":2348,\"_639\":25,\"_640\":2349,\"_642\":2350,\"_644\":2345,\"_645\":217,\"_646\":2344,\"_647\":684,\"_648\":2347,\"_649\":2348,\"_12\":2345,\"_651\":2351,\"_160\":2352,\"_173\":780,\"_171\":654,\"_166\":2353,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2352,\"_672\":-5,\"_673\":1419,\"_674\":-5,\"_675\":-5},{\"_617\":2330,\"_619\":620,\"_621\":2331,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2332,\"_627\":2333,\"_629\":2297,\"_631\":2334,\"_633\":217,\"_634\":217,\"_635\":2335,\"_637\":2336,\"_639\":25,\"_640\":2337,\"_642\":2338,\"_644\":2333,\"_645\":217,\"_646\":2332,\"_647\":217,\"_648\":2335,\"_649\":2336,\"_12\":2333,\"_651\":1078,\"_160\":2339,\"_173\":780,\"_171\":654,\"_166\":2303,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2339,\"_672\":-5,\"_673\":2340,\"_674\":-5,\"_675\":-5},{\"_617\":2318,\"_619\":620,\"_621\":2319,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2320,\"_627\":2321,\"_629\":1498,\"_631\":2322,\"_633\":217,\"_634\":210,\"_635\":2323,\"_637\":2324,\"_639\":25,\"_640\":2325,\"_642\":2326,\"_644\":2321,\"_645\":217,\"_646\":2320,\"_647\":210,\"_648\":2323,\"_649\":2324,\"_12\":2321,\"_651\":2327,\"_160\":2328,\"_173\":780,\"_171\":654,\"_166\":2099,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2328,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2306,\"_619\":620,\"_621\":2307,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2308,\"_627\":2309,\"_629\":2310,\"_631\":2311,\"_633\":217,\"_634\":217,\"_635\":2312,\"_637\":2313,\"_639\":25,\"_640\":2314,\"_642\":2315,\"_644\":2309,\"_645\":217,\"_646\":2308,\"_647\":217,\"_648\":2312,\"_649\":2313,\"_12\":2309,\"_651\":1158,\"_160\":707,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":2316,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":707,\"_672\":-5,\"_673\":779,\"_674\":-5,\"_675\":-5},{\"_617\":2293,\"_619\":620,\"_621\":2294,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2295,\"_627\":2296,\"_629\":2297,\"_631\":2298,\"_633\":217,\"_634\":201,\"_635\":2299,\"_637\":2300,\"_639\":25,\"_640\":2301,\"_642\":2302,\"_644\":2296,\"_645\":217,\"_646\":2295,\"_647\":201,\"_648\":2299,\"_649\":2300,\"_12\":2296,\"_651\":1103,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":2303,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":2304,\"_674\":-5,\"_675\":-5},{\"_617\":2282,\"_619\":620,\"_621\":2283,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2284,\"_627\":2285,\"_629\":811,\"_631\":2286,\"_633\":222,\"_634\":684,\"_635\":2287,\"_637\":2288,\"_639\":25,\"_640\":2289,\"_642\":2290,\"_644\":2285,\"_645\":222,\"_646\":2284,\"_647\":684,\"_648\":2287,\"_649\":2288,\"_12\":2285,\"_651\":1118,\"_160\":2291,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2291,\"_672\":-5,\"_673\":1442,\"_674\":-5,\"_675\":-5},{\"_617\":2272,\"_619\":620,\"_621\":2273,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2274,\"_627\":2275,\"_629\":1085,\"_631\":1962,\"_633\":217,\"_634\":210,\"_635\":2276,\"_637\":2277,\"_639\":25,\"_640\":2278,\"_642\":2279,\"_644\":2275,\"_645\":217,\"_646\":2274,\"_647\":210,\"_648\":2276,\"_649\":2277,\"_12\":2275,\"_651\":1307,\"_160\":2280,\"_173\":1105,\"_171\":654,\"_166\":751,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":752,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2280,\"_672\":-5,\"_673\":971,\"_674\":-5,\"_675\":-5},{\"_617\":2262,\"_619\":620,\"_621\":2263,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2264,\"_627\":2265,\"_629\":917,\"_631\":2266,\"_633\":217,\"_634\":210,\"_635\":2267,\"_637\":990,\"_639\":25,\"_640\":2268,\"_642\":2269,\"_644\":2265,\"_645\":217,\"_646\":2264,\"_647\":210,\"_648\":2267,\"_649\":990,\"_12\":2265,\"_651\":1078,\"_160\":2270,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2270,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2250,\"_619\":620,\"_621\":2251,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2252,\"_627\":2253,\"_629\":1524,\"_631\":2254,\"_633\":217,\"_634\":217,\"_635\":2255,\"_637\":2256,\"_639\":25,\"_640\":2257,\"_642\":2258,\"_644\":2253,\"_645\":217,\"_646\":2252,\"_647\":217,\"_648\":2255,\"_649\":2256,\"_12\":2259,\"_651\":1066,\"_160\":2260,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2260,\"_672\":-5,\"_673\":2011,\"_674\":-5,\"_675\":-5},{\"_617\":2237,\"_619\":620,\"_621\":2238,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2239,\"_627\":2240,\"_629\":1448,\"_631\":2241,\"_633\":217,\"_634\":223,\"_635\":2242,\"_637\":2243,\"_639\":25,\"_640\":2244,\"_642\":2245,\"_644\":2240,\"_645\":217,\"_646\":2239,\"_647\":223,\"_648\":2242,\"_649\":2243,\"_12\":2246,\"_651\":1158,\"_160\":2247,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2247,\"_672\":-5,\"_673\":2248,\"_674\":-5,\"_675\":-5},{\"_617\":2226,\"_619\":620,\"_621\":2227,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2228,\"_627\":2229,\"_629\":743,\"_631\":2230,\"_633\":217,\"_634\":217,\"_635\":2231,\"_637\":2232,\"_639\":25,\"_640\":2233,\"_642\":2234,\"_644\":2229,\"_645\":217,\"_646\":2228,\"_647\":217,\"_648\":2231,\"_649\":2232,\"_12\":1967,\"_651\":1103,\"_160\":2235,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2235,\"_672\":-5,\"_673\":982,\"_674\":-5,\"_675\":-5},{\"_617\":2215,\"_619\":620,\"_621\":2216,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2217,\"_627\":2218,\"_629\":1085,\"_631\":2219,\"_633\":217,\"_634\":210,\"_635\":2220,\"_637\":2221,\"_639\":25,\"_640\":2222,\"_642\":2223,\"_644\":2218,\"_645\":217,\"_646\":2217,\"_647\":210,\"_648\":2220,\"_649\":2221,\"_12\":2218,\"_651\":1078,\"_160\":2224,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2224,\"_672\":-5,\"_673\":805,\"_674\":-5,\"_675\":-5},{\"_617\":2202,\"_619\":620,\"_621\":2203,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2204,\"_627\":2205,\"_629\":1085,\"_631\":2206,\"_633\":217,\"_634\":210,\"_635\":2207,\"_637\":2208,\"_639\":25,\"_640\":2209,\"_642\":2210,\"_644\":2205,\"_645\":217,\"_646\":2204,\"_647\":210,\"_648\":2207,\"_649\":2208,\"_12\":2211,\"_651\":1078,\"_160\":2212,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2212,\"_672\":-5,\"_673\":2213,\"_674\":-5,\"_675\":-5},{\"_617\":2187,\"_619\":620,\"_621\":2188,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2189,\"_627\":2190,\"_629\":2191,\"_631\":2192,\"_633\":217,\"_634\":217,\"_635\":2193,\"_637\":2194,\"_639\":25,\"_640\":2195,\"_642\":2196,\"_644\":2190,\"_645\":217,\"_646\":2189,\"_647\":217,\"_648\":2193,\"_649\":2194,\"_12\":2197,\"_651\":2198,\"_160\":2199,\"_173\":750,\"_171\":1105,\"_166\":2200,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2199,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2175,\"_619\":620,\"_621\":2176,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2177,\"_627\":2178,\"_629\":835,\"_631\":2179,\"_633\":217,\"_634\":684,\"_635\":2180,\"_637\":2181,\"_639\":25,\"_640\":2182,\"_642\":2183,\"_644\":2178,\"_645\":217,\"_646\":2177,\"_647\":684,\"_648\":2180,\"_649\":2181,\"_12\":2184,\"_651\":2030,\"_160\":2185,\"_173\":780,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2185,\"_672\":-5,\"_673\":841,\"_674\":-5,\"_675\":-5},{\"_617\":2162,\"_619\":620,\"_621\":2163,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2164,\"_627\":2165,\"_629\":953,\"_631\":2166,\"_633\":217,\"_634\":223,\"_635\":2167,\"_637\":2168,\"_639\":25,\"_640\":2169,\"_642\":2170,\"_644\":2165,\"_645\":217,\"_646\":2164,\"_647\":223,\"_648\":2167,\"_649\":2168,\"_12\":2171,\"_651\":2172,\"_160\":2173,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2173,\"_672\":-5,\"_673\":959,\"_674\":-5,\"_675\":-5},{\"_617\":2148,\"_619\":620,\"_621\":2149,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2150,\"_627\":2151,\"_629\":2152,\"_631\":2153,\"_633\":217,\"_634\":201,\"_635\":2154,\"_637\":2155,\"_639\":25,\"_640\":2156,\"_642\":2157,\"_644\":2151,\"_645\":217,\"_646\":2150,\"_647\":201,\"_648\":2154,\"_649\":2155,\"_12\":2158,\"_651\":2159,\"_160\":2160,\"_173\":654,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2160,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2140,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2141,\"_627\":2142,\"_629\":1048,\"_631\":2143,\"_633\":217,\"_634\":210,\"_635\":2144,\"_637\":2145,\"_639\":25,\"_640\":2146,\"_642\":2147,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":2142,\"_651\":778,\"_160\":1406,\"_173\":780,\"_171\":654,\"_166\":1055,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1406,\"_672\":-5,\"_673\":2139,\"_674\":-5,\"_675\":-5},{\"_617\":2131,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2132,\"_627\":2133,\"_629\":1048,\"_631\":744,\"_633\":217,\"_634\":210,\"_635\":2134,\"_637\":2135,\"_639\":25,\"_640\":2136,\"_642\":2137,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":2133,\"_651\":778,\"_160\":945,\"_173\":780,\"_171\":654,\"_166\":2138,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":208,\"_661\":220,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":945,\"_672\":-5,\"_673\":2139,\"_674\":-5,\"_675\":-5},{\"_617\":2114,\"_619\":1043,\"_621\":2115,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2116,\"_627\":2117,\"_629\":1822,\"_631\":2118,\"_633\":217,\"_634\":201,\"_635\":2119,\"_637\":2120,\"_639\":25,\"_640\":2121,\"_642\":2122,\"_644\":2123,\"_645\":217,\"_646\":2124,\"_647\":684,\"_648\":2125,\"_649\":2126,\"_12\":2117,\"_651\":778,\"_160\":2127,\"_173\":780,\"_171\":654,\"_166\":2128,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2127,\"_672\":-5,\"_673\":2129,\"_674\":-5,\"_675\":-5},{\"_617\":2102,\"_619\":620,\"_621\":2103,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2104,\"_627\":2105,\"_629\":1614,\"_631\":2106,\"_633\":217,\"_634\":210,\"_635\":2107,\"_637\":2108,\"_639\":25,\"_640\":2109,\"_642\":2110,\"_644\":2105,\"_645\":217,\"_646\":2104,\"_647\":210,\"_648\":2107,\"_649\":2108,\"_12\":2105,\"_651\":690,\"_160\":2111,\"_173\":692,\"_171\":654,\"_166\":691,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2111,\"_672\":-5,\"_673\":2112,\"_674\":-5,\"_675\":-5},{\"_617\":2090,\"_619\":620,\"_621\":2091,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2092,\"_627\":2093,\"_629\":1498,\"_631\":2094,\"_633\":217,\"_634\":210,\"_635\":2095,\"_637\":2096,\"_639\":25,\"_640\":2097,\"_642\":2098,\"_644\":2093,\"_645\":217,\"_646\":2092,\"_647\":210,\"_648\":2095,\"_649\":2096,\"_12\":2093,\"_651\":690,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":2099,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":2100,\"_674\":-5,\"_675\":-5},{\"_617\":2077,\"_619\":620,\"_621\":2078,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2079,\"_627\":2080,\"_629\":2081,\"_631\":2082,\"_633\":217,\"_634\":201,\"_635\":2083,\"_637\":2084,\"_639\":25,\"_640\":2085,\"_642\":2086,\"_644\":2080,\"_645\":217,\"_646\":2079,\"_647\":201,\"_648\":2083,\"_649\":2084,\"_12\":2087,\"_651\":778,\"_160\":805,\"_173\":692,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":2088,\"_674\":-5,\"_675\":-5},{\"_617\":2063,\"_619\":620,\"_621\":2064,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2065,\"_627\":2066,\"_629\":2067,\"_631\":2068,\"_633\":217,\"_634\":684,\"_635\":2069,\"_637\":2070,\"_639\":25,\"_640\":2071,\"_642\":2072,\"_644\":2066,\"_645\":217,\"_646\":2065,\"_647\":684,\"_648\":2069,\"_649\":2070,\"_12\":2066,\"_651\":690,\"_160\":2073,\"_173\":1105,\"_171\":654,\"_166\":2074,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2073,\"_672\":-5,\"_673\":2075,\"_674\":-5,\"_675\":-5},{\"_617\":2052,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2053,\"_627\":2054,\"_629\":1048,\"_631\":2055,\"_633\":217,\"_634\":210,\"_635\":2056,\"_637\":2057,\"_639\":25,\"_640\":2058,\"_642\":2059,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":2054,\"_651\":1078,\"_160\":2060,\"_173\":750,\"_171\":654,\"_166\":2061,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":2062,\"_661\":736,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2060,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2043,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2044,\"_627\":2045,\"_629\":1048,\"_631\":877,\"_633\":217,\"_634\":209,\"_635\":2046,\"_637\":2047,\"_639\":25,\"_640\":2048,\"_642\":2049,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":2045,\"_651\":1307,\"_160\":2050,\"_173\":1105,\"_171\":654,\"_166\":2051,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":416,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2050,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2034,\"_619\":1043,\"_621\":2014,\"_15\":-5,\"_623\":2015,\"_624\":25,\"_625\":1045,\"_260\":2035,\"_627\":2036,\"_629\":2037,\"_631\":2038,\"_633\":2026,\"_634\":684,\"_635\":2039,\"_637\":2040,\"_639\":25,\"_640\":2041,\"_642\":2042,\"_644\":2025,\"_645\":2026,\"_646\":2027,\"_647\":684,\"_648\":2028,\"_649\":2029,\"_12\":2036,\"_651\":1144,\"_160\":2031,\"_173\":1105,\"_171\":654,\"_166\":2032,\"_656\":36,\"_657\":1633,\"_658\":25,\"_659\":1546,\"_661\":1633,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2031,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2013,\"_619\":1043,\"_621\":2014,\"_15\":-5,\"_623\":2015,\"_624\":25,\"_625\":1045,\"_260\":2016,\"_627\":2017,\"_629\":2018,\"_631\":2019,\"_633\":2020,\"_634\":684,\"_635\":2021,\"_637\":2022,\"_639\":25,\"_640\":2023,\"_642\":2024,\"_644\":2025,\"_645\":2026,\"_646\":2027,\"_647\":684,\"_648\":2028,\"_649\":2029,\"_12\":2017,\"_651\":2030,\"_160\":2031,\"_173\":1105,\"_171\":654,\"_166\":2032,\"_656\":36,\"_657\":208,\"_658\":25,\"_659\":1546,\"_661\":208,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2031,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2002,\"_619\":620,\"_621\":2003,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2004,\"_627\":2005,\"_629\":2006,\"_631\":1823,\"_633\":217,\"_634\":215,\"_635\":2007,\"_637\":2008,\"_639\":25,\"_640\":2009,\"_642\":2010,\"_644\":2005,\"_645\":217,\"_646\":2004,\"_647\":215,\"_648\":2007,\"_649\":2008,\"_12\":2005,\"_651\":1078,\"_160\":2011,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2011,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1989,\"_619\":620,\"_621\":1990,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1991,\"_627\":1992,\"_629\":1176,\"_631\":1993,\"_633\":217,\"_634\":215,\"_635\":1994,\"_637\":1995,\"_639\":25,\"_640\":1996,\"_642\":1997,\"_644\":1992,\"_645\":217,\"_646\":1991,\"_647\":215,\"_648\":1994,\"_649\":1995,\"_12\":1992,\"_651\":1158,\"_160\":1183,\"_173\":1998,\"_171\":654,\"_166\":1999,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":2000,\"_661\":736,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1183,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1978,\"_619\":620,\"_621\":1979,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1980,\"_627\":1981,\"_629\":965,\"_631\":1982,\"_633\":217,\"_634\":210,\"_635\":1983,\"_637\":1984,\"_639\":25,\"_640\":1985,\"_642\":1986,\"_644\":1981,\"_645\":217,\"_646\":1980,\"_647\":210,\"_648\":1983,\"_649\":1984,\"_12\":1987,\"_651\":1078,\"_160\":805,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1969,\"_619\":620,\"_621\":1970,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1971,\"_627\":1972,\"_629\":1883,\"_631\":1795,\"_633\":217,\"_634\":217,\"_635\":1973,\"_637\":1974,\"_639\":25,\"_640\":1975,\"_642\":1976,\"_644\":1972,\"_645\":217,\"_646\":1971,\"_647\":217,\"_648\":1973,\"_649\":1974,\"_12\":1972,\"_651\":1078,\"_160\":1067,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":1633,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1067,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1958,\"_619\":620,\"_621\":1959,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1960,\"_627\":1961,\"_629\":743,\"_631\":1962,\"_633\":217,\"_634\":684,\"_635\":1963,\"_637\":1964,\"_639\":25,\"_640\":1965,\"_642\":1966,\"_644\":1961,\"_645\":217,\"_646\":1960,\"_647\":684,\"_648\":1963,\"_649\":1964,\"_12\":1967,\"_651\":1207,\"_160\":749,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":749,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1947,\"_619\":620,\"_621\":1948,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1949,\"_627\":1950,\"_629\":953,\"_631\":1951,\"_633\":217,\"_634\":223,\"_635\":1952,\"_637\":1953,\"_639\":25,\"_640\":1954,\"_642\":1955,\"_644\":1950,\"_645\":217,\"_646\":1949,\"_647\":223,\"_648\":1952,\"_649\":1953,\"_12\":1950,\"_651\":1078,\"_160\":1956,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1956,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1936,\"_619\":620,\"_621\":1937,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1938,\"_627\":1939,\"_629\":1940,\"_631\":1907,\"_633\":217,\"_634\":217,\"_635\":1941,\"_637\":1942,\"_639\":25,\"_640\":1943,\"_642\":1944,\"_644\":1939,\"_645\":217,\"_646\":1938,\"_647\":217,\"_648\":1941,\"_649\":1942,\"_12\":1939,\"_651\":1945,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1923,\"_619\":620,\"_621\":1924,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1925,\"_627\":1926,\"_629\":1807,\"_631\":1927,\"_633\":217,\"_634\":207,\"_635\":1928,\"_637\":1929,\"_639\":25,\"_640\":1930,\"_642\":1931,\"_644\":1926,\"_645\":217,\"_646\":1925,\"_647\":207,\"_648\":1928,\"_649\":1929,\"_12\":1926,\"_651\":1078,\"_160\":1932,\"_173\":780,\"_171\":654,\"_166\":1933,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":1934,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1932,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1914,\"_619\":620,\"_621\":1915,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1916,\"_627\":1917,\"_629\":1085,\"_631\":744,\"_633\":217,\"_634\":210,\"_635\":1918,\"_637\":1919,\"_639\":25,\"_640\":1920,\"_642\":1921,\"_644\":1917,\"_645\":217,\"_646\":1916,\"_647\":210,\"_648\":1918,\"_649\":1919,\"_12\":1917,\"_651\":1066,\"_160\":1380,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1380,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1903,\"_619\":620,\"_621\":1904,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1905,\"_627\":1906,\"_629\":743,\"_631\":1907,\"_633\":217,\"_634\":217,\"_635\":1908,\"_637\":1909,\"_639\":25,\"_640\":1910,\"_642\":1911,\"_644\":1906,\"_645\":217,\"_646\":1905,\"_647\":217,\"_648\":1908,\"_649\":1909,\"_12\":1912,\"_651\":1078,\"_160\":1577,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1577,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1891,\"_619\":620,\"_621\":1892,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1893,\"_627\":1894,\"_629\":1895,\"_631\":1896,\"_633\":203,\"_634\":203,\"_635\":1897,\"_637\":1898,\"_639\":25,\"_640\":1899,\"_642\":1900,\"_644\":1894,\"_645\":203,\"_646\":1893,\"_647\":203,\"_648\":1897,\"_649\":1898,\"_12\":1894,\"_651\":1901,\"_160\":1462,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1462,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1879,\"_619\":620,\"_621\":1880,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1881,\"_627\":1882,\"_629\":1883,\"_631\":988,\"_633\":217,\"_634\":214,\"_635\":1884,\"_637\":1885,\"_639\":25,\"_640\":1886,\"_642\":1887,\"_644\":1882,\"_645\":217,\"_646\":1881,\"_647\":214,\"_648\":1884,\"_649\":1885,\"_12\":1882,\"_651\":1078,\"_160\":1888,\"_173\":654,\"_171\":654,\"_166\":1889,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1888,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1866,\"_619\":620,\"_621\":1867,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1868,\"_627\":1869,\"_629\":1870,\"_631\":1871,\"_633\":217,\"_634\":215,\"_635\":1872,\"_637\":1873,\"_639\":25,\"_640\":1874,\"_642\":1875,\"_644\":1869,\"_645\":217,\"_646\":1868,\"_647\":215,\"_648\":1872,\"_649\":1873,\"_12\":1876,\"_651\":1800,\"_160\":1877,\"_173\":692,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1877,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1854,\"_619\":620,\"_621\":1855,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1856,\"_627\":1857,\"_629\":743,\"_631\":1858,\"_633\":217,\"_634\":217,\"_635\":1859,\"_637\":1860,\"_639\":25,\"_640\":1861,\"_642\":1862,\"_644\":1857,\"_645\":217,\"_646\":1856,\"_647\":217,\"_648\":1859,\"_649\":1860,\"_12\":1863,\"_651\":1078,\"_160\":1864,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1864,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1844,\"_619\":620,\"_621\":1845,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1846,\"_627\":1847,\"_629\":1524,\"_631\":1848,\"_633\":217,\"_634\":201,\"_635\":1849,\"_637\":1850,\"_639\":25,\"_640\":1851,\"_642\":1852,\"_644\":1847,\"_645\":217,\"_646\":1846,\"_647\":201,\"_648\":1849,\"_649\":1850,\"_12\":1847,\"_651\":1307,\"_160\":1005,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1005,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1831,\"_619\":620,\"_621\":1832,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1833,\"_627\":1834,\"_629\":1835,\"_631\":1836,\"_633\":217,\"_634\":684,\"_635\":1837,\"_637\":1838,\"_639\":25,\"_640\":1839,\"_642\":1840,\"_644\":1834,\"_645\":217,\"_646\":1833,\"_647\":684,\"_648\":1837,\"_649\":1838,\"_12\":1841,\"_651\":1103,\"_160\":1842,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1842,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1818,\"_619\":620,\"_621\":1819,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1820,\"_627\":1821,\"_629\":1822,\"_631\":1823,\"_633\":217,\"_634\":684,\"_635\":1824,\"_637\":1825,\"_639\":25,\"_640\":1826,\"_642\":1827,\"_644\":1821,\"_645\":217,\"_646\":1820,\"_647\":684,\"_648\":1824,\"_649\":1825,\"_12\":1821,\"_651\":1158,\"_160\":1828,\"_173\":692,\"_171\":654,\"_166\":1829,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1828,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1803,\"_619\":620,\"_621\":1804,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1805,\"_627\":1806,\"_629\":1807,\"_631\":1808,\"_633\":217,\"_634\":207,\"_635\":1809,\"_637\":1810,\"_639\":25,\"_640\":1811,\"_642\":1812,\"_644\":1806,\"_645\":217,\"_646\":1805,\"_647\":207,\"_648\":1809,\"_649\":1810,\"_12\":1813,\"_651\":1814,\"_160\":1815,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1816,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1815,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1791,\"_619\":620,\"_621\":1792,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1793,\"_627\":1794,\"_629\":713,\"_631\":1795,\"_633\":217,\"_634\":684,\"_635\":1796,\"_637\":1797,\"_639\":25,\"_640\":1798,\"_642\":1799,\"_644\":1794,\"_645\":217,\"_646\":1793,\"_647\":684,\"_648\":1796,\"_649\":1797,\"_12\":1794,\"_651\":1800,\"_160\":1653,\"_173\":946,\"_171\":654,\"_166\":1801,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":200,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1653,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1780,\"_619\":620,\"_621\":1781,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1782,\"_627\":1783,\"_629\":891,\"_631\":1784,\"_633\":217,\"_634\":684,\"_635\":1785,\"_637\":1786,\"_639\":25,\"_640\":1787,\"_642\":1788,\"_644\":1783,\"_645\":217,\"_646\":1782,\"_647\":684,\"_648\":1785,\"_649\":1786,\"_12\":1789,\"_651\":1103,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1768,\"_619\":620,\"_621\":1769,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1770,\"_627\":1771,\"_629\":1772,\"_631\":1400,\"_633\":217,\"_634\":217,\"_635\":1773,\"_637\":1774,\"_639\":25,\"_640\":1775,\"_642\":1776,\"_644\":1771,\"_645\":217,\"_646\":1770,\"_647\":217,\"_648\":1773,\"_649\":1774,\"_12\":1777,\"_651\":1103,\"_160\":691,\"_173\":946,\"_171\":654,\"_166\":1778,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":691,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1757,\"_619\":620,\"_621\":1758,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1759,\"_627\":1760,\"_629\":1761,\"_631\":780,\"_633\":217,\"_634\":684,\"_635\":1762,\"_637\":1763,\"_639\":25,\"_640\":1764,\"_642\":1765,\"_644\":1760,\"_645\":217,\"_646\":1759,\"_647\":684,\"_648\":1762,\"_649\":1763,\"_12\":1760,\"_651\":1766,\"_160\":720,\"_173\":1105,\"_171\":654,\"_166\":1430,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":752,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1746,\"_619\":620,\"_621\":1747,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1748,\"_627\":1749,\"_629\":1627,\"_631\":1750,\"_633\":217,\"_634\":215,\"_635\":1751,\"_637\":1752,\"_639\":25,\"_640\":1753,\"_642\":1754,\"_644\":1749,\"_645\":217,\"_646\":1748,\"_647\":215,\"_648\":1751,\"_649\":1752,\"_12\":1755,\"_651\":1078,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1735,\"_619\":620,\"_621\":1736,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1737,\"_627\":1738,\"_629\":1461,\"_631\":1739,\"_633\":217,\"_634\":217,\"_635\":1740,\"_637\":1741,\"_639\":25,\"_640\":1742,\"_642\":1743,\"_644\":1738,\"_645\":217,\"_646\":1737,\"_647\":217,\"_648\":1740,\"_649\":1741,\"_12\":1738,\"_651\":1158,\"_160\":1067,\"_173\":654,\"_171\":654,\"_166\":1744,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":736,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1067,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1722,\"_619\":620,\"_621\":1723,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1724,\"_627\":1725,\"_629\":1137,\"_631\":1726,\"_633\":217,\"_634\":199,\"_635\":1727,\"_637\":1728,\"_639\":25,\"_640\":1729,\"_642\":1730,\"_644\":1725,\"_645\":217,\"_646\":1724,\"_647\":199,\"_648\":1727,\"_649\":1728,\"_12\":1731,\"_651\":1732,\"_160\":1733,\"_173\":692,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1733,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1712,\"_619\":620,\"_621\":1713,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1714,\"_627\":1715,\"_629\":1448,\"_631\":1716,\"_633\":217,\"_634\":684,\"_635\":1717,\"_637\":1718,\"_639\":25,\"_640\":1719,\"_642\":1720,\"_644\":1715,\"_645\":217,\"_646\":1714,\"_647\":684,\"_648\":1717,\"_649\":1718,\"_12\":1715,\"_651\":1066,\"_160\":720,\"_173\":654,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1702,\"_619\":620,\"_621\":1703,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1704,\"_627\":1705,\"_629\":891,\"_631\":1706,\"_633\":217,\"_634\":219,\"_635\":1707,\"_637\":1708,\"_639\":25,\"_640\":1709,\"_642\":1710,\"_644\":1705,\"_645\":217,\"_646\":1704,\"_647\":219,\"_648\":1707,\"_649\":1708,\"_12\":1705,\"_651\":1158,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1690,\"_619\":620,\"_621\":1691,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1692,\"_627\":1693,\"_629\":891,\"_631\":1694,\"_633\":217,\"_634\":217,\"_635\":1695,\"_637\":1696,\"_639\":25,\"_640\":1697,\"_642\":1698,\"_644\":1693,\"_645\":217,\"_646\":1692,\"_647\":217,\"_648\":1695,\"_649\":1696,\"_12\":1693,\"_651\":1699,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":1700,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1677,\"_619\":620,\"_621\":1678,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1679,\"_627\":1680,\"_629\":1137,\"_631\":1681,\"_633\":217,\"_634\":199,\"_635\":1682,\"_637\":1683,\"_639\":25,\"_640\":1684,\"_642\":1685,\"_644\":1680,\"_645\":217,\"_646\":1679,\"_647\":199,\"_648\":1682,\"_649\":1683,\"_12\":1686,\"_651\":1687,\"_160\":1688,\"_173\":780,\"_171\":654,\"_166\":884,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1688,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1664,\"_619\":620,\"_621\":1665,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1666,\"_627\":1667,\"_629\":1668,\"_631\":1669,\"_633\":217,\"_634\":215,\"_635\":1670,\"_637\":1671,\"_639\":25,\"_640\":1672,\"_642\":1673,\"_644\":1667,\"_645\":217,\"_646\":1666,\"_647\":215,\"_648\":1670,\"_649\":1671,\"_12\":1667,\"_651\":1103,\"_160\":1674,\"_173\":780,\"_171\":654,\"_166\":1675,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":208,\"_661\":752,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1674,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1655,\"_619\":620,\"_621\":1656,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1657,\"_627\":1658,\"_629\":891,\"_631\":1577,\"_633\":217,\"_634\":219,\"_635\":1659,\"_637\":1660,\"_639\":25,\"_640\":1661,\"_642\":1662,\"_644\":1658,\"_645\":217,\"_646\":1657,\"_647\":219,\"_648\":1659,\"_649\":1660,\"_12\":1658,\"_651\":1307,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1645,\"_619\":620,\"_621\":1646,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1647,\"_627\":1648,\"_629\":1498,\"_631\":1400,\"_633\":217,\"_634\":210,\"_635\":1649,\"_637\":1650,\"_639\":25,\"_640\":1651,\"_642\":1652,\"_644\":1648,\"_645\":217,\"_646\":1647,\"_647\":210,\"_648\":1649,\"_649\":1650,\"_12\":1648,\"_651\":1066,\"_160\":1653,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1653,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1635,\"_619\":620,\"_621\":1636,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1637,\"_627\":1638,\"_629\":758,\"_631\":1639,\"_633\":217,\"_634\":213,\"_635\":1640,\"_637\":1641,\"_639\":25,\"_640\":1642,\"_642\":1643,\"_644\":1638,\"_645\":217,\"_646\":1637,\"_647\":213,\"_648\":1640,\"_649\":1641,\"_12\":1638,\"_651\":1543,\"_160\":1544,\"_173\":780,\"_171\":654,\"_166\":1545,\"_656\":36,\"_657\":208,\"_658\":25,\"_659\":1546,\"_661\":208,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1544,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1623,\"_619\":620,\"_621\":1624,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1625,\"_627\":1626,\"_629\":1627,\"_631\":1628,\"_633\":217,\"_634\":215,\"_635\":1629,\"_637\":1630,\"_639\":25,\"_640\":1631,\"_642\":1632,\"_644\":1626,\"_645\":217,\"_646\":1625,\"_647\":215,\"_648\":1629,\"_649\":1630,\"_12\":1626,\"_651\":1078,\"_160\":707,\"_173\":654,\"_171\":654,\"_166\":1492,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1633,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":707,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1610,\"_619\":620,\"_621\":1611,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1612,\"_627\":1613,\"_629\":1614,\"_631\":1615,\"_633\":217,\"_634\":684,\"_635\":1616,\"_637\":1617,\"_639\":25,\"_640\":1618,\"_642\":1619,\"_644\":1613,\"_645\":217,\"_646\":1612,\"_647\":684,\"_648\":1616,\"_649\":1617,\"_12\":1613,\"_651\":1066,\"_160\":1620,\"_173\":750,\"_171\":1105,\"_166\":1621,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1620,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1599,\"_619\":620,\"_621\":1600,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1601,\"_627\":1602,\"_629\":1085,\"_631\":1603,\"_633\":217,\"_634\":210,\"_635\":1604,\"_637\":1605,\"_639\":25,\"_640\":1606,\"_642\":1607,\"_644\":1602,\"_645\":217,\"_646\":1601,\"_647\":210,\"_648\":1604,\"_649\":1605,\"_12\":1602,\"_651\":1078,\"_160\":1608,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1608,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1589,\"_619\":620,\"_621\":1590,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1591,\"_627\":1592,\"_629\":1498,\"_631\":1593,\"_633\":217,\"_634\":684,\"_635\":1594,\"_637\":1595,\"_639\":25,\"_640\":1596,\"_642\":1597,\"_644\":1592,\"_645\":217,\"_646\":1591,\"_647\":684,\"_648\":1594,\"_649\":1595,\"_12\":1592,\"_651\":1078,\"_160\":720,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1579,\"_619\":620,\"_621\":1580,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1581,\"_627\":1582,\"_629\":743,\"_631\":877,\"_633\":217,\"_634\":223,\"_635\":1583,\"_637\":1584,\"_639\":25,\"_640\":1585,\"_642\":1586,\"_644\":1582,\"_645\":217,\"_646\":1581,\"_647\":223,\"_648\":1583,\"_649\":1584,\"_12\":1582,\"_651\":1587,\"_160\":749,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":749,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1568,\"_619\":620,\"_621\":1569,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1570,\"_627\":1571,\"_629\":743,\"_631\":1572,\"_633\":217,\"_634\":223,\"_635\":1573,\"_637\":1574,\"_639\":25,\"_640\":1575,\"_642\":1576,\"_644\":1571,\"_645\":217,\"_646\":1570,\"_647\":223,\"_648\":1573,\"_649\":1574,\"_12\":1454,\"_651\":1078,\"_160\":1577,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1577,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1559,\"_619\":620,\"_621\":1560,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1561,\"_627\":1562,\"_629\":630,\"_631\":862,\"_633\":217,\"_634\":199,\"_635\":1563,\"_637\":1564,\"_639\":25,\"_640\":1565,\"_642\":1566,\"_644\":1562,\"_645\":217,\"_646\":1561,\"_647\":199,\"_648\":1563,\"_649\":1564,\"_12\":1562,\"_651\":1418,\"_160\":691,\"_173\":780,\"_171\":654,\"_166\":884,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":660,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":691,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1548,\"_619\":620,\"_621\":1549,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1550,\"_627\":1551,\"_629\":1552,\"_631\":1553,\"_633\":217,\"_634\":223,\"_635\":1554,\"_637\":1555,\"_639\":25,\"_640\":1556,\"_642\":1557,\"_644\":1551,\"_645\":217,\"_646\":1550,\"_647\":223,\"_648\":1554,\"_649\":1555,\"_12\":1551,\"_651\":1158,\"_160\":959,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":959,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1533,\"_619\":620,\"_621\":1534,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1535,\"_627\":1536,\"_629\":1537,\"_631\":1538,\"_633\":217,\"_634\":213,\"_635\":1539,\"_637\":1540,\"_639\":25,\"_640\":1541,\"_642\":1542,\"_644\":1536,\"_645\":217,\"_646\":1535,\"_647\":213,\"_648\":1539,\"_649\":1540,\"_12\":1536,\"_651\":1543,\"_160\":1544,\"_173\":780,\"_171\":654,\"_166\":1545,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":1546,\"_661\":752,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1544,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1520,\"_619\":620,\"_621\":1521,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1522,\"_627\":1523,\"_629\":1524,\"_631\":1525,\"_633\":217,\"_634\":201,\"_635\":1526,\"_637\":1527,\"_639\":25,\"_640\":1528,\"_642\":1529,\"_644\":1523,\"_645\":217,\"_646\":1522,\"_647\":201,\"_648\":1526,\"_649\":1527,\"_12\":1523,\"_651\":1530,\"_160\":1531,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1531,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1505,\"_619\":620,\"_621\":1506,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1507,\"_627\":1508,\"_629\":861,\"_631\":1509,\"_633\":217,\"_634\":207,\"_635\":1510,\"_637\":1511,\"_639\":25,\"_640\":1512,\"_642\":1513,\"_644\":1508,\"_645\":217,\"_646\":1507,\"_647\":207,\"_648\":1510,\"_649\":1511,\"_12\":1514,\"_651\":1515,\"_160\":1516,\"_173\":1105,\"_171\":654,\"_166\":1517,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":1518,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1516,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1494,\"_619\":620,\"_621\":1495,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1496,\"_627\":1497,\"_629\":1498,\"_631\":773,\"_633\":217,\"_634\":210,\"_635\":1499,\"_637\":1500,\"_639\":25,\"_640\":1501,\"_642\":1502,\"_644\":1497,\"_645\":217,\"_646\":1496,\"_647\":210,\"_648\":1499,\"_649\":1500,\"_12\":1497,\"_651\":1158,\"_160\":1503,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1503,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1482,\"_619\":620,\"_621\":1483,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1484,\"_627\":1485,\"_629\":1486,\"_631\":799,\"_633\":217,\"_634\":215,\"_635\":1487,\"_637\":1488,\"_639\":25,\"_640\":1489,\"_642\":1490,\"_644\":1485,\"_645\":217,\"_646\":1484,\"_647\":215,\"_648\":1487,\"_649\":1488,\"_12\":1485,\"_651\":1491,\"_160\":841,\"_173\":1105,\"_171\":654,\"_166\":1492,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":416,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1470,\"_619\":620,\"_621\":1471,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1472,\"_627\":1473,\"_629\":758,\"_631\":1474,\"_633\":217,\"_634\":217,\"_635\":1475,\"_637\":1476,\"_639\":25,\"_640\":1477,\"_642\":1478,\"_644\":1473,\"_645\":217,\"_646\":1472,\"_647\":217,\"_648\":1475,\"_649\":1476,\"_12\":1473,\"_651\":1479,\"_160\":1480,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1480,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1457,\"_619\":620,\"_621\":1458,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1459,\"_627\":1460,\"_629\":1461,\"_631\":1462,\"_633\":217,\"_634\":217,\"_635\":1463,\"_637\":1464,\"_639\":25,\"_640\":1465,\"_642\":1466,\"_644\":1460,\"_645\":217,\"_646\":1459,\"_647\":217,\"_648\":1463,\"_649\":1464,\"_12\":1460,\"_651\":1078,\"_160\":1467,\"_173\":750,\"_171\":654,\"_166\":1468,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":752,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1467,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1444,\"_619\":620,\"_621\":1445,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1446,\"_627\":1447,\"_629\":1448,\"_631\":1449,\"_633\":217,\"_634\":223,\"_635\":1450,\"_637\":1451,\"_639\":25,\"_640\":1452,\"_642\":1453,\"_644\":1447,\"_645\":217,\"_646\":1446,\"_647\":223,\"_648\":1450,\"_649\":1451,\"_12\":1454,\"_651\":1158,\"_160\":1455,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1455,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1432,\"_619\":620,\"_621\":1433,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1434,\"_627\":1435,\"_629\":1436,\"_631\":773,\"_633\":217,\"_634\":217,\"_635\":1437,\"_637\":1438,\"_639\":25,\"_640\":1439,\"_642\":1440,\"_644\":1435,\"_645\":217,\"_646\":1434,\"_647\":217,\"_648\":1437,\"_649\":1438,\"_12\":1435,\"_651\":1441,\"_160\":1442,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1442,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1421,\"_619\":620,\"_621\":1422,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1423,\"_627\":1424,\"_629\":1112,\"_631\":1425,\"_633\":217,\"_634\":215,\"_635\":1426,\"_637\":1427,\"_639\":25,\"_640\":1428,\"_642\":1429,\"_644\":1424,\"_645\":217,\"_646\":1423,\"_647\":215,\"_648\":1426,\"_649\":1427,\"_12\":1424,\"_651\":1307,\"_160\":765,\"_173\":654,\"_171\":654,\"_166\":1430,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":765,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1408,\"_619\":620,\"_621\":1409,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1410,\"_627\":1411,\"_629\":1412,\"_631\":1413,\"_633\":217,\"_634\":684,\"_635\":1414,\"_637\":1415,\"_639\":25,\"_640\":1416,\"_642\":1417,\"_644\":1411,\"_645\":217,\"_646\":1410,\"_647\":684,\"_648\":1414,\"_649\":1415,\"_12\":1411,\"_651\":1418,\"_160\":1419,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1419,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1395,\"_619\":620,\"_621\":1396,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1397,\"_627\":1398,\"_629\":1399,\"_631\":1400,\"_633\":217,\"_634\":210,\"_635\":1401,\"_637\":1402,\"_639\":25,\"_640\":1403,\"_642\":1404,\"_644\":1398,\"_645\":217,\"_646\":1397,\"_647\":210,\"_648\":1401,\"_649\":1402,\"_12\":1405,\"_651\":1078,\"_160\":1406,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1406,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1382,\"_619\":620,\"_621\":1383,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1384,\"_627\":1385,\"_629\":1137,\"_631\":1386,\"_633\":217,\"_634\":199,\"_635\":1387,\"_637\":1388,\"_639\":25,\"_640\":1389,\"_642\":1390,\"_644\":1385,\"_645\":217,\"_646\":1384,\"_647\":199,\"_648\":1387,\"_649\":1388,\"_12\":1391,\"_651\":1392,\"_160\":1393,\"_173\":946,\"_171\":654,\"_166\":1220,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":885,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1393,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1370,\"_619\":620,\"_621\":1371,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1372,\"_627\":1373,\"_629\":1374,\"_631\":1375,\"_633\":217,\"_634\":210,\"_635\":1376,\"_637\":1377,\"_639\":25,\"_640\":1378,\"_642\":1379,\"_644\":1373,\"_645\":217,\"_646\":1372,\"_647\":210,\"_648\":1376,\"_649\":1377,\"_12\":1373,\"_651\":1078,\"_160\":1380,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1380,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1357,\"_619\":620,\"_621\":1358,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1359,\"_627\":1360,\"_629\":1361,\"_631\":1362,\"_633\":217,\"_634\":217,\"_635\":1363,\"_637\":1364,\"_639\":25,\"_640\":1365,\"_642\":1366,\"_644\":1360,\"_645\":217,\"_646\":1359,\"_647\":217,\"_648\":1363,\"_649\":1364,\"_12\":1367,\"_651\":1078,\"_160\":1368,\"_173\":654,\"_171\":654,\"_166\":735,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1368,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1343,\"_619\":620,\"_621\":1344,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1345,\"_627\":1346,\"_629\":1347,\"_631\":1348,\"_633\":217,\"_634\":684,\"_635\":1349,\"_637\":1350,\"_639\":25,\"_640\":1351,\"_642\":1352,\"_644\":1346,\"_645\":217,\"_646\":1345,\"_647\":684,\"_648\":1349,\"_649\":1350,\"_12\":1346,\"_651\":1353,\"_160\":1354,\"_173\":1184,\"_171\":654,\"_166\":1355,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1354,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1333,\"_619\":620,\"_621\":1334,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1335,\"_627\":1336,\"_629\":743,\"_631\":1337,\"_633\":217,\"_634\":223,\"_635\":1338,\"_637\":1339,\"_639\":25,\"_640\":1340,\"_642\":1341,\"_644\":1336,\"_645\":217,\"_646\":1335,\"_647\":223,\"_648\":1338,\"_649\":1339,\"_12\":1336,\"_651\":1207,\"_160\":1170,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1170,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1323,\"_619\":620,\"_621\":1324,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1325,\"_627\":1326,\"_629\":743,\"_631\":1327,\"_633\":217,\"_634\":217,\"_635\":1165,\"_637\":1328,\"_639\":25,\"_640\":1329,\"_642\":1330,\"_644\":1326,\"_645\":217,\"_646\":1325,\"_647\":217,\"_648\":1165,\"_649\":1328,\"_12\":1331,\"_651\":1158,\"_160\":1170,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1170,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1310,\"_619\":620,\"_621\":1311,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1312,\"_627\":1313,\"_629\":1314,\"_631\":1315,\"_633\":217,\"_634\":684,\"_635\":1316,\"_637\":1317,\"_639\":25,\"_640\":1318,\"_642\":1319,\"_644\":1313,\"_645\":217,\"_646\":1312,\"_647\":684,\"_648\":1316,\"_649\":1317,\"_12\":1320,\"_651\":1103,\"_160\":1321,\"_173\":780,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1321,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1298,\"_619\":620,\"_621\":1299,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1300,\"_627\":1301,\"_629\":953,\"_631\":1302,\"_633\":217,\"_634\":223,\"_635\":1303,\"_637\":1304,\"_639\":25,\"_640\":1305,\"_642\":1306,\"_644\":1301,\"_645\":217,\"_646\":1300,\"_647\":223,\"_648\":1303,\"_649\":1304,\"_12\":1301,\"_651\":1307,\"_160\":1308,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1308,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1286,\"_619\":620,\"_621\":1287,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1288,\"_627\":1289,\"_629\":1085,\"_631\":1290,\"_633\":217,\"_634\":217,\"_635\":1291,\"_637\":1292,\"_639\":25,\"_640\":1293,\"_642\":1294,\"_644\":1289,\"_645\":217,\"_646\":1288,\"_647\":217,\"_648\":1291,\"_649\":1292,\"_12\":1295,\"_651\":1158,\"_160\":1296,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1296,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1270,\"_619\":620,\"_621\":1271,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1272,\"_627\":1273,\"_629\":1274,\"_631\":1275,\"_633\":1276,\"_634\":684,\"_635\":1277,\"_637\":1278,\"_639\":25,\"_640\":1279,\"_642\":1280,\"_644\":1273,\"_645\":1276,\"_646\":1272,\"_647\":684,\"_648\":1277,\"_649\":1278,\"_12\":1281,\"_651\":1282,\"_160\":1283,\"_173\":750,\"_171\":654,\"_166\":1284,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1283,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1258,\"_619\":620,\"_621\":1259,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1260,\"_627\":1261,\"_629\":876,\"_631\":773,\"_633\":217,\"_634\":207,\"_635\":1262,\"_637\":1263,\"_639\":25,\"_640\":1264,\"_642\":1265,\"_644\":1261,\"_645\":217,\"_646\":1260,\"_647\":207,\"_648\":1262,\"_649\":1263,\"_12\":1266,\"_651\":1267,\"_160\":1268,\"_173\":780,\"_171\":654,\"_166\":884,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":885,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1268,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1245,\"_619\":620,\"_621\":1246,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1247,\"_627\":1248,\"_629\":1249,\"_631\":1250,\"_633\":217,\"_634\":684,\"_635\":1251,\"_637\":1252,\"_639\":25,\"_640\":1253,\"_642\":1254,\"_644\":1248,\"_645\":217,\"_646\":1247,\"_647\":684,\"_648\":1251,\"_649\":1252,\"_12\":1248,\"_651\":1158,\"_160\":720,\"_173\":1105,\"_171\":654,\"_166\":1255,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":1256,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1232,\"_619\":620,\"_621\":1233,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1234,\"_627\":1235,\"_629\":1236,\"_631\":1237,\"_633\":217,\"_634\":205,\"_635\":1238,\"_637\":1239,\"_639\":25,\"_640\":1240,\"_642\":1241,\"_644\":1235,\"_645\":217,\"_646\":1234,\"_647\":205,\"_648\":1238,\"_649\":1239,\"_12\":1235,\"_651\":1242,\"_160\":1243,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":660,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1243,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1222,\"_619\":620,\"_621\":1223,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1224,\"_627\":1225,\"_629\":891,\"_631\":1226,\"_633\":217,\"_634\":217,\"_635\":1227,\"_637\":1228,\"_639\":25,\"_640\":1229,\"_642\":1230,\"_644\":1225,\"_645\":217,\"_646\":1224,\"_647\":217,\"_648\":1227,\"_649\":1228,\"_12\":1225,\"_651\":1118,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1210,\"_619\":620,\"_621\":1211,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1212,\"_627\":1213,\"_629\":630,\"_631\":1214,\"_633\":217,\"_634\":199,\"_635\":1215,\"_637\":1216,\"_639\":25,\"_640\":1217,\"_642\":1218,\"_644\":1213,\"_645\":217,\"_646\":1212,\"_647\":199,\"_648\":1215,\"_649\":1216,\"_12\":1219,\"_651\":1078,\"_160\":841,\"_173\":1105,\"_171\":654,\"_166\":1220,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":660,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1198,\"_619\":620,\"_621\":1199,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1200,\"_627\":1201,\"_629\":1085,\"_631\":1202,\"_633\":217,\"_634\":210,\"_635\":1203,\"_637\":1204,\"_639\":25,\"_640\":1205,\"_642\":1206,\"_644\":1201,\"_645\":217,\"_646\":1200,\"_647\":210,\"_648\":1203,\"_649\":1204,\"_12\":1201,\"_651\":1207,\"_160\":805,\"_173\":780,\"_171\":654,\"_166\":1208,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1187,\"_619\":620,\"_621\":1188,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1189,\"_627\":1190,\"_629\":1085,\"_631\":1191,\"_633\":217,\"_634\":210,\"_635\":1192,\"_637\":1193,\"_639\":25,\"_640\":1194,\"_642\":1195,\"_644\":1190,\"_645\":217,\"_646\":1189,\"_647\":210,\"_648\":1192,\"_649\":1193,\"_12\":1196,\"_651\":1078,\"_160\":971,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":971,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1172,\"_619\":620,\"_621\":1173,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1174,\"_627\":1175,\"_629\":1176,\"_631\":1177,\"_633\":217,\"_634\":215,\"_635\":1178,\"_637\":1179,\"_639\":25,\"_640\":1180,\"_642\":1181,\"_644\":1175,\"_645\":217,\"_646\":1174,\"_647\":215,\"_648\":1178,\"_649\":1179,\"_12\":1175,\"_651\":1182,\"_160\":1183,\"_173\":1184,\"_171\":654,\"_166\":1185,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":202,\"_661\":736,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1183,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1160,\"_619\":620,\"_621\":1161,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1162,\"_627\":1163,\"_629\":743,\"_631\":1164,\"_633\":217,\"_634\":217,\"_635\":1165,\"_637\":1166,\"_639\":25,\"_640\":1167,\"_642\":1168,\"_644\":1163,\"_645\":217,\"_646\":1162,\"_647\":217,\"_648\":1165,\"_649\":1166,\"_12\":1169,\"_651\":1078,\"_160\":1170,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1170,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1148,\"_619\":620,\"_621\":1149,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1150,\"_627\":1151,\"_629\":891,\"_631\":1152,\"_633\":217,\"_634\":217,\"_635\":1153,\"_637\":1154,\"_639\":25,\"_640\":1155,\"_642\":1156,\"_644\":1151,\"_645\":217,\"_646\":1150,\"_647\":217,\"_648\":1153,\"_649\":1154,\"_12\":1157,\"_651\":1158,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1133,\"_619\":620,\"_621\":1134,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1135,\"_627\":1136,\"_629\":1137,\"_631\":1138,\"_633\":217,\"_634\":199,\"_635\":1139,\"_637\":1140,\"_639\":25,\"_640\":1141,\"_642\":1142,\"_644\":1136,\"_645\":217,\"_646\":1135,\"_647\":199,\"_648\":1139,\"_649\":1140,\"_12\":1143,\"_651\":1144,\"_160\":1145,\"_173\":750,\"_171\":654,\"_166\":1146,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":885,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1145,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1121,\"_619\":620,\"_621\":1122,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1123,\"_627\":1124,\"_629\":1125,\"_631\":799,\"_633\":217,\"_634\":212,\"_635\":1126,\"_637\":1127,\"_639\":25,\"_640\":1128,\"_642\":1129,\"_644\":1124,\"_645\":217,\"_646\":1123,\"_647\":212,\"_648\":1126,\"_649\":1127,\"_12\":1130,\"_651\":1078,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1108,\"_619\":620,\"_621\":1109,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1110,\"_627\":1111,\"_629\":1112,\"_631\":1113,\"_633\":217,\"_634\":215,\"_635\":1114,\"_637\":1115,\"_639\":25,\"_640\":1116,\"_642\":1117,\"_644\":1111,\"_645\":217,\"_646\":1110,\"_647\":215,\"_648\":1114,\"_649\":1115,\"_12\":1111,\"_651\":1118,\"_160\":1119,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1119,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1093,\"_619\":620,\"_621\":1094,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1095,\"_627\":1096,\"_629\":1097,\"_631\":1098,\"_633\":217,\"_634\":215,\"_635\":1099,\"_637\":1100,\"_639\":25,\"_640\":1101,\"_642\":1102,\"_644\":1096,\"_645\":217,\"_646\":1095,\"_647\":215,\"_648\":1099,\"_649\":1100,\"_12\":1096,\"_651\":1103,\"_160\":1104,\"_173\":1105,\"_171\":654,\"_166\":751,\"_656\":36,\"_657\":200,\"_658\":36,\"_659\":1106,\"_661\":200,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1104,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1081,\"_619\":620,\"_621\":1082,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1083,\"_627\":1084,\"_629\":1085,\"_631\":1086,\"_633\":217,\"_634\":210,\"_635\":1087,\"_637\":1088,\"_639\":25,\"_640\":1089,\"_642\":1090,\"_644\":1084,\"_645\":217,\"_646\":1083,\"_647\":210,\"_648\":1087,\"_649\":1088,\"_12\":1084,\"_651\":1078,\"_160\":1091,\"_173\":692,\"_171\":654,\"_166\":779,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1091,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1069,\"_619\":620,\"_621\":1070,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1071,\"_627\":1072,\"_629\":965,\"_631\":1073,\"_633\":217,\"_634\":217,\"_635\":1074,\"_637\":1075,\"_639\":25,\"_640\":1076,\"_642\":1077,\"_644\":1072,\"_645\":217,\"_646\":1071,\"_647\":217,\"_648\":1074,\"_649\":1075,\"_12\":1072,\"_651\":1078,\"_160\":1079,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1079,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1057,\"_619\":620,\"_621\":1058,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1059,\"_627\":1060,\"_629\":823,\"_631\":1061,\"_633\":217,\"_634\":201,\"_635\":1062,\"_637\":1063,\"_639\":25,\"_640\":1064,\"_642\":1065,\"_644\":1060,\"_645\":217,\"_646\":1059,\"_647\":201,\"_648\":1062,\"_649\":1063,\"_12\":1060,\"_651\":1066,\"_160\":1067,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1067,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1042,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":1046,\"_627\":1047,\"_629\":1048,\"_631\":1049,\"_633\":217,\"_634\":210,\"_635\":1050,\"_637\":1051,\"_639\":25,\"_640\":1052,\"_642\":1053,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":1047,\"_651\":778,\"_160\":1054,\"_173\":780,\"_171\":654,\"_166\":1055,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1054,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1029,\"_619\":620,\"_621\":1030,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1031,\"_627\":1032,\"_629\":1033,\"_631\":1034,\"_633\":217,\"_634\":217,\"_635\":1035,\"_637\":1036,\"_639\":25,\"_640\":1037,\"_642\":1038,\"_644\":1032,\"_645\":217,\"_646\":1031,\"_647\":217,\"_648\":1035,\"_649\":1036,\"_12\":1032,\"_651\":690,\"_160\":1039,\"_173\":780,\"_171\":654,\"_166\":1040,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1039,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1016,\"_619\":620,\"_621\":1017,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1018,\"_627\":1019,\"_629\":1020,\"_631\":1021,\"_633\":217,\"_634\":684,\"_635\":1022,\"_637\":1023,\"_639\":25,\"_640\":1024,\"_642\":1025,\"_644\":1019,\"_645\":217,\"_646\":1018,\"_647\":684,\"_648\":1022,\"_649\":1023,\"_12\":1026,\"_651\":778,\"_160\":1027,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1027,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1007,\"_619\":620,\"_621\":1008,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1009,\"_627\":1010,\"_629\":965,\"_631\":799,\"_633\":217,\"_634\":684,\"_635\":1011,\"_637\":1012,\"_639\":25,\"_640\":1013,\"_642\":1014,\"_644\":1010,\"_645\":217,\"_646\":1009,\"_647\":684,\"_648\":1011,\"_649\":1012,\"_12\":1010,\"_651\":690,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":995,\"_619\":620,\"_621\":996,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":997,\"_627\":998,\"_629\":999,\"_631\":1000,\"_633\":217,\"_634\":217,\"_635\":1001,\"_637\":1002,\"_639\":25,\"_640\":1003,\"_642\":1004,\"_644\":998,\"_645\":217,\"_646\":997,\"_647\":217,\"_648\":1001,\"_649\":1002,\"_12\":998,\"_651\":690,\"_160\":1005,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1005,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":984,\"_619\":620,\"_621\":985,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":986,\"_627\":987,\"_629\":965,\"_631\":988,\"_633\":217,\"_634\":684,\"_635\":989,\"_637\":990,\"_639\":25,\"_640\":991,\"_642\":992,\"_644\":987,\"_645\":217,\"_646\":986,\"_647\":684,\"_648\":989,\"_649\":990,\"_12\":987,\"_651\":778,\"_160\":993,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":993,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":973,\"_619\":620,\"_621\":974,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":975,\"_627\":976,\"_629\":743,\"_631\":977,\"_633\":217,\"_634\":223,\"_635\":978,\"_637\":979,\"_639\":25,\"_640\":980,\"_642\":981,\"_644\":976,\"_645\":217,\"_646\":975,\"_647\":223,\"_648\":978,\"_649\":979,\"_12\":976,\"_651\":778,\"_160\":982,\"_173\":654,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":982,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":961,\"_619\":620,\"_621\":962,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":963,\"_627\":964,\"_629\":965,\"_631\":966,\"_633\":217,\"_634\":210,\"_635\":967,\"_637\":968,\"_639\":25,\"_640\":969,\"_642\":970,\"_644\":964,\"_645\":217,\"_646\":963,\"_647\":210,\"_648\":967,\"_649\":968,\"_12\":964,\"_651\":705,\"_160\":971,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":971,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":949,\"_619\":620,\"_621\":950,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":951,\"_627\":952,\"_629\":953,\"_631\":954,\"_633\":217,\"_634\":223,\"_635\":955,\"_637\":956,\"_639\":25,\"_640\":957,\"_642\":958,\"_644\":952,\"_645\":217,\"_646\":951,\"_647\":223,\"_648\":955,\"_649\":956,\"_12\":952,\"_651\":690,\"_160\":959,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":959,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":936,\"_619\":620,\"_621\":937,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":938,\"_627\":939,\"_629\":699,\"_631\":940,\"_633\":217,\"_634\":223,\"_635\":941,\"_637\":942,\"_639\":25,\"_640\":943,\"_642\":944,\"_644\":939,\"_645\":217,\"_646\":938,\"_647\":223,\"_648\":941,\"_649\":942,\"_12\":939,\"_651\":690,\"_160\":945,\"_173\":946,\"_171\":654,\"_166\":947,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":416,\"_661\":206,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":945,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":925,\"_619\":620,\"_621\":926,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":927,\"_627\":928,\"_629\":929,\"_631\":930,\"_633\":217,\"_634\":215,\"_635\":931,\"_637\":932,\"_639\":25,\"_640\":933,\"_642\":934,\"_644\":928,\"_645\":217,\"_646\":927,\"_647\":215,\"_648\":931,\"_649\":932,\"_12\":928,\"_651\":690,\"_160\":841,\"_173\":780,\"_171\":654,\"_166\":765,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":913,\"_619\":620,\"_621\":914,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":915,\"_627\":916,\"_629\":917,\"_631\":918,\"_633\":215,\"_634\":210,\"_635\":919,\"_637\":920,\"_639\":25,\"_640\":921,\"_642\":922,\"_644\":916,\"_645\":215,\"_646\":915,\"_647\":210,\"_648\":919,\"_649\":920,\"_12\":916,\"_651\":690,\"_160\":923,\"_173\":692,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":900,\"_619\":620,\"_621\":901,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":902,\"_627\":903,\"_629\":904,\"_631\":905,\"_633\":217,\"_634\":684,\"_635\":906,\"_637\":907,\"_639\":25,\"_640\":908,\"_642\":909,\"_644\":903,\"_645\":217,\"_646\":902,\"_647\":684,\"_648\":906,\"_649\":907,\"_12\":903,\"_651\":705,\"_160\":910,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":910,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":887,\"_619\":620,\"_621\":888,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":889,\"_627\":890,\"_629\":891,\"_631\":892,\"_633\":217,\"_634\":219,\"_635\":893,\"_637\":894,\"_639\":25,\"_640\":895,\"_642\":896,\"_644\":890,\"_645\":217,\"_646\":889,\"_647\":219,\"_648\":893,\"_649\":894,\"_12\":897,\"_651\":778,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":872,\"_619\":620,\"_621\":873,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":874,\"_627\":875,\"_629\":876,\"_631\":877,\"_633\":217,\"_634\":207,\"_635\":878,\"_637\":879,\"_639\":25,\"_640\":880,\"_642\":881,\"_644\":875,\"_645\":217,\"_646\":874,\"_647\":207,\"_648\":878,\"_649\":879,\"_12\":882,\"_651\":652,\"_160\":883,\"_173\":692,\"_171\":654,\"_166\":884,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":883,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":857,\"_619\":620,\"_621\":858,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":859,\"_627\":860,\"_629\":861,\"_631\":862,\"_633\":217,\"_634\":207,\"_635\":863,\"_637\":864,\"_639\":25,\"_640\":865,\"_642\":866,\"_644\":860,\"_645\":217,\"_646\":859,\"_647\":207,\"_648\":863,\"_649\":864,\"_12\":867,\"_651\":868,\"_160\":869,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":870,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":869,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":844,\"_619\":620,\"_621\":845,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":846,\"_627\":847,\"_629\":848,\"_631\":849,\"_633\":217,\"_634\":221,\"_635\":850,\"_637\":851,\"_639\":25,\"_640\":852,\"_642\":853,\"_644\":847,\"_645\":217,\"_646\":846,\"_647\":221,\"_648\":850,\"_649\":851,\"_12\":854,\"_651\":778,\"_160\":707,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":707,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":831,\"_619\":620,\"_621\":832,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":833,\"_627\":834,\"_629\":835,\"_631\":836,\"_633\":217,\"_634\":201,\"_635\":837,\"_637\":838,\"_639\":25,\"_640\":839,\"_642\":840,\"_644\":834,\"_645\":217,\"_646\":833,\"_647\":201,\"_648\":837,\"_649\":838,\"_12\":834,\"_651\":652,\"_160\":841,\"_173\":780,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":819,\"_619\":620,\"_621\":820,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":821,\"_627\":822,\"_629\":823,\"_631\":824,\"_633\":217,\"_634\":217,\"_635\":825,\"_637\":826,\"_639\":25,\"_640\":827,\"_642\":828,\"_644\":822,\"_645\":217,\"_646\":821,\"_647\":217,\"_648\":825,\"_649\":826,\"_12\":822,\"_651\":690,\"_160\":829,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":829,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":807,\"_619\":620,\"_621\":808,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":809,\"_627\":810,\"_629\":811,\"_631\":812,\"_633\":222,\"_634\":222,\"_635\":813,\"_637\":814,\"_639\":25,\"_640\":815,\"_642\":816,\"_644\":810,\"_645\":222,\"_646\":809,\"_647\":222,\"_648\":813,\"_649\":814,\"_12\":810,\"_651\":778,\"_160\":817,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":817,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":794,\"_619\":620,\"_621\":795,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":796,\"_627\":797,\"_629\":798,\"_631\":799,\"_633\":217,\"_634\":684,\"_635\":800,\"_637\":801,\"_639\":25,\"_640\":802,\"_642\":803,\"_644\":797,\"_645\":217,\"_646\":796,\"_647\":684,\"_648\":800,\"_649\":801,\"_12\":804,\"_651\":690,\"_160\":805,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":783,\"_619\":620,\"_621\":784,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":785,\"_627\":786,\"_629\":787,\"_631\":788,\"_633\":217,\"_634\":215,\"_635\":789,\"_637\":790,\"_639\":25,\"_640\":791,\"_642\":792,\"_644\":786,\"_645\":217,\"_646\":785,\"_647\":215,\"_648\":789,\"_649\":790,\"_12\":786,\"_651\":705,\"_160\":781,\"_173\":693,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":781,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":768,\"_619\":620,\"_621\":769,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":770,\"_627\":771,\"_629\":772,\"_631\":773,\"_633\":217,\"_634\":217,\"_635\":774,\"_637\":775,\"_639\":25,\"_640\":776,\"_642\":777,\"_644\":771,\"_645\":217,\"_646\":770,\"_647\":217,\"_648\":774,\"_649\":775,\"_12\":771,\"_651\":778,\"_160\":779,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":779,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":754,\"_619\":620,\"_621\":755,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":756,\"_627\":757,\"_629\":758,\"_631\":759,\"_633\":217,\"_634\":207,\"_635\":760,\"_637\":761,\"_639\":25,\"_640\":762,\"_642\":763,\"_644\":757,\"_645\":217,\"_646\":756,\"_647\":207,\"_648\":760,\"_649\":761,\"_12\":764,\"_651\":690,\"_160\":765,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":765,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":739,\"_619\":620,\"_621\":740,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":741,\"_627\":742,\"_629\":743,\"_631\":744,\"_633\":217,\"_634\":223,\"_635\":745,\"_637\":746,\"_639\":25,\"_640\":747,\"_642\":748,\"_644\":742,\"_645\":217,\"_646\":741,\"_647\":223,\"_648\":745,\"_649\":746,\"_12\":742,\"_651\":690,\"_160\":749,\"_173\":750,\"_171\":654,\"_166\":751,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":752,\"_661\":206,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":749,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":723,\"_619\":620,\"_621\":724,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":725,\"_627\":726,\"_629\":727,\"_631\":728,\"_633\":217,\"_634\":205,\"_635\":729,\"_637\":730,\"_639\":25,\"_640\":731,\"_642\":732,\"_644\":726,\"_645\":217,\"_646\":725,\"_647\":205,\"_648\":729,\"_649\":730,\"_12\":726,\"_651\":690,\"_160\":733,\"_173\":734,\"_171\":654,\"_166\":735,\"_656\":36,\"_657\":736,\"_658\":36,\"_659\":737,\"_661\":736,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":733,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":709,\"_619\":620,\"_621\":710,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":711,\"_627\":712,\"_629\":713,\"_631\":714,\"_633\":217,\"_634\":223,\"_635\":715,\"_637\":716,\"_639\":25,\"_640\":717,\"_642\":718,\"_644\":712,\"_645\":217,\"_646\":711,\"_647\":223,\"_648\":715,\"_649\":716,\"_12\":712,\"_651\":705,\"_160\":719,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":721,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":719,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":695,\"_619\":620,\"_621\":696,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":697,\"_627\":698,\"_629\":699,\"_631\":700,\"_633\":217,\"_634\":223,\"_635\":701,\"_637\":702,\"_639\":25,\"_640\":703,\"_642\":704,\"_644\":698,\"_645\":217,\"_646\":697,\"_647\":223,\"_648\":701,\"_649\":702,\"_12\":698,\"_651\":705,\"_160\":706,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":706,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":677,\"_619\":620,\"_621\":678,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":679,\"_627\":680,\"_629\":681,\"_631\":682,\"_633\":683,\"_634\":684,\"_635\":685,\"_637\":686,\"_639\":25,\"_640\":687,\"_642\":688,\"_644\":680,\"_645\":683,\"_646\":679,\"_647\":684,\"_648\":685,\"_649\":686,\"_12\":689,\"_651\":690,\"_160\":691,\"_173\":692,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":691,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":618,\"_619\":620,\"_621\":622,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":626,\"_627\":628,\"_629\":630,\"_631\":632,\"_633\":217,\"_634\":199,\"_635\":636,\"_637\":638,\"_639\":25,\"_640\":641,\"_642\":643,\"_644\":628,\"_645\":217,\"_646\":626,\"_647\":199,\"_648\":636,\"_649\":638,\"_12\":650,\"_651\":652,\"_160\":653,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":660,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":653,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},\"buildingId\",\"bd89aa91-62d0-48ac-981d-858e10515b1d\",\"listingType\",\"default\",\"listingId\",\"b9886ad1-4133-4fdf-8d89-74b32408f342\",\"featureSiteSubdomain\",\"featureSiteEnabled\",\"projectStage\",\"29-rue-des-flandres\",\"street\",\"29 Rue Des Flandres\",\"streetName\",\"Rue Des Flandres\",\"streetNumber\",\"29\",\"city\",\"neighborhood\",\"latitude\",45.470641,\"longitude\",-75.719761,\"isFullyBooked\",\"images\",[676],\"buildingImages\",[],\"mainBuildingStreet\",\"mainBuildingCity\",\"mainBuildingSlug\",\"mainBuildingNeighborhood\",\"mainBuildingLatitude\",\"mainBuildingLongitude\",\"29 rue des Flandres\",\"availability\",\"2027-01-01\",\"1137\",\"1\",\"650\",\"isMultipleUnits\",\"unitCount\",\"isScarce\",\"totalUnitCount\",32,\"listedUnitCount\",\"isPromoted\",\"isAvailableNow\",\"unitListingType\",\"Unit\",\"pricingStrategy\",\"per_month\",\"spaceType\",\"apartment\",\"isAllCommercial\",\"minPricePerMonth\",\"minPricePerSqft\",\"originalPricePerMonth\",\"originalPricePerSqft\",\"featureSiteUrl\",\"/storage/v1/object/public/halfred/buildings/bd89aa91-62d0-48ac-981d-858e10515b1d/29_Rue_des_Flandres-01.jpg\",\"1155e1d0-53be-4926-8e33-bb462d37e06e\",\"fa51b6da-5dcb-4785-8b57-5fa086c2894c\",\"13279-rue-lemonde\",\"13279 Rue Lemonde\",\"Rue Lemonde\",\"13279\",\"Mirabel\",\"\",45.697222,-73.918707,[694],[],\"13279 Lemonde\",\"2026-10-01\",\"1400\",\"3\",\"0\",\"/storage/v1/object/public/halfred/buildings/1155e1d0-53be-4926-8e33-bb462d37e06e/facade.jpg\",\"8d9966b8-787d-444d-bf2a-51c9b08e0da6\",\"0657dc4e-9edf-4f5a-91c1-9b176d9963ed\",\"102-rue-de-britannia\",\"102 Rue De Britannia\",\"Rue De Britannia\",\"102\",45.411952,-75.827341,[708],[],\"2026-12-01\",\"1671\",\"1200\",\"/storage/v1/object/public/halfred/buildings/8d9966b8-787d-444d-bf2a-51c9b08e0da6/Capture_d_cran_2025-11-13_071737.png\",\"879ed7ea-e716-4518-abfe-42ef3a99056e\",\"bfe309e3-463d-41a0-aed4-a5abdbb5db73\",\"140-rue-du-maquis\",\"140 Rue Du Maquis\",\"Rue Du Maquis\",\"140\",45.411415,-75.837641,[722],[],\"1895\",\"1250\",12,\"/storage/v1/object/public/halfred/buildings/879ed7ea-e716-4518-abfe-42ef3a99056e/chatgpt-image-5-juin-2026-155918.png\",\"89ebc6a5-94ac-43df-9412-0557ff224d37\",\"504b6411-88d2-4775-b179-7e60f2712974\",\"545-rue-de-pointe-gatineau\",\"545 rue de Pointe Gatineau\",\"rue de Pointe Gatineau\",\"545\",45.467052,-75.704903,[738],[],\"1044\",\"0 - 3\",\"600 - 650\",5,86,\"/storage/v1/object/public/halfred/buildings/89ebc6a5-94ac-43df-9412-0557ff224d37/545_Rue_de_Pointe-Gatineau_115-03.jpg\",\"60ca83de-3ad2-44d1-b3b3-7d2ba774bf7f\",\"d19293ec-79b8-4db7-a1aa-be874af2278d\",\"36-rue-de-la-fabrique\",\"36 Rue De La Fabrique\",\"Rue De La Fabrique\",\"36\",45.409972,-75.858618,[753],[],\"1335\",\"1 - 3\",\"650 - 1250\",4,\"/storage/v1/object/public/halfred/buildings/60ca83de-3ad2-44d1-b3b3-7d2ba774bf7f/chatgpt-image-11-mai-2026-153814.png\",\"8d0311ab-3d42-4109-9820-2d441a0eb4d9\",\"bbb5f9e5-4ae3-4646-b824-e57e5de197fe\",\"215-chemin-de-la-savane\",\"215 Chemin De La Savane\",\"Chemin De La Savane\",\"215\",45.475858,-75.68137,[767],[],\"215 chemin de la savane\",\"1150\",\"600\",\"/storage/v1/object/public/halfred/buildings/8d0311ab-3d42-4109-9820-2d441a0eb4d9/215_chemin_de_la_savanne.PNG\",\"1b289572-c06a-4dc5-a038-0efc1f2ed2f5\",\"f1eb3c89-5f07-4b45-9bee-d8c5e55bec35\",\"19-rue-de-matapedia\",\"19 Rue De Matapédia\",\"Rue De Matapédia\",\"19\",45.482559,-75.704669,[782],[],\"2026-11-01\",\"1300\",\"2\",\"900\",\"/storage/v1/object/public/halfred/buildings/1b289572-c06a-4dc5-a038-0efc1f2ed2f5/chatgpt-image-may-6-2026-at-091033-am.png\",\"2aea5f59-eaf7-43af-8c8c-fb4feb559131\",\"214c53ab-0ff7-4d89-8756-a06539061362\",\"149-rue-saint-redempteur\",\"149 Rue Saint-Rédempteur\",\"Rue Saint-Rédempteur\",\"149\",45.430207,-75.722025,[793],[],\"/storage/v1/object/public/halfred/buildings/2aea5f59-eaf7-43af-8c8c-fb4feb559131/1-3.jpg\",\"6900c1b8-c06a-4a76-80eb-92b210e159ae\",\"9a94ea23-541a-4390-8ff5-137db06bd843\",\"6-rue-du-cure-armand-larocque\",\"6 Rue Du Curé-Armand-Larocque\",\"Rue Du Curé-Armand-Larocque\",\"6\",45.436255,-75.734294,[806],[],\"6 Curé-Armand-Larocque\",\"1695\",\"/storage/v1/object/public/halfred/buildings/6900c1b8-c06a-4a76-80eb-92b210e159ae/chatgpt-image-12-mai-2026-150158.png\",\"906cb9e3-2580-45d4-bc80-f423a67d6ad5\",\"087f1152-65d0-4ac5-a8d6-055adf9e15ae\",\"359-avenue-de-buckingham\",\"359 Avenue De Buckingham\",\"Avenue De Buckingham\",\"359\",45.590805,-75.418386,[818],[],\"1045\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/906cb9e3-2580-45d4-bc80-f423a67d6ad5/facade.PNG?version=bda47c8d-fdea-4631-a4ac-ba1fda076cd8\",\"aa7ef5d1-665c-44aa-ad50-85521004ab2e\",\"0c4ed006-46f1-493c-8308-14441ea7fbd4\",\"94-rue-du-campagnard\",\"94 Rue Du Campagnard\",\"Rue Du Campagnard\",\"94\",45.502488,-75.590165,[830],[],\"1204\",\"/storage/v1/object/public/halfred/buildings/aa7ef5d1-665c-44aa-ad50-85521004ab2e/chatgpt-image-29-mai-2026-144508.png\",\"4170fde9-d035-4af3-b032-40bdb7dfba1a\",\"03a53592-e845-4995-a8b9-3e7887660878\",\"821-rue-larouche\",\"821 Rue Larouche\",\"Rue Larouche\",\"821\",45.484798,-75.610149,[843],[],\"1450\",\"850\",\"/storage/v1/object/public/halfred/buildings/4170fde9-d035-4af3-b032-40bdb7dfba1a/chatgpt-image-13-mai-2026-141043.png\",\"6981e517-69e1-48d3-a3d2-8214b9ac3227\",\"7eac0018-cee9-4d78-a101-5b41c56d11c8\",\"70-rue-latour\",\"70 Rue Latour\",\"Rue Latour\",\"70\",45.584942,-75.399393,[856],[],\"70 Latour\",\"1000\",\"/storage/v1/object/public/halfred/buildings/6981e517-69e1-48d3-a3d2-8214b9ac3227/capture.PNG\",\"4ccd3b3f-be74-4a56-93c4-043f6ec5f4fa\",\"8a3541d7-19b0-448d-aacb-1250ee99602d\",\"25-rue-lafreniere\",\"25 Rue Lafrenière\",\"Rue Lafrenière\",\"25\",45.467394,-75.706093,[871],[],\"25 rue Lafreniere\",\"2026-10-09\",\"843\",82,\"/storage/v1/object/public/halfred/buildings/4ccd3b3f-be74-4a56-93c4-043f6ec5f4fa/25_Rue_Lafreni_re_109-01.jpg\",\"d510914b-89ce-4573-8dac-8668e93ca814\",\"00dc441f-2944-4470-bb67-23ab8f9dafed\",\"38-rue-d-orleans\",\"38 Rue D'orléans\",\"Rue D'orléans\",\"38\",45.481334,-75.696312,[886],[],\"38 rue d'Orléans\",\"1209\",\"750\",24,\"/storage/v1/object/public/halfred/buildings/d510914b-89ce-4573-8dac-8668e93ca814/30_Rue_d_Orl_ans_4-02.jpg\",\"465d5d0e-318c-413a-a198-2750bfdeab80\",\"1ae51575-c1ca-4714-8f32-20a9de100e19\",\"1784-rue-schryer\",\"1784 Rue Schryer\",\"Rue Schryer\",\"1784\",45.503833,-75.561791,[899],[],\"1784 rue Schryer\",\"1595\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/465d5d0e-318c-413a-a198-2750bfdeab80/6cd2e9d7-1c68-4d17-a164-502dd5d04d0f?version=614cd63e-10a8-4de9-8d19-c1c6d7c2134e\",\"a3ed2e8c-3635-4b79-b86a-9cc6fff6bfa8\",\"e3276aba-1eba-437b-8697-9abad403bdc8\",\"220-rue-de-malartic\",\"220 Rue De Malartic\",\"Rue De Malartic\",\"220\",45.502467,-75.638421,[912],[],\"1470\",\"1100\",\"/storage/v1/object/public/halfred/buildings/a3ed2e8c-3635-4b79-b86a-9cc6fff6bfa8/chatgpt-image-22-mai-2026-141642.png\",\"bd04cd5e-8a41-4c08-967b-a4e27d3b9632\",\"b1da4563-7d90-45fc-bc89-382691575dca\",\"156-boulevard-du-plateau\",\"156 Boulevard Du Plateau\",\"Boulevard Du Plateau\",\"156\",45.436027,-75.778172,[924],[],\"1650\",\"/storage/v1/object/public/halfred/buildings/bd04cd5e-8a41-4c08-967b-a4e27d3b9632/chatgpt-image-5-mai-2026-131714.png\",\"5b58e3a4-6629-4700-bb91-2deae5053af0\",\"4b9b9618-14e2-48b8-b700-2fb1e148a2d5\",\"74-boulevard-saint-raymond\",\"74 Boulevard Saint-Raymond\",\"Boulevard Saint-Raymond\",\"74\",45.447287,-75.740336,[935],[],\"/storage/v1/object/public/halfred/buildings/5b58e3a4-6629-4700-bb91-2deae5053af0/5439a31a-ae56-4bdd-bccd-e0e5e6c197e6.png\",\"960af3bf-a117-4c02-8ed1-04565243d331\",\"cf95d313-b28a-494f-832f-7f2de9149a96\",\"127-rue-de-britannia\",\"127 Rue De Britannia\",\"127\",45.411816,-75.825735,[948],[],\"1750\",\"2 - 3\",\"1250 - 1260\",\"/storage/v1/object/public/halfred/buildings/960af3bf-a117-4c02-8ed1-04565243d331/chatgpt-image-10-juin-2026-113228.png\",\"34795aef-8938-4001-82bd-fa052e32aa00\",\"ae03bae3-a9a3-4831-a3a9-0c7a3e3792db\",\"191-chemin-mcconnell\",\"191 Chemin Mcconnell\",\"Chemin Mcconnell\",\"191\",45.410797,-75.832904,[960],[],\"1860\",\"/storage/v1/object/public/halfred/buildings/34795aef-8938-4001-82bd-fa052e32aa00/chatgpt-image-9-juin-2026-161743.png\",\"fa001da8-92aa-41d1-8724-aac2310af599\",\"1ca48494-e05b-46a0-badd-ecd9e1b05dee\",\"122-rue-katimavik\",\"122 Rue Katimavik\",\"Rue Katimavik\",\"122\",45.41934,-75.806326,[972],[],\"1275\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/fa001da8-92aa-41d1-8724-aac2310af599/0__fa001da8-92aa-41d1-8724-aac2310af599.webp?version=d5fa1051-0f47-481e-a875-956352e54de2\",\"d316e4d1-0564-4633-bac0-1fcbbb0fb249\",\"9571f3ac-fc51-478d-b407-1eb27e6bb2df\",\"22-rue-de-la-fabrique\",\"22 Rue De La Fabrique\",\"22\",45.410167,-75.858117,[983],[],\"1296\",\"/storage/v1/object/public/halfred/buildings/d316e4d1-0564-4633-bac0-1fcbbb0fb249/chatgpt-image-5-juin-2026-153827.png\",\"e679b965-dff7-4831-ad1a-61dc86152395\",\"6f97252c-f9d1-4228-8da3-d3caeab8dad1\",\"124-rue-katimavik\",\"124 Rue Katimavik\",\"124\",45.419277,-75.806259,[994],[],\"1685\",\"/storage/v1/object/public/halfred/buildings/e679b965-dff7-4831-ad1a-61dc86152395/chatgpt-image-4-mars-2026-160532.png\",\"680c18df-4c10-4e52-9f29-dcdb3b8d8253\",\"b9545cbf-e281-41bf-9cb4-5b2a2643537f\",\"255-rue-de-la-fregate\",\"255 rue de la Frégate\",\"rue de la Frégate\",\"255\",45.499756,-75.592276,[1006],[],\"1598\",\"/storage/v1/object/public/halfred/buildings/680c18df-4c10-4e52-9f29-dcdb3b8d8253/0001-0001.jpg\",\"c7e4d4f1-02b1-4cf4-9dd1-f3bef076656e\",\"cbffaa33-8944-4d4b-9088-605b00938854\",\"6-rue-katimavik\",\"6 Rue Katimavik\",45.421617,-75.807357,[1015],[],\"/storage/v1/object/public/halfred/buildings/c7e4d4f1-02b1-4cf4-9dd1-f3bef076656e/0__5cf3755a-4140-459d-ba3a-e4c42f34c6fa.webp?version=29854b62-9d72-4c5f-a030-4c9b9e1ab07d\",\"3988647d-8a00-4ef5-b53f-1dbbace17352\",\"8cd24079-1811-42f4-8b0d-21c3059d239d\",\"295-avenue-de-l-hippodrome\",\"295 Avenue De L'hippodrome\",\"Avenue De L'hippodrome\",\"295\",45.399335,-75.79891,[1028],[],\"295 avenue de l'Hippodrome\",\"1370\",\"/storage/v1/object/public/halfred/buildings/3988647d-8a00-4ef5-b53f-1dbbace17352/chatgpt-image-10-juil-2026-134814.png\",\"ceac451a-df09-438c-abbc-6d2b03ed4ef0\",\"c4ecef4c-5a9f-4f64-a385-dc57bcd72048\",\"34-rue-de-rochefort\",\"34 Rue De Rochefort\",\"Rue De Rochefort\",\"34\",45.486355,-75.716442,[1041],[],\"1995\",\"1070\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/ceac451a-df09-438c-abbc-6d2b03ed4ef0/0__ceac451a-df09-438c-abbc-6d2b03ed4ef0.webp?version=301c05dc-6345-41db-b039-2fcf85695aeb\",\"66c431b7-3e52-45af-82cf-672d8c108b7f\",\"project\",\"63a3366d-bd30-45af-af68-d25143fbf8e9\",\"available_to_rent\",\"10-rue-marjorie-d-shackleton\",\"10 Rue Marjorie-D.-Shackleton\",\"Rue Marjorie-D.-Shackleton\",\"10\",45.428546,-75.804521,[1056],[],\"1882\",\"895\",\"/storage/v1/object/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png\",\"d712ead7-c990-4511-ae8a-1faa9aad2aac\",\"69cb288f-fd2b-4964-8b0a-eae17c1bc944\",\"90-rue-du-campagnard\",\"90 Rue Du Campagnard\",\"90\",45.502454,-75.5903,[1068],[],\"2026-08-01\",\"1295\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/d712ead7-c990-4511-ae8a-1faa9aad2aac/0__d712ead7-c990-4511-ae8a-1faa9aad2aac.webp?version=128d5684-5c3c-48b4-875f-2f3e125f82c2\",\"38b42c3c-f240-4f74-b45e-05c18c6441d5\",\"06033978-82cc-4338-8b67-c668a833c512\",\"104-rue-katimavik\",\"104 Rue Katimavik\",\"104\",45.420113,-75.806502,[1080],[],\"2026-09-01\",\"1305\",\"/storage/v1/object/public/halfred/buildings/38b42c3c-f240-4f74-b45e-05c18c6441d5/chatgpt-image-12-mai-2026-115205.png\",\"512114bb-16ff-49fa-a5f4-be7ba43ba54b\",\"cbc32f2a-0376-4757-85d9-e554d6a108ec\",\"274-boulevard-d-amsterdam\",\"274 Boulevard D'amsterdam\",\"Boulevard D'amsterdam\",\"274\",45.42799,-75.815046,[1092],[],\"1790\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/512114bb-16ff-49fa-a5f4-be7ba43ba54b/0__512114bb-16ff-49fa-a5f4-be7ba43ba54b.webp?version=36a882d2-bff6-4828-8c7b-c5d17b82d447\",\"cb846da3-20fd-446f-9b54-17c395294dd4\",\"0fc4f4e7-86a4-4f76-b5ba-4029e8212832\",\"240-boulevard-alexandre-tache\",\"240 Boulevard Alexandre-Taché\",\"Boulevard Alexandre-Taché\",\"240\",45.423309,-75.736267,[1107],[],\"2026-06-01\",\"1025\",\"1 - 2\",56,\"/storage/v1/object/public/halfred/buildings/cb846da3-20fd-446f-9b54-17c395294dd4/chatgpt-image-11-mai-2026-121541.png\",\"61ef446c-8731-4b03-8e7d-183ea55c4f22\",\"83c20f04-1ff7-4064-a085-73e3bb73ee6c\",\"224-boulevard-maisonneuve\",\"224 Boulevard Maisonneuve\",\"Boulevard Maisonneuve\",\"224\",45.433864,-75.71221,[1120],[],\"2025-12-01\",\"1136\",\"/storage/v1/object/public/halfred/buildings/61ef446c-8731-4b03-8e7d-183ea55c4f22/facade.JPG\",\"578ff7aa-8048-43d4-8d36-23154bc95d01\",\"6f60782a-0249-4c4f-87be-7e37ed4ffa86\",\"6-rue-des-beaux-arts\",\"6 Rue Des Beaux-Arts\",\"Rue Des Beaux-Arts\",45.436969,-75.807839,[1132],[],\"6 rue des Beaux-Arts\",\"1260\",\"/storage/v1/object/public/halfred/buildings/578ff7aa-8048-43d4-8d36-23154bc95d01/5cd59b082d009-5f1291fb.jpg\",\"6cd9ce1a-82c4-4216-9c81-8f29b7d19cc0\",\"5f8cde7a-2b24-4546-9ed2-003dd658a800\",\"1865-rue-saint-louis\",\"1865 Rue Saint-Louis\",\"Rue Saint-Louis\",\"1865\",45.472481,-75.726376,[1147],[],\"1865 rue Saint Louis\",\"2026-07-10\",\"1183\",\"650 - 850\",\"/storage/v1/object/public/halfred/buildings/6cd9ce1a-82c4-4216-9c81-8f29b7d19cc0/1855_Rue_Saint-Louis_6-01.jpg\",\"188549ec-48d8-4a35-b407-95e5c18d055e\",\"f87fede2-89ea-41fa-af02-91ce23da626c\",\"1812-rue-schryer\",\"1812 Rue Schryer\",\"1812\",45.503386,-75.561313,[1159],[],\"1812 rue Schryer\",\"2026-07-01\",\"/storage/v1/object/public/halfred/buildings/188549ec-48d8-4a35-b407-95e5c18d055e/schryer-facade.PNG\",\"8d6e3918-0039-48c3-a299-53208d039373\",\"9dccc3e6-6d05-4dfe-8150-0469aae2b5fd\",\"48-rue-de-la-fabrique\",\"48 Rue De La Fabrique\",\"48\",45.410352,-75.858971,[1171],[],\"48 rue de la Fabrique \",\"1765\",\"/storage/v1/object/public/halfred/buildings/8d6e3918-0039-48c3-a299-53208d039373/chatgpt-image-26-mai-2026-141410.png\",\"6032cc84-5345-49d0-bdd8-22d97cf94346\",\"d3295563-d279-41fd-bc72-52dd3ab5300e\",\"159-rue-eddy\",\"159 Rue Eddy\",\"Rue Eddy\",\"159\",45.430367,-75.720489,[1186],[],\"2026-03-17\",\"975\",\"0 - 1\",\"300 - 585\",\"/storage/v1/object/public/halfred/buildings/6032cc84-5345-49d0-bdd8-22d97cf94346/chatgpt-image-5-mai-2026-132844.png\",\"ca884e1e-5cd9-4871-9497-28ba5f212791\",\"6e4143f6-a289-40ec-84c6-2591204ede39\",\"26-boulevard-d-amsterdam\",\"26 Boulevard D'amsterdam\",\"26\",45.431984,-75.807089,[1197],[],\"26 Bd d'Amsterdam\",\"/storage/v1/object/public/halfred/buildings/ca884e1e-5cd9-4871-9497-28ba5f212791/955katimavik-19.jpg\",\"f7f4879a-0505-48c9-8066-4880b68c51e9\",\"771109a2-a08d-4dae-a4c4-34146bf41554\",\"276-boulevard-d-amsterdam\",\"276 Boulevard D'amsterdam\",\"276\",45.427997,-75.815115,[1209],[],\"2026-01-01\",\"1000 - 1100\",\"/storage/v1/object/public/halfred/buildings/f7f4879a-0505-48c9-8066-4880b68c51e9/chatgpt-image-11-mai-2026-125342.png\",\"5e2e4d03-5517-4eae-9f1b-c2c0c0568239\",\"4ad37eb9-fae7-4078-b7a4-5942d9a64d3c\",\"27-rue-des-flandres\",\"27 Rue Des Flandres\",\"27\",45.470441,-75.719486,[1221],[],\"27 rue des Flandres\",\"650 - 750\",\"/storage/v1/object/public/halfred/buildings/5e2e4d03-5517-4eae-9f1b-c2c0c0568239/27_Rue_des_Flandres-1.jpg\",\"66dff9c4-f8b7-4d1d-8e04-702997184f75\",\"de758571-ac88-44bb-a738-0db660d5b80b\",\"1780-rue-schryer\",\"1780 Rue Schryer\",\"1780\",45.503977,-75.561625,[1231],[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/66dff9c4-f8b7-4d1d-8e04-702997184f75/0-1780 Rue Schryer.PNG?version=55024d91-165d-4018-bf8b-af84f7052628\",\"389afe55-631b-45fe-a1d7-8e3c19c47111\",\"dd2e94f8-da00-47e9-87f0-184f0370101b\",\"31-rue-des-flandres\",\"31 rue des Flandres\",\"rue des Flandres\",\"31\",45.471128,-75.720385,[1244],[],\"2026-08-25\",\"1282\",\"/storage/v1/object/public/halfred/buildings/389afe55-631b-45fe-a1d7-8e3c19c47111/29-rue-des-flandres-01.jpg\",\"3b6fd29b-8bfe-4037-9a10-1b8505c232b1\",\"9a83c8db-a958-4a49-bba7-dc0d0f28ef2f\",\"155-rue-wigwas\",\"155 Rue Wìgwàs\",\"Rue Wìgwàs\",\"155\",45.434263,-75.741808,[1257],[],\"650 - 967\",17,\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/3b6fd29b-8bfe-4037-9a10-1b8505c232b1/0__3b6fd29b-8bfe-4037-9a10-1b8505c232b1.webp?version=0f735540-34ae-4c75-9f41-c177d9c31020\",\"86c59a9d-e13f-4f08-83b7-d1673afdc0a6\",\"0f2823bc-10f5-4579-9a6b-787789372517\",\"19-rue-d-orleans\",\"19 Rue D'orléans\",45.480667,-75.699167,[1269],[],\"19 rue d'Orléans\",\"2026-07-05\",\"1143\",\"/storage/v1/object/public/halfred/buildings/86c59a9d-e13f-4f08-83b7-d1673afdc0a6/30_Rue_d_Orl_ans_4-02.jpg\",\"c2247f9d-7c0a-4cda-a409-b00e50785bff\",\"50a490f7-3a48-407f-9757-fec87008df65\",\"370-boulevard-albiny-paquette\",\"370 Boulevard Albiny-Paquette\",\"Boulevard Albiny-Paquette\",\"370\",\"Mont-Laurier\",46.548757,-75.500348,[1285],[],\"370 Albiny-Paquette\",\"2026-08-13\",\"620\",\"500 - 900\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/c2247f9d-7c0a-4cda-a409-b00e50785bff/6edba770-7fa1-48fb-9f49-4003fe4c855a?version=04ac692c-58ea-4269-bd8c-c1fac5cbc5c0\",\"67179769-cd26-4be5-ac8d-72586177a60b\",\"addd8efc-d81e-4dbc-a9bb-0eac0b2e3c83\",\"278-boulevard-d-amsterdam\",\"278 Boulevard D'amsterdam\",\"278\",45.427974,-75.815214,[1297],[],\"278 Boulevard d'Amsterdam\",\"1785\",\"/storage/v1/object/public/halfred/buildings/67179769-cd26-4be5-ac8d-72586177a60b/chatgpt-image-11-mai-2026-125342.png\",\"02625045-061c-4e39-b079-5ab018c885fc\",\"8ca7206f-9421-442a-a48d-f0f3d6a9bfea\",\"185-chemin-mcconnell\",\"185 Chemin Mcconnell\",\"185\",45.410789,-75.833332,[1309],[],\"2026-05-01\",\"1958\",\"/storage/v1/object/public/halfred/buildings/02625045-061c-4e39-b079-5ab018c885fc/chatgpt-image-5-mai-2026-160111.png\",\"2e7b45a0-d95d-4938-813b-e5649dda3dac\",\"80999700-5eae-464d-831a-76e2dca51f27\",\"41-rue-du-stratus\",\"41 Rue Du Stratus\",\"Rue Du Stratus\",\"41\",45.436131,-75.784434,[1322],[],\"41 rue du Stratus \",\"1550\",\"/storage/v1/object/public/halfred/buildings/2e7b45a0-d95d-4938-813b-e5649dda3dac/chatgpt-image-12-mai-2026-130146.png\",\"91a7d0d5-abdf-4321-8a4a-7ee874b031a4\",\"5e0bf78e-ad05-4c2a-8366-abf174d897b6\",\"50-rue-de-la-fabrique\",\"50 Rue De La Fabrique\",\"50\",-75.859073,[1332],[],\"Muscat 8\",\"/storage/v1/object/public/halfred/buildings/91a7d0d5-abdf-4321-8a4a-7ee874b031a4/chatgpt-image-22-mai-2026-140203.png\",\"031ad7bb-2e17-49f9-b144-a4e731a30632\",\"e6712460-c511-4ff8-8c11-e98920f10ced\",\"40-rue-de-la-fabrique\",\"40 Rue De La Fabrique\",\"40\",45.410349,-75.85846,[1342],[],\"/storage/v1/object/public/halfred/buildings/031ad7bb-2e17-49f9-b144-a4e731a30632/chatgpt-image-26-mai-2026-141410.png\",\"bfe3e1ad-69bd-4aab-9774-377431111ad5\",\"5259aa74-f868-455e-a024-2e4db279a5aa\",\"11-rue-duquesne\",\"11 Rue Duquesne\",\"Rue Duquesne\",\"11\",45.425776,-75.734444,[1356],[],\"2026-07-24\",\"1050\",\"400 - 500\",\"/storage/v1/object/public/halfred/buildings/bfe3e1ad-69bd-4aab-9774-377431111ad5/01-facade-png.jpg\",\"0d8681e9-d0d1-4e86-8c58-c1b86a22cc11\",\"c2499732-cfd6-47ed-9f03-8a858ed9a0b7\",\"195-mcconnell-road\",\"195 McConnell Road\",\"McConnell Road\",\"195\",45.410819,-75.832434,[1369],[],\"195 Chemin McConnell\",\"1380\",\"/storage/v1/object/public/halfred/buildings/0d8681e9-d0d1-4e86-8c58-c1b86a22cc11/chatgpt-image-22-mai-2026-121048.png\",\"ff657b33-e7e5-41e3-bb59-377a0e321bbf\",\"3d36bcb7-39ab-47e5-94df-df8882f3a6bd\",\"43-boulevard-de-l-amerique-francaise\",\"43 Boulevard De L'amérique-Française \",\"Boulevard De L'amérique-Française \",\"43\",45.436447,-75.817272,[1381],[],\"1600\",\"/storage/v1/object/public/halfred/buildings/ff657b33-e7e5-41e3-bb59-377a0e321bbf/2583850f-fca0-44ea-849d-422f9ac17761.png\",\"56e79a73-5a86-4dda-86b6-0ee66508e5c3\",\"45dbc34e-45a3-4137-bed5-f3d82cb40864\",\"1875-rue-saint-louis\",\"1875 Rue Saint-Louis\",\"1875\",45.472853,-75.726608,[1394],[],\"1875 rue Saint Louis\",\"2026-08-04\",\"1154\",\"/storage/v1/object/public/halfred/buildings/56e79a73-5a86-4dda-86b6-0ee66508e5c3/1875_Rue_Saint-Louis-1.jpg\",\"cc97da83-3eee-406a-8752-563e588a4631\",\"b531cef8-1233-46d1-9818-561045725feb\",\"9-rue-du-glenbow\",\"9 Rue Du Glenbow\",\"Rue Du Glenbow\",\"9\",45.439139,-75.809929,[1407],[],\"9 Du Glenbow\",\"1625\",\"/storage/v1/object/public/halfred/buildings/cc97da83-3eee-406a-8752-563e588a4631/chatgpt-image-5-juin-2026-162226.png\",\"1ad6c3b7-9a45-425c-b1f0-874bcdf77d42\",\"5dbb8fa3-1caf-4b14-b74c-63f876ad3f87\",\"299-chemin-freeman\",\"299 Chemin Freeman\",\"Chemin Freeman\",\"299\",45.471656,-75.75247,[1420],[],\"2026-08-15\",\"1500\",\"/storage/v1/object/public/halfred/buildings/1ad6c3b7-9a45-425c-b1f0-874bcdf77d42/chatgpt-image-11-mai-2026-132653.png\",\"6d3e5fd8-7816-4eda-b5c5-012731841a2a\",\"a58f62be-8bbe-468b-a08b-2751b9b41abe\",\"228-boulevard-maisonneuve\",\"228 Boulevard Maisonneuve\",\"228\",45.434035,-75.712166,[1431],[],\"700\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/6d3e5fd8-7816-4eda-b5c5-012731841a2a/facade.JPG?version=c0cda6e9-dd03-403c-b0a7-c8af71d04e7d\",\"3afdee0b-a084-458f-98e5-be5019f5e3c7\",\"a0fc9393-8362-471b-9e4e-8f7a322d5b50\",\"19-rue-forget\",\"19 Rue Forget\",\"Rue Forget\",45.4997,-75.609514,[1443],[],\"2025-10-15\",\"1350\",\"/storage/v1/object/public/halfred/buildings/3afdee0b-a084-458f-98e5-be5019f5e3c7/chatgpt-image-5-mai-2026-161251.png\",\"298dfb14-9b05-4453-b643-326fac520882\",\"c25b4725-7f74-4388-b1ae-98cee745fe1e\",\"141-impasse-john-roney\",\"141 Impasse John-Roney\",\"Impasse John-Roney\",\"141\",45.409024,-75.846761,[1456],[],\"Unnamed Building\",\"1225\",\"/storage/v1/object/public/halfred/buildings/298dfb14-9b05-4453-b643-326fac520882/57johnroney-(9).jpg\",\"167980e1-91f0-4c50-9d79-c079730671ca\",\"e479661d-fdf2-468c-8fea-2f548f4e5546\",\"1075-boulevard-maloney-est\",\"1075 Boulevard Maloney Est\",\"Boulevard Maloney Est\",\"1075\",45.492235,-75.589065,[1469],[],\"990\",\"600 - 1200\",\"/storage/v1/object/public/halfred/buildings/167980e1-91f0-4c50-9d79-c079730671ca/chatgpt-image-5-juin-2026-150918.png\",\"b77958d4-db7e-43bc-8505-3979e9731c7f\",\"349958ad-4084-48aa-b24a-8d69b5e91cde\",\"205-chemin-de-la-savane\",\"205 Chemin De La Savane\",\"205\",45.475366,-75.681509,[1481],[],\"2025-03-15\",\"1125\",\"/storage/v1/object/public/halfred/buildings/b77958d4-db7e-43bc-8505-3979e9731c7f/Exterieur-Savane.jpg\",\"1e421877-8719-4a76-a44e-6f8052ca483f\",\"d90513d9-596c-495f-a8f0-ca232dfd2c76\",\"6-rue-victoria\",\"6 Rue Victoria\",\"Rue Victoria\",45.42871,-75.715782,[1493],[],\"2026-09-06\",\"600 - 700\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/1e421877-8719-4a76-a44e-6f8052ca483f/0-6 Rue Victoria.png?version=8c866355-93d2-48d2-a1d5-b530baa6c8d4\",\"f9e11522-a7ac-490d-b299-3537453e72d4\",\"acfadb64-6553-42a4-8f94-0982c940592d\",\"19-rue-de-liverpool\",\"19 Rue De Liverpool\",\"Rue De Liverpool\",45.428997,-75.806907,[1504],[],\"1805\",\"/storage/v1/object/public/halfred/buildings/f9e11522-a7ac-490d-b299-3537453e72d4/chatgpt-image-3-juil-2026-133549.png\",\"728ae93d-c005-483b-bc5d-3f2f77681d7a\",\"1e0beff4-ac4f-4365-8806-7506e5704598\",\"35-rue-lafreniere\",\"35 Rue Lafrenière\",\"35\",45.467911,-75.705009,[1519],[],\"35 rue Lafreniere\",\"2026-08-20\",\"830\",\"600 - 850\",61,\"/storage/v1/object/public/halfred/buildings/728ae93d-c005-483b-bc5d-3f2f77681d7a/25_Rue_Lafreni_re_109-01.jpg\",\"3d8a632a-b1cb-4fd2-bace-6154bd2408b2\",\"d5a5287c-fcee-44ff-b050-03a704d6bce3\",\"211-rue-de-la-fregate\",\"211 Rue De La Frégate\",\"Rue De La Frégate\",\"211\",45.499665,-75.59097,[1532],[],\"2026-05-22\",\"1195\",\"/storage/v1/object/public/halfred/buildings/3d8a632a-b1cb-4fd2-bace-6154bd2408b2/0002-0002.jpg\",\"1bf2d9b0-3e62-406a-9cd2-11930e86ebf3\",\"a1435e2c-6c97-4a66-bc32-e0fddc93ff35\",\"260-boulevard-de-la-cite\",\"260 Boulevard De La Cité\",\"Boulevard De La Cité\",\"260\",45.476589,-75.677528,[1547],[],\"2023-09-01\",\"1690\",\"1000 - 1050\",18,\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/1bf2d9b0-3e62-406a-9cd2-11930e86ebf3/0__1.jpg?version=2bd09d8a-5647-4aba-b98b-ce23824b7a9c\",\"06239c3c-d070-439b-9003-368a2fc674d7\",\"124e9753-56bb-4404-a1c6-8e3ab8e51ae7\",\"183-chemin-mcconnell\",\"183 chemin McConnell \",\"chemin McConnell \",\"183\",45.41076,-75.833497,[1558],[],\"/storage/v1/object/public/halfred/buildings/06239c3c-d070-439b-9003-368a2fc674d7/chatgpt-image-5-mai-2026-160111.png\",\"be36cf3f-00b1-47f5-a05e-7e69aff700da\",\"e2100148-c65a-44a4-bf2a-848428577715\",\"25-rue-des-flandres\",\"25 Rue Des Flandres\",45.469936,-75.7188,[1567],[],\"/storage/v1/object/public/halfred/buildings/be36cf3f-00b1-47f5-a05e-7e69aff700da/25_Rue_des_Flandres_17-01.jpg\",\"140f3eca-df2c-4ab3-922a-ee5dcbad432f\",\"6a3570b1-d43e-460d-9244-3f58cf17eb16\",\"16-rue-de-la-fabrique\",\"16 Rue De La Fabrique\",\"16\",45.410383,-75.858153,[1578],[],\"1804\",\"/storage/v1/object/public/halfred/buildings/140f3eca-df2c-4ab3-922a-ee5dcbad432f/chatgpt-image-5-juin-2026-153827.png\",\"fd70b466-2c38-44f3-a594-106edaac7097\",\"977163c0-0d18-4a01-8d98-35666b1baa30\",\"38-rue-de-la-fabrique\",\"38 Rue De La Fabrique\",45.410348,-75.858358,[1588],[],\"2026-01-09\",\"/storage/v1/object/public/halfred/buildings/fd70b466-2c38-44f3-a594-106edaac7097/chatgpt-image-12-juin-2026-102041.png\",\"ff199afb-12ea-45df-aa08-017ace88926d\",\"c49c8a98-b87b-45aa-be79-e406210e1d62\",\"23-rue-de-liverpool\",\"23 Rue De Liverpool\",\"23\",45.429494,-75.806436,[1598],[],\"/storage/v1/object/public/halfred/buildings/ff199afb-12ea-45df-aa08-017ace88926d/chatgpt-image-11-mai-2026-095521.png\",\"957dfbb3-0f76-498d-9feb-145f08835ed0\",\"7f8de953-1005-4e86-8680-ecd218079c1c\",\"272-boulevard-d-amsterdam\",\"272 Boulevard D'amsterdam\",\"272\",45.428079,-75.814865,[1609],[],\"1263\",\"/storage/v1/object/public/halfred/buildings/957dfbb3-0f76-498d-9feb-145f08835ed0/chatgpt-image-11-mai-2026-125342.png\",\"c528a867-7970-44ec-bd2c-84bf427b75b4\",\"e9fa5bcb-f159-4c14-9b3e-09f14b9b4438\",\"209-rue-du-piree\",\"209 Rue Du Pirée\",\"Rue Du Pirée\",\"209\",45.43509,-75.814433,[1622],[],\"1392\",\"700 - 1400\",\"/storage/v1/object/public/halfred/buildings/c528a867-7970-44ec-bd2c-84bf427b75b4/facade-png.jpg\",\"0f7da5ad-cfa9-46d0-9433-bb6f758a3323\",\"f3187129-b92c-4ec8-861c-950d9c13f139\",\"235-rue-papineau\",\"235 Rue Papineau\",\"Rue Papineau\",\"235\",45.429889,-75.71184,[1634],[],10,\"/storage/v1/object/public/halfred/buildings/0f7da5ad-cfa9-46d0-9433-bb6f758a3323/chatgpt-image-12-juin-2026-104948.png\",\"4f5af977-c033-4ae7-b4d2-a7f166436ca9\",\"0663525f-a8b7-4ecd-af62-94df98f9a39c\",\"331-chemin-de-la-savane\",\"331 Chemin De La Savane\",\"331\",45.476793,-75.677116,[1644],[],\"/storage/v1/object/public/halfred/buildings/4f5af977-c033-4ae7-b4d2-a7f166436ca9/chatgpt-image-11-mai-2026-144528.png\",\"60c62e13-5402-4ccb-b41e-4f7beb13a07a\",\"7b14f31d-ccd6-4e4e-a435-b7d8755394c5\",\"9-rue-de-liverpool\",\"9 Rue De Liverpool\",45.428727,-75.806386,[1654],[],\"1775\",\"/storage/v1/object/public/halfred/buildings/60c62e13-5402-4ccb-b41e-4f7beb13a07a/chatgpt-image-13-mai-2026-155525.png\",\"a03b227b-53cf-44fa-8143-4856be4af4c3\",\"7d3cb4e2-3474-49cc-bd10-439642de4d02\",\"1804-rue-schryer\",\"1804 Rue Schryer\",45.503365,-75.561763,[1663],[],\"/storage/v1/object/public/halfred/buildings/a03b227b-53cf-44fa-8143-4856be4af4c3/1.png\",\"16fb93ca-c039-4133-b4ac-57e39bdb470b\",\"acba9ca3-48ee-4fb5-a1a0-a09ee11058cb\",\"56-rue-lucien-brault\",\"56 Rue Lucien-Brault\",\"Rue Lucien-Brault\",\"56\",45.462822,-75.749986,[1676],[],\"1407\",\"737 - 1000\",\"/storage/v1/object/public/halfred/buildings/16fb93ca-c039-4133-b4ac-57e39bdb470b/chatgpt-image-12-mai-2026-143800.png\",\"70ffc37f-8fb3-4f54-adb1-2bc6e438fe9a\",\"f41d298c-4c77-4b4b-a53d-38061d0b98ee\",\"1845-rue-saint-louis\",\"1845 Rue Saint-Louis\",\"1845\",45.471691,-75.72622,[1689],[],\"1845 Saint Louis\",\"2026-09-03\",\"1164\",\"/storage/v1/object/public/halfred/buildings/70ffc37f-8fb3-4f54-adb1-2bc6e438fe9a/1855_Rue_Saint-Louis_6-01.jpg\",\"099f55a3-21fd-4082-bc67-c15de816bad5\",\"860071af-8d65-456e-9307-22d8fdc2b745\",\"1794-rue-schryer\",\"1794 Rue Schryer\",\"1794\",45.503418,-75.562243,[1701],[],\"2025-09-01\",\"1200 - 1250\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/099f55a3-21fd-4082-bc67-c15de816bad5/0__099f55a3-21fd-4082-bc67-c15de816bad5.webp?version=bf33a360-c0cc-40c5-878a-da40ec81c525\",\"3e1c14a0-b7c5-476e-8bc6-6f480065a787\",\"4e04fdd2-ebfa-4edf-8315-c30a99a97435\",\"1770-rue-schryer\",\"1770 Rue Schryer\",\"1770\",45.504034,-75.561197,[1711],[],\"/storage/v1/object/public/halfred/buildings/3e1c14a0-b7c5-476e-8bc6-6f480065a787/schryer-facade.PNG\",\"d9c6dbbf-d98b-40ca-b3ed-d6f927388c93\",\"b62dde39-2d0d-41e0-81ac-fc53e0082e89\",\"66-impasse-john-roney\",\"66 Impasse John-Roney\",\"66\",45.40852,-75.846597,[1721],[],\"/storage/v1/object/public/halfred/buildings/d9c6dbbf-d98b-40ca-b3ed-d6f927388c93/chatgpt-image-5-juin-2026-161747.png\",\"2084d539-7995-4539-8ee7-481b532c7880\",\"aec07ca6-d02f-4c9c-b8c4-90b7f0563ba8\",\"1855-rue-saint-louis\",\"1855 Rue Saint-Louis\",\"1855\",45.472014,-75.726223,[1734],[],\"1855 rue Saint Louis\",\"2026-09-05\",\"1069\",\"/storage/v1/object/public/halfred/buildings/2084d539-7995-4539-8ee7-481b532c7880/1875_Rue_Saint-Louis-1.jpg\",\"8de520ad-0f6c-49bc-8053-94bd4e5746d2\",\"5dd7ca56-7c7d-4ec2-bc07-64591b37313d\",\"855-boulevard-maloney-est\",\"855 Boulevard Maloney Est\",\"855\",45.48613,-75.606174,[1745],[],\"518\",\"/storage/v1/object/public/halfred/buildings/8de520ad-0f6c-49bc-8053-94bd4e5746d2/855-boul-maloney.jpg\",\"286aba8f-0441-4dc5-a49b-1a72ca288051\",\"8c692a4d-7ce7-44c5-912b-ae1b54b0db42\",\"77-rue-papineau\",\"77 Rue Papineau\",\"77\",45.430657,-75.72207,[1756],[],\"77 rue Papineau\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/286aba8f-0441-4dc5-a49b-1a72ca288051/0__286aba8f-0441-4dc5-a49b-1a72ca288051.webp?version=36254805-42bf-4e17-802c-16de9fab32ad\",\"b9a80486-6b48-4e25-939e-c84f59ee2219\",\"05b1becb-7475-4fd9-b644-9292d772dc26\",\"2-rue-de-la-fondriere\",\"2 Rue De La Fondrière\",\"Rue De La Fondrière\",45.473925,-75.767723,[1767],[],\"2025-06-01\",\"/storage/v1/object/public/halfred/buildings/b9a80486-6b48-4e25-939e-c84f59ee2219/chatgpt-image-7-mai-2026-132500.png\",\"d8e54f87-5f29-4e87-8c26-e25f02839900\",\"221bdd2d-88ae-443c-a709-2d588959baea\",\"9-rue-trudeau\",\"9 Rue Trudeau\",\"Rue Trudeau\",45.446432,-75.736404,[1779],[],\"9 Trudeau\",\"0 - 1000\",\"/storage/v1/object/public/halfred/buildings/d8e54f87-5f29-4e87-8c26-e25f02839900/chatgpt-image-10-juin-2026-143202.png\",\"634b56cf-4ab5-4226-88f4-2c5aeb45a23f\",\"5d62099b-0e3b-433f-88f3-d53d5ec086dd\",\"1792-rue-schryer\",\"1792 Rue Schryer\",\"1792\",45.503421,-75.562313,[1790],[],\"1792 Rue Schyer\",\"/storage/v1/object/public/halfred/buildings/634b56cf-4ab5-4226-88f4-2c5aeb45a23f/schryer-facade.PNG\",\"c228126d-942b-46b4-9621-df0e7ec2e9bc\",\"ae63c5ee-c03e-4a04-a6ab-187d6d766df7\",\"130-rue-du-maquis\",\"130 Rue Du Maquis\",\"130\",45.41145,-75.836667,[1802],[],\"2026-08-31\",\"1298\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/c228126d-942b-46b4-9621-df0e7ec2e9bc/24b9a430-5293-8274-b936-e24e505a6bb9?version=ee8b0802-91d9-4548-9da5-adaab1d0aa1b\",\"4f6550e0-66ec-4d58-8bbb-74d644e7820b\",\"f98f6a66-8412-455e-b580-ceaba1cc2f67\",\"565-rue-de-pointe-gatineau\",\"565 Rue De Pointe-Gatineau\",\"Rue De Pointe-Gatineau\",\"565\",45.466795,-75.705881,[1817],[],\"565 rue de Pointe Gatineau \",\"2026-08-14\",\"1171\",60,\"/storage/v1/object/public/halfred/buildings/4f6550e0-66ec-4d58-8bbb-74d644e7820b/545_Rue_de_Pointe-Gatineau_115-02.jpg\",\"22241c14-5811-4eae-8714-ff0726c318dc\",\"c9930e8a-847c-45a9-b4b3-0f6912a5315e\",\"14-rue-larabie\",\"14 Rue Larabie\",\"Rue Larabie\",\"14\",45.492922,-75.609248,[1830],[],\"2400\",\"2063\",\"/storage/v1/object/public/halfred/buildings/22241c14-5811-4eae-8714-ff0726c318dc/022241c14-5811-4eae-8714-ff0726c318dc.webp\",\"0d46504d-9ed3-41d3-ba4c-2e3686090e17\",\"4d790f5a-079d-49ad-ae0d-85b81fb8ebd6\",\"21-rue-courchesne\",\"21 Rue Courchesne\",\"Rue Courchesne\",\"21\",45.448959,-75.737168,[1843],[],\"21 rue Courchesne\",\"1134\",\"/storage/v1/object/public/halfred/buildings/0d46504d-9ed3-41d3-ba4c-2e3686090e17/chatgpt-image-7-mai-2026-143425.png\",\"58216cde-2c69-4210-a7aa-b0954533f663\",\"b3991a7d-e255-4b61-ad0f-305948cbee04\",\"247-rue-de-la-fregate\",\"247 Rue De La Frégate\",\"247\",45.499488,-75.592294,[1853],[],\"/storage/v1/object/public/halfred/buildings/58216cde-2c69-4210-a7aa-b0954533f663/0002-0002.jpg\",\"5a12418a-557a-4cc4-bd0e-7691895d2734\",\"16655e4a-c6bf-4996-9708-a6f03dd009c5\",\"44-rue-de-la-fabrique\",\"44 Rue De La Fabrique\",\"44\",45.41035,-75.858664,[1865],[],\"44 Fabrique\",\"1801\",\"/storage/v1/object/public/halfred/buildings/5a12418a-557a-4cc4-bd0e-7691895d2734/chatgpt-image-5-juin-2026-153827.png\",\"e45035fb-624e-4cb3-ae04-e866b81cc76e\",\"833d82d8-3587-47ca-afb7-a9f8665d9fc7\",\"249-champlain\",\"249 Champlain\",\"Champlain\",\"249\",45.433889,-75.711636,[1878],[],\"249 rue Champlain\",\"2089\",\"/storage/v1/object/public/halfred/buildings/e45035fb-624e-4cb3-ae04-e866b81cc76e/chatgpt-image-31-aout-2026-104818-png.jpg\",\"cd69cabb-5cc9-4fd5-acf5-e9decbcfe93f\",\"5b9f5759-e2bf-4f33-970e-561af73a1cc9\",\"124-rue-lombard\",\"124 Rue Lombard\",\"Rue Lombard\",45.546954,-75.409191,[1890],[],\"1099\",\"500\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/cd69cabb-5cc9-4fd5-acf5-e9decbcfe93f/0__capture-decran-2022-09-16-144622.png?version=5ac35fdb-84d5-4ba5-adb4-7a976b03f253\",\"1dbd0c7f-a43a-4f63-b3d9-9885f0afc7fd\",\"467ba6b1-cc6e-4b20-97ab-a0da69d57d3a\",\"988-rue-jacinthe\",\"988 Rue Jacinthe\",\"Rue Jacinthe\",\"988\",45.785085,-74.043628,[1902],[],\"2026-09-15\",\"/storage/v1/object/public/halfred/buildings/1dbd0c7f-a43a-4f63-b3d9-9885f0afc7fd/chatgpt-image-14-mai-2026-121846.png\",\"19b68190-c4a1-49da-ad12-5f91e07a96a5\",\"f932036c-2bd2-45a3-b528-8257b5089678\",\"46-rue-de-la-fabrique\",\"46 Rue De La Fabrique\",\"46\",45.410351,-75.858869,[1913],[],\"46 fabrique\",\"/storage/v1/object/public/halfred/buildings/19b68190-c4a1-49da-ad12-5f91e07a96a5/chatgpt-image-10-juin-2026-105814.png\",\"5a9ca168-3b79-4f75-8878-adbc522cdc80\",\"a24a05bc-6500-4d5c-a782-d86d96ba2a73\",\"36-boulevard-d-amsterdam\",\"36 Boulevard D'amsterdam\",45.432391,-75.807142,[1922],[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/5a9ca168-3b79-4f75-8878-adbc522cdc80/0__5a9ca168-3b79-4f75-8878-adbc522cdc80.webp?version=1bbd7893-8f2a-43f8-b0fd-d5b82f78e1bf\",\"a7ff6d4e-c3cc-4862-bfa1-0a98d4db0942\",\"0dd53442-ad88-48dc-82d3-ee7103317475\",\"555-rue-de-pointe-gatineau\",\"555 Rue De Pointe-Gatineau\",\"555\",45.467047,-75.705285,[1935],[],\"1928\",\"900 - 1000\",22,\"/storage/v1/object/public/halfred/buildings/a7ff6d4e-c3cc-4862-bfa1-0a98d4db0942/14612434_1.jpg\",\"92f1b218-202c-42ea-a8f7-fca7f232c0bf\",\"7566ff50-c7fa-43d0-8e6d-abfd3997bc01\",\"46-rue-joseph-galipeau\",\"46 Rue Joseph-Galipeau\",\"Rue Joseph-Galipeau\",45.459907,-75.704527,[1946],[],\"2024-07-25\",\"/storage/v1/object/public/halfred/buildings/92f1b218-202c-42ea-a8f7-fca7f232c0bf/1front.jpg\",\"ca813baa-2b30-4e2c-be21-1a6ffacd20bf\",\"2b199555-8ffb-4292-a56a-919d06d4dc4a\",\"189-chemin-mcconnell\",\"189 Chemin Mcconnell\",\"189\",45.410876,-75.832689,[1957],[],\"1425\",\"/storage/v1/object/public/halfred/buildings/ca813baa-2b30-4e2c-be21-1a6ffacd20bf/chatgpt-image-9-juin-2026-161743.png\",\"582448bc-e1b8-4ab8-affb-b313d8965495\",\"e27e4eb1-e62f-4908-a901-ce6a061ff0a5\",\"32-rue-de-la-fabrique\",\"32 Rue De La Fabrique\",\"32\",45.409971,-75.858617,[1968],[],\"Muscat 8 \",\"/storage/v1/object/public/halfred/buildings/582448bc-e1b8-4ab8-affb-b313d8965495/chatgpt-image-11-mai-2026-143639.png\",\"eba5ab26-2c0a-4768-8469-70d9c3aef8ad\",\"8a144da5-6329-4457-81a8-ace4bef5eaca\",\"130-rue-lombard\",\"130 Rue Lombard\",45.547448,-75.409384,[1977],[],\"/storage/v1/object/public/halfred/buildings/eba5ab26-2c0a-4768-8469-70d9c3aef8ad/chatgpt-image-4-mai-2026-155321.png\",\"d4b45d49-f0ca-4d3a-9ce9-36e58bfebee1\",\"ff7926b4-db39-4e25-9454-58f47ea140e8\",\"4-rue-katimavik\",\"4 Rue Katimavik\",\"4\",45.421664,-75.807438,[1988],[],\"4 Katimavik\",\"/storage/v1/object/public/halfred/buildings/d4b45d49-f0ca-4d3a-9ce9-36e58bfebee1/955katimavik-19.jpg\",\"53162c68-ecf7-460c-8e99-8c9a066569e2\",\"5ff404a0-7ad0-4b09-90b9-925505da8672\",\"165-rue-eddy\",\"165 Rue Eddy\",\"165\",45.430494,-75.7205,[2001],[],\"0 - 2\",\"300 - 700\",13,\"/storage/v1/object/public/halfred/buildings/53162c68-ecf7-460c-8e99-8c9a066569e2/chatgpt-image-5-mai-2026-132844.png\",\"7914359c-2606-46af-82da-110907c1e98b\",\"f5d12e1a-36d5-4312-90ce-8c405291070f\",\"14-rue-roy\",\"14 Rue Roy\",\"Rue Roy\",45.448672,-75.735629,[2012],[],\"1675\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/7914359c-2606-46af-82da-110907c1e98b/0__7914359c-2606-46af-82da-110907c1e98b.webp?version=e49bae62-f081-488c-8ecc-b438e634d8fd\",\"3defb0d4-e7ce-47a4-ad97-9f1c97637a66\",\"c7e9f007-7df4-4df2-8965-4fbdba74df07\",\"chelseacreekmulti\",\"150-chemin-jean-paul-lemieux\",\"150 chemin jean-Paul lemieux\",\"chemin jean-Paul lemieux\",\"150\",\"chelsea\",45.502174,-75.797203,[2033],[],\"95 Chemin Old Chelsea\",\"Chelsea\",\"95-chemin-old-chelsea\",45.503356,-75.796062,\"2026-04-01\",\"2150\",\"953 - 1098\",\"/storage/v1/object/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg\",\"4be75758-8c6b-4978-bd5b-913caf5ca0f4\",\"146-chemin-jean-paul-lemieux\",\"146 Chemin Jean-Paul Lemieux\",\"Chemin Jean-Paul Lemieux\",\"146\",45.50307,-75.795954,[2033],[],\"c7f62d0e-94a8-4677-8c6a-c746a86c372e\",\"38-rue-marjorie-d-shackleton\",\"38 Rue Marjorie-D.-Shackleton\",45.428619,-75.803563,[1056],[],\"1465\",\"474 - 942\",\"4473893f-c6d9-4079-bfb0-6a2819a3e9b0\",\"8-rue-marjorie-d-shackleton\",\"8 Rue Marjorie-D.-Shackleton\",\"8\",45.428533,-75.804708,[1056],[],\"1533\",\"490 - 1005\",9,\"a59671ee-e225-41af-bc89-3cf1dfb6dbd8\",\"488e10a0-1895-4dde-92b2-e4f3f95e8f3d\",\"33-rue-lemieux\",\"33 Rue Lemieux\",\"Rue Lemieux\",\"33\",45.46132,-75.766869,[2076],[],\"1229\",\"700 - 1000\",\"1340\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/a59671ee-e225-41af-bc89-3cf1dfb6dbd8/59cc0a61-3a2e-4e02-9d44-9db9894788af?version=02c6e453-a176-4e06-ab4f-17378ff805cf\",\"987fe064-b0ec-409e-b759-49c31cdf7268\",\"acb4bb09-3ea4-4420-bcbe-9c661f93aee4\",\"194-rue-henri-matisse\",\"194 Rue Henri-Matisse\",\"Rue Henri-Matisse\",\"194\",45.503121,-75.612381,[2089],[],\"194 rue Henri-Matisse\",\"1850\",\"/storage/v1/object/public/halfred/buildings/987fe064-b0ec-409e-b759-49c31cdf7268/chatgpt-image-7-juil-2026-112401.png\",\"d87f7d25-71bb-4599-9b70-c8d1cd1b2c73\",\"a4592385-eb59-4ee5-b5b2-67666de1dd0d\",\"17-rue-de-liverpool\",\"17 Rue De Liverpool\",\"17\",45.428934,-75.806856,[2101],[],\"1200 - 1260\",\"1800\",\"/storage/v1/object/public/halfred/buildings/d87f7d25-71bb-4599-9b70-c8d1cd1b2c73/chatgpt-image-5-mai-2026-135522.png\",\"5797ab82-b5ef-4581-b3a0-c3e9c236f300\",\"44e47fd6-e6eb-498b-a34b-e7c3b928b4df\",\"213-rue-du-piree\",\"213 Rue Du Pirée\",\"213\",45.4356395,-75.813536,[2113],[],\"2335\",\"2475\",\"/storage/v1/object/public/halfred/buildings/5797ab82-b5ef-4581-b3a0-c3e9c236f300/facade-png.jpg\",\"26f1bc76-d9d7-4874-96aa-d5db0874ab14\",\"f8af9520-39ba-4c35-a08d-ae7ae53b71fb\",\"24-rue-larabie\",\"24 Rue Larabie\",\"24\",45.49275,-75.610146,[2130],[],\"26 Rue Larabie\",\"26-rue-larabie\",45.492742,-75.610248,\"1559\",\"644\",\"1700\",\"/storage/v1/object/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg\",\"88ce5de4-950d-46de-8fc2-4785e82fe201\",\"36-rue-marjorie-d-shackleton\",\"36 Rue Marjorie-D.-Shackleton\",45.428603,-75.803755,[1056],[],\"877 - 895\",\"1950\",\"648bb8cd-ab1e-4e82-9571-0d1dfcc3f446\",\"42-rue-marjorie-d-shackleton\",\"42 Rue Marjorie-D.-Shackleton\",\"42\",45.428649,-75.803038,[1056],[],\"6dea55d4-2d55-4872-a4fa-52d6e61ab2d1\",\"d03d153a-95d7-46e5-a76f-4738c04a5a85\",\"123-boulevard-lorrain\",\"123 Boulevard Lorrain\",\"Boulevard Lorrain\",\"123\",45.496699,-75.608018,[2161],[],\"123 boulevard Lorrain\",\"2026-08-07\",\"995\",\"/storage/v1/object/public/halfred/buildings/6dea55d4-2d55-4872-a4fa-52d6e61ab2d1/facade-png.jpg\",\"021698f9-ebd8-4fcc-adc1-1ad8c1d7014e\",\"2d3fffa7-4237-4df6-beab-edc946aad50e\",\"193-chemin-mcconnell\",\"193 Chemin Mcconnell\",\"193\",45.410805,-75.83284,[2174],[],\"193 Chemin McConnell\",\"2026-04-16\",\"1705\",\"/storage/v1/object/public/halfred/buildings/021698f9-ebd8-4fcc-adc1-1ad8c1d7014e/chatgpt-image-7-mai-2026-130425.png\",\"44bba3b4-67a5-4fc3-9d3e-5c71ad2e9a69\",\"c6a3f33d-17df-4b8a-9c41-b99cc19f8c46\",\"817-rue-larouche\",\"817 Rue Larouche\",\"817\",45.484748,-75.610254,[2186],[],\"817 Larouche \",\"1330\",\"/storage/v1/object/public/halfred/buildings/44bba3b4-67a5-4fc3-9d3e-5c71ad2e9a69/chatgpt-image-13-mai-2026-141043.png\",\"d6292b49-5f2f-4ac0-9221-cc3ef3f81df1\",\"96b2f4f8-7e59-40b4-99bc-08f3de3333c0\",\"84-boulevard-de-l-amerique-francaise\",\"84 Boulevard De L'amérique-Française\",\"Boulevard De L'amérique-Française\",\"84\",45.436986,-75.815492,[2201],[],\"84 Amérique Française\",\"2026-04-15\",\"1146\",\"0 - 1400\",\"/storage/v1/object/public/halfred/buildings/d6292b49-5f2f-4ac0-9221-cc3ef3f81df1/chatgpt-image-13-mai-2026-144332.png\",\"d251872b-9f75-48b5-a34f-173c80185a42\",\"21cfcdb4-84c9-42c1-ae14-42eea860e878\",\"226-boulevard-d-amsterdam\",\"226 Boulevard D'amsterdam\",\"226\",45.42939,-75.813983,[2214],[],\"226 Boul. D'Amsterdam\",\"1647\",\"1796\",\"/storage/v1/object/public/halfred/buildings/d251872b-9f75-48b5-a34f-173c80185a42/4f16b0f5-da70-4fb3-b3e6-98d3493f87d7.png\",\"4701216f-94f1-49a3-ab92-9e7adb41e97e\",\"0d1b1741-6328-457e-bf96-32754659286f\",\"222-boulevard-d-amsterdam\",\"222 Boulevard D'amsterdam\",\"222\",45.429506,-75.814071,[2225],[],\"1554\",\"/storage/v1/object/public/halfred/buildings/4701216f-94f1-49a3-ab92-9e7adb41e97e/chatgpt-image-12-juin-2026-103813.png\",\"66de2865-e85c-4bcd-b3e8-fcb7fb5bd71a\",\"b1c9c4f2-4fbc-4e78-8b72-eaf8a69b4a0c\",\"30-rue-de-la-fabrique\",\"30 Rue De La Fabrique\",\"30\",45.409807,-75.85807,[2236],[],\"1188\",\"/storage/v1/object/public/halfred/buildings/66de2865-e85c-4bcd-b3e8-fcb7fb5bd71a/chatgpt-image-11-mai-2026-135011.png\",\"90b13a61-9f7c-42c0-b515-fbee5a8ac67a\",\"6429bc9d-3a7a-44d9-9207-283d296ed2ec\",\"137-impasse-john-roney\",\"137 Impasse John-Roney\",\"137\",45.409102,-75.846766,[2249],[],\"137 imp John-Roney\",\"1490\",\"1525\",\"/storage/v1/object/public/halfred/buildings/90b13a61-9f7c-42c0-b515-fbee5a8ac67a/137-141-exterieur-web-1.jpg\",\"b92384e4-7b73-4b7b-8bb5-e34f1ef89d56\",\"bb391ca0-cb0c-46ec-971f-11d69168abbe\",\"238-rue-de-la-fregate\",\"238 Rue De La Frégate\",\"238\",45.49908,-75.592142,[2261],[],\"238 Rue de la Frégate \",\"1536\",\"/storage/v1/object/public/halfred/buildings/b92384e4-7b73-4b7b-8bb5-e34f1ef89d56/0002-0002.jpg\",\"dc0526fb-178d-498f-9807-59deec6ff1ad\",\"6d3ed5c4-5048-402a-9e95-6ef0506a99e3\",\"614-boulevard-du-plateau\",\"614 Boulevard Du Plateau\",\"614\",45.432182,[2271],[],\"1145\",\"/storage/v1/object/public/halfred/buildings/dc0526fb-178d-498f-9807-59deec6ff1ad/955katimavik-19.jpg\",\"6f120676-6393-4993-8e9e-02e7956cac18\",\"9d0df4df-a1e2-44e8-9ff1-45fa32b450f9\",\"32-boulevard-d-amsterdam\",\"32 Boulevard D'amsterdam\",45.432202,-75.807114,[2281],[],\"1169\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/6f120676-6393-4993-8e9e-02e7956cac18/0__6f120676-6393-4993-8e9e-02e7956cac18.webp?version=bbfd536b-1fdb-4546-8825-ff7cd3d65b08\",\"9c171536-1529-40f6-8c15-3bfe8cbe8ca4\",\"76f72fc7-2a96-4f2f-ac4e-cbf1c5fc1a57\",\"311-avenue-de-buckingham\",\"311 Avenue De Buckingham\",\"311\",45.59215,-75.417959,[2292],[],\"1238\",\"/storage/v1/object/public/halfred/buildings/9c171536-1529-40f6-8c15-3bfe8cbe8ca4/chatgpt-image-11-mai-2026-143111.png\",\"91b98fd4-f93a-4e2a-a076-e3ea5fe4351e\",\"93641118-d1ef-49b5-b21a-24436e465bcc\",\"67-rue-dupuis\",\"67 Rue Dupuis\",\"Rue Dupuis\",\"67\",45.490309,-75.606831,[2305],[],\"1170\",\"1917\",\"/storage/v1/object/public/halfred/buildings/91b98fd4-f93a-4e2a-a076-e3ea5fe4351e/chatgpt-image-24-avr-2026-103353.png\",\"e00d5a57-738d-4df6-ab83-f445cfa6ef0d\",\"565b1115-0985-4539-b1fa-bb993e20aa65\",\"45-rue-du-cure-andre-preseault\",\"45 Rue Du Curé-André-Préseault\",\"Rue Du Curé-André-Préseault\",\"45\",45.48378,-75.703568,[2317],[],25,\"/storage/v1/object/public/halfred/buildings/e00d5a57-738d-4df6-ab83-f445cfa6ef0d/chatgpt-image-12-mai-2026-134325.png\",\"2f872116-e778-423e-93ba-8ce6339e7256\",\"f893c8e1-00e4-4304-bf59-1815b9ff4cf4\",\"239-rue-de-liverpool\",\"239 Rue De Liverpool\",\"239\",45.429726,-75.813499,[2329],[],\"2025-05-01\",\"1475\",\"/storage/v1/object/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png\",\"24308035-7b33-4697-b021-7bab3c82c002\",\"98e8a782-68a2-4874-bcc6-2386f2d1888f\",\"69-rue-dupuis\",\"69 Rue Dupuis\",\"69\",45.490373,-75.606833,[2341],[],\"1569\",\"1711\",\"/storage/v1/object/public/halfred/buildings/24308035-7b33-4697-b021-7bab3c82c002/chatgpt-image-5-juin-2026-151558.png\",\"8bffbd2a-29a5-4a1e-947f-5e8696921e17\",\"2344025c-370b-45aa-bacb-bf9484c53daf\",\"66-rue-brodeur\",\"66 Rue Brodeur\",\"Rue Brodeur\",45.436876,-75.736913,[2354],[],\"2026-08-24\",\"1375\",\"760\",\"/storage/v1/object/public/halfred/buildings/8bffbd2a-29a5-4a1e-947f-5e8696921e17/chatgpt-image-12-mai-2026-154427.png\",\"aa08deab-4cb1-49b6-98fb-ad9cde3293b4\",\"82cabf34-6318-412b-9a10-8cc1c779c787\",\"63-rue-dupuis\",\"63 Rue Dupuis\",\"63\",45.490094,-75.606804,[2366],[],\"Oasis\",\"1725\",\"/storage/v1/object/public/halfred/buildings/aa08deab-4cb1-49b6-98fb-ad9cde3293b4/1.png\",\"ad469e6c-2bf5-49e4-b05b-eda2862715cd\",\"dc8d6dc8-6847-459e-96fc-80ccae051aaa\",\"37-rue-saint-hyacinthe\",\"37 Rue Saint-Hyacinthe\",\"Rue Saint-Hyacinthe\",\"37\",45.434117,-75.721126,[2379],[],\"986\",\"500 - 1250\",\"/storage/v1/object/public/halfred/buildings/ad469e6c-2bf5-49e4-b05b-eda2862715cd/chatgpt-image-12-mai-2026-115853.png\",\"e14bb4d8-18f5-481b-9c40-3b3e0eead9c6\",\"264733eb-412c-4a41-94dc-5e71a92082fc\",\"120-rue-du-maquis\",\"120 Rue Du Maquis\",\"120\",45.411445,-75.838177,[2392],[],\"1494\",\"795 - 1270\",16,\"/storage/v1/object/public/halfred/buildings/e14bb4d8-18f5-481b-9c40-3b3e0eead9c6/maquis-ete.png\",\"4133195f-fa0a-42f0-b258-e856c18a7245\",\"1b011ff7-8b35-4481-abfb-1fe958bae4e3\",\"219-rue-de-la-fregate\",\"219 Rue De La Frégate\",\"219\",45.499629,-75.591159,[2404],[],\"219 Frégate\",\"1513\",\"/storage/v1/object/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg\",\"95357dba-82da-4548-99ae-5ce07fb66ea8\",\"6b463947-0139-4ada-8f92-6a8df73cb375\",\"227-rue-de-la-fregate\",\"227 Rue De La Frégate\",\"227\",45.499523,-75.591607,[2414],[],\"/storage/v1/object/public/halfred/buildings/95357dba-82da-4548-99ae-5ce07fb66ea8/0001-0001.jpg\",\"141403da-f50d-40f5-8023-b4ca3d1991eb\",\"78b9877e-8dfa-412f-9dc5-bcbfbe05f491\",\"100-rue-du-maquis\",\"100 Rue Du Maquis\",\"100\",45.41144,-75.838097,[2427],[],\"1713\",\"1000 - 1270\",\"1868\",\"/storage/v1/object/public/halfred/buildings/141403da-f50d-40f5-8023-b4ca3d1991eb/maquis-ete.png\",\"6eed1895-1ef5-483e-87fb-3eb81e4bb456\",\"5487be55-37da-4f32-9387-2cb28618c775\",\"235-rue-de-liverpool\",\"235 Rue De Liverpool\",45.429747,-75.813391,[2436],[],\"/storage/v1/object/public/halfred/buildings/6eed1895-1ef5-483e-87fb-3eb81e4bb456/0-Liverpool.png\",\"077ef07d-50bf-47f6-ba57-2d3f4b773669\",\"1a0e3ca4-7e45-41c7-be5c-73b06f2cd51f\",\"11-rue-de-liverpool\",\"11 Rue De Liverpool\",45.428731,-75.806512,[2446],[],\"1605\",\"/storage/v1/object/public/halfred/buildings/077ef07d-50bf-47f6-ba57-2d3f4b773669/chatgpt-image-30-avr-2026-154307.png\",\"e91fbdb5-1eb9-468c-b08d-ba764337c1c7\",\"ab6f6bd2-70b2-4315-9f28-25630c8fffbe\",\"86-rue-du-campagnard\",\"86 Rue Du Campagnard\",\"86\",45.50242,-75.590435,[2456],[],\"/storage/v1/object/public/halfred/buildings/e91fbdb5-1eb9-468c-b08d-ba764337c1c7/chatgpt-image-29-mai-2026-144508.png\",\"5cd46b63-f6ac-4a3f-ad33-e59204355119\",\"2b39106f-8ad8-4fd3-b695-71ee0732b52a\",\"576-boulevard-des-hautes-plaines\",\"576 Boulevard Des Hautes-Plaines\",\"Boulevard Des Hautes-Plaines\",\"576\",45.474898,-75.767749,[2471],[],\"576 Hautes Plaines\",\"2026-06-16\",\"1299\",\"1495\",\"/storage/v1/object/public/halfred/buildings/5cd46b63-f6ac-4a3f-ad33-e59204355119/1.jpg\",\"be56875e-a526-4f45-9fe0-26c224557a81\",\"8e4bd300-04ca-43d2-bbcb-fa76c75f4467\",\"132-rue-de-notre-dame-de-i-ile\",\"132 Rue De Notre-Dame-De-I'île\",\"Rue De Notre-Dame-De-I'île\",\"132\",45.42984,-75.710958,[2485],[],\"2025-08-01\",\"780\",\"300\",\"/storage/v1/object/public/halfred/buildings/be56875e-a526-4f45-9fe0-26c224557a81/chatgpt-image-4-mai-2026-160524.png\",\"d43fc80a-206e-49a4-8f80-53e98b15c00a\",\"adf90ddd-1d1e-473d-ac9b-a8d10dce13cd\",\"217-chemin-de-la-savane\",\"217 Chemin De La Savane\",\"217\",45.475869,-75.681232,[2497],[],\"217 Chemin de la Savane\",\"1008\",\"/storage/v1/object/public/halfred/buildings/d43fc80a-206e-49a4-8f80-53e98b15c00a/chatgpt-image-7-mai-2026-144808-1.png\",\"1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4\",\"96b83814-c72e-43ba-b488-158e03db9c3d\",\"145-rue-champlain\",\"145 Rue Champlain\",\"Rue Champlain\",\"145\",45.430006,-75.712391,[2510],[],\"2025-12-17\",\"650 - 700\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4/0__1b9f4ad7-f7f3-4828-bfe1-2babb7644ee4.webp?version=b1763f35-5f0d-4bef-8e92-43af0eb86f36\",\"fa732ec6-1c57-44dd-9a8e-73b060e20eaa\",\"e1e38e00-4fda-42ac-89c6-610536421430\",\"8-rue-katimavik\",\"8 Rue Katimavik\",45.421567,-75.807277,[2522],[],\"8 rue Katimavik\",\"1584\",\"1727\",\"/storage/v1/object/public/halfred/buildings/fa732ec6-1c57-44dd-9a8e-73b060e20eaa/955katimavik-19.jpg\",\"aa767c12-90aa-40bb-80a4-2000d95576d5\",\"0a3ab442-83d7-4889-a8e4-254c85b0aeff\",\"30-boulevard-d-amsterdam\",\"30 Boulevard D'amsterdam\",45.432126,-75.807113,[2532],[],\"30 Boul. Amsterdam\",\"/storage/v1/object/public/halfred/buildings/aa767c12-90aa-40bb-80a4-2000d95576d5/chatgpt-image-11-mai-2026-134243.png\",\"16313772-8d62-4a6e-8a3e-9ec3826a94a9\",\"0280cda7-29c8-4d93-a88a-e83ed1a0d573\",\"82-rue-du-britannia\",\"82 Rue Du Britannia\",\"Rue Du Britannia\",\"82\",45.412353,-75.827641,[2545],[],\"2026-03-07\",\"1480\",\"/storage/v1/object/public/halfred/buildings/16313772-8d62-4a6e-8a3e-9ec3826a94a9/0001-0001.jpg\",\"c05f441a-72af-4190-bd5a-60094e8f2811\",\"533a5b5b-788b-45f7-8394-597b7620ac54\",\"440-rue-de-pointe-gatineau\",\"440 Rue De Pointe-Gatineau\",\"440\",45.466721,-75.698365,[2557],[],\"2026-03-27\",\"1307\",\"/storage/v1/object/public/halfred/buildings/c05f441a-72af-4190-bd5a-60094e8f2811/chatgpt-image-12-mai-2026-133423.png\",\"ab8c22d5-e72d-42ee-a7ea-599e6bd3d31e\",\"fc6f036e-5467-471a-9e21-06215b7798e3\",\"357-avenue-de-buckingham\",\"357 Avenue De Buckingham\",\"357\",45.590772,-75.418218,[2567],[],\"/storage/v1/object/public/halfred/buildings/ab8c22d5-e72d-42ee-a7ea-599e6bd3d31e/cd1102dd-a02a-4545-afb4-f2bed80ec0b8\",\"92f96d4d-a44d-4c5a-ad2c-c29b5181e757\",\"1934fe7b-74b9-4e50-896d-4eab4da05d81\",\"25-rue-pharand\",\"25 Rue Pharand\",\"Rue Pharand\",45.424376,-75.740319,[2579],[],\"1285\",\"700 - 718\",\"/storage/v1/object/public/halfred/buildings/92f96d4d-a44d-4c5a-ad2c-c29b5181e757/chatgpt-image-11-mai-2026-124022.png\",\"8aae1724-2ba3-4813-a052-d838cf6bc376\",\"c853fb87-c794-4db2-a722-119c0363475d\",\"145-rue-larose\",\"145 Rue Larose\",\"Rue Larose\",45.448057,-75.741878,[2589],[],\"/storage/v1/object/public/halfred/buildings/8aae1724-2ba3-4813-a052-d838cf6bc376/03afb40a-0ef2-42f1-8056-6afe8d609563\",\"84687d04-5d07-4547-b653-a2555d0b5417\",\"8d15b401-ff5f-4326-a324-e88e229e9af5\",\"125-boulevard-lorrain\",\"125 Boulevard Lorrain\",\"125\",45.496727,-75.608016,[2600],[],\"125 Bd Lorrain\",\"/storage/v1/object/public/halfred/buildings/84687d04-5d07-4547-b653-a2555d0b5417/facade-png.jpg\",\"125b3c0b-1e7a-4019-af6f-d34941fc3a98\",\"19573288-1421-45df-9cae-e1be011b5a18\",\"215-rue-de-la-fregate\",\"215 Rue De La Frégate\",45.499648,-75.591057,[2610],[],\"215 Frégate\",\"/storage/v1/object/public/halfred/buildings/125b3c0b-1e7a-4019-af6f-d34941fc3a98/0002-0002.jpg\",\"ea305b6a-7ea8-48c3-80a4-1dcbe2880463\",\"631bcb57-d2f5-4a8d-b5df-d3c5884e5637\",\"22-rue-du-sommet\",\"22 Rue Du Sommet\",\"Rue Du Sommet\",45.474617,-75.772604,[2622],[],\"22 rue du Sommet\",\"1395\",\"/storage/v1/object/public/halfred/buildings/ea305b6a-7ea8-48c3-80a4-1dcbe2880463/chatgpt-image-7-mai-2026-152840.png\",\"bf43c3d6-d5a3-4a02-9726-49c35b444acb\",\"8713f551-b1ea-4622-ae17-5b4bd07045f6\",\"50-impasse-john-roney\",\"50 Impasse John-Roney\",45.408605,-75.846799,[2632],[],\"50 Impasse john Roney\",\"/storage/v1/object/public/halfred/buildings/bf43c3d6-d5a3-4a02-9726-49c35b444acb/chatgpt-image-12-mai-2026-135601.png\",\"5cf3755a-4140-459d-ba3a-e4c42f34c6fa\",\"7215c489-f13f-480e-b197-5e8322ab71c1\",\"54-rue-katimavik\",\"54 Rue Katimavik\",\"54\",45.420544,-75.807509,[2644],[],\"1499\",\"1635\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/5cf3755a-4140-459d-ba3a-e4c42f34c6fa/0__5cf3755a-4140-459d-ba3a-e4c42f34c6fa.webp?version=29854b62-9d72-4c5f-a030-4c9b9e1ab07d\",\"46b6649f-c9c3-42ae-878d-ee0420f81a37\",\"431ccf51-bb77-4ca0-85e0-00fb0683668c\",\"8-rue-du-cure-armand-larocque\",\"8 Rue Du Curé-Armand-Larocque\",45.436251,-75.734558,[2656],[],\"8 Curé-Armand-Larocque\",\"2026-07-03\",\"1220\",\"/storage/v1/object/public/halfred/buildings/46b6649f-c9c3-42ae-878d-ee0420f81a37/facade.png\",\"e5c1230b-e90d-45f6-b4f1-e9c56df31529\",\"575b6c21-6bf0-42c3-9bdd-338ebda83d35\",\"226-rue-de-la-fregate\",\"226 Rue De La Frégate\",45.499113,-75.591688,[2666],[],\"2026-01-08\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/e5c1230b-e90d-45f6-b4f1-e9c56df31529/20240601_152633.jpg?version=37298470-b36f-40b5-9eef-572fd0fec226\",\"22882540-b4b3-42d5-942c-16f87e1f2ad6\",\"6700fe69-2c2e-40ea-920a-acebba9965b3\",\"24-rue-du-sommet\",\"24 Rue Du Sommet\",45.474595,-75.772911,[2677],[],\"1215\",\"1325\",\"/storage/v1/object/public/halfred/buildings/22882540-b4b3-42d5-942c-16f87e1f2ad6/chatgpt-image-11-mai-2026-120228.png\",\"1cdbd26c-9364-41c2-92c9-caf897b52387\",\"c8793850-b077-4ed2-b51d-1344d01ddbe5\",\"83-rue-lucien-brault\",\"83 Rue Lucien-Brault\",\"83\",45.46231,-75.75176,[2688],[],\"790\",\"/storage/v1/object/public/halfred/buildings/1cdbd26c-9364-41c2-92c9-caf897b52387/chatgpt-image-13-mai-2026-142624.png\",\"66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf\",\"ab74fdcd-a702-4f75-a478-18c9d8f392d9\",\"29-rue-lemieux\",\"29 Rue Lemieux\",45.461357,-75.76648,[2698],[],\"1747\",\"/storage/v1/object/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg\",\"668601f2-6411-4927-81df-0532c9fd877b\",\"a34dc1bd-a151-430c-8dc9-e8ec2165e05b\",\"31-rue-lemieux\",\"31 Rue Lemieux\",45.461495,-75.76689,[2708],[],\"2025-02-01\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?version=da5644ce-a3af-43d0-a1c1-51144799682d\",\"4fb6c85a-5238-4bb0-8418-d47dbe1fbf94\",\"0cc169dc-b805-4d23-9ea0-592ef6e70017\",\"28-rue-normand\",\"28 Rue Normand\",\"Rue Normand\",\"28\",45.457016,-75.741064,[2721],[],\"1297\",\"1414\",\"/storage/v1/object/public/halfred/buildings/4fb6c85a-5238-4bb0-8418-d47dbe1fbf94/chatgpt-image-11-mai-2026-131208.png\",\"3d717fcf-a310-4287-84b3-ea55fa811d82\",\"59703bc6-2e9f-490a-91bf-955c47fc773a\",\"110-impasse-de-lorraine\",\"110 Impasse De Lorraine\",\"Impasse De Lorraine\",\"110\",\"Angers\",45.523703,-75.494222,[2735],[],\"2026-03-01\",\"1239\",\"/storage/v1/object/public/halfred/buildings/3d717fcf-a310-4287-84b3-ea55fa811d82/0001-0001.jpg\",\"66be23b5-06e7-4c15-9a2d-a1da53a37290\",\"5ddb2163-18dc-404d-be89-40b64bc92d38\",\"88-rue-frontenac\",\"88 Rue Frontenac\",\"Rue Frontenac\",\"88\",45.428874,-75.71665,[2748],[],\"1302\",\"1420\",\"/storage/v1/object/public/halfred/buildings/66be23b5-06e7-4c15-9a2d-a1da53a37290/chatgpt-image-13-mai-2026-153347.png\",\"70e954a2-6bc1-40c3-b401-b95c5e43b706\",\"db6c5a88-dd20-481f-9f72-4a2f82e43e33\",\"133-rue-patenaude\",\"133 Rue Patenaude\",\"Rue Patenaude\",\"133\",45.573574,-75.425153,[2760],[],\"1421\",\"/storage/v1/object/public/halfred/buildings/70e954a2-6bc1-40c3-b401-b95c5e43b706/facade.png\",\"363849e0-dfe0-479f-9833-bd63fc111058\",\"6deace94-bd2a-4186-b21c-1049d2243c6c\",\"44-rue-de-matapedia\",\"44 Rue De Matapédia\",45.483733,-75.704144,[2769],[],\"/storage/v1/object/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png\",\"3a125037-e08b-44f7-9cf7-f7e3a0eafb0d\",\"55ad2504-96de-4b79-9d24-e22bf02da011\",\"242-rue-de-la-fregate\",\"242 Rue De La Frégate\",\"242\",45.499078,-75.592223,[2779],[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/3a125037-e08b-44f7-9cf7-f7e3a0eafb0d/20240601_152633.jpg?version=b11aef28-c4bc-4c8c-bbdc-dfe9d8978d7c\",\"7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14\",\"56737503-2d3b-469c-9882-abea28fe3e40\",\"190-rue-henri-matisse\",\"190 Rue Henri-Matisse\",\"190\",45.503035,-75.61233,[2791],[],\"1443\",\"1575\",\"/storage/v1/object/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png\",\"2d0a533c-9260-4068-8808-39525511541a\",\"1aae1a22-e655-49eb-b187-00da94977e96\",[2797],[],\"2025-10-01\",\"/storage/v1/object/public/halfred/buildings/2d0a533c-9260-4068-8808-39525511541a/chatgpt-image-4-mars-2026-154816.png\",\"37dee97a-cb92-4205-afc4-12b81c8d4218\",\"190b161c-5133-4de1-a6ce-86bd96370a85\",\"30-rue-de-matapedia\",\"30 Rue De Matapédia\",45.483178,-75.704054,[2807],[],\"800\",\"/storage/v1/object/public/halfred/buildings/37dee97a-cb92-4205-afc4-12b81c8d4218/chatgpt-image-11-mai-2026-135515.png\",\"bc7470bb-44c7-4ff7-9028-f58f4c8810ae\",\"40-rue-marjorie-d-shackleton\",\"40 Rue Marjorie-D.-Shackleton\",45.428637,-75.803229,[1056],[],\"474 - 877\",\"aecf77df-5d99-4961-b35a-484471d41470\",\"61746f76-2212-43c5-b807-2ba59073c831\",\"917-chemin-vanier\",\"917 Chemin Vanier\",\"Chemin Vanier\",\"917\",45.433525,-75.817458,[2832],[],\"929 Vanier Road\",\"929-vanier-road\",45.434211,-75.817957,\"1320\",\"583 - 958\",\"/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg\",\"40a5efb0-53f5-4050-9f41-1a28066ce459\",\"933-chemin-vanier\",\"933 Chemin Vanier\",\"933\",45.434227,-75.817548,[2832],[],\"583 - 747\",\"6e0fc15a-b20b-40c7-a207-40ad76b4b5ed\",\"659-boulevard-du-plateau\",\"659 Boulevard Du Plateau\",\"659\",45.430018,-75.805289,[1056],[],\"484\",\"1890\",\"29c613cb-e9da-464f-8678-52a3c0176351\",\"Chemin Old Chelsea\",\"95\",[2033],[],\"1971\",\"b2ab947f-f429-4e05-909c-9e41315435dd\",\"34-rue-marjorie-d-shackleton\",\"34 Rue Marjorie-D.-Shackleton\",45.428592,-75.803947,[1056],[],\"2026-09-07\",\"1540\",\"474 - 1104\",\"2b7e9e6b-3260-40d8-8ddf-9ef7629e1b39\",\"905-chemin-vanier\",\"905 Chemin Vanier\",\"905\",45.433141,-75.817803,[2832],[],\"2025-07-01\",\"583 - 959\",\"e46186b7-6b0a-4ea0-aadb-c919ce6b2b80\",\"913-chemin-vanier\",\"913 Chemin Vanier\",\"913\",45.397677,-75.806067,[2832],[],\"3d9df40d-52f9-4494-ab7c-d544807f1181\",\"925-chemin-vanier\",\"925 Chemin Vanier\",\"925\",45.433843,-75.817552,[2832],[],\"1825\",\"11e05b3f-d716-4177-93bb-49e434df913f\",\"655-boulevard-du-plateau\",\"655 Boulevard Du Plateau\",\"655\",45.430134,-75.805309,[1056],[],\"886 - 1029\",\"a39a05d3-ac63-4d14-ac1e-2d2c3e081f1d\",\"929-chemin-vanier\",\"929 Chemin Vanier\",\"929\",[2832],[],\"583 - 1257\",\"edc3ec00-145a-4874-960a-5bd67978d4c4\",\"909-chemin-vanier\",\"909 Chemin Vanier\",\"909\",45.397773,-75.80608,[2832],[],\"28ce71d0-107b-40e3-b4f1-6145f38d33d4\",\"101-chemin-old-chelsea\",\"101 Chemin Old Chelsea\",\"101\",45.503116,-75.796538,[2033],[],\"cac2a87b-0041-4a9b-b934-bcee459364aa\",\"86-rue-de-britannia\",\"86 Rue De Britannia\",45.412334,-75.827403,[2130],[],\"1562\",\"1703\",\"09e7d261-a038-4c50-9a9d-78c63f739fc1\",\"921-chemin-vanier\",\"921 Chemin Vanier\",\"921\",45.433852,-75.8179,[2832],[],{\"_617\":2936,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2937,\"_627\":2938,\"_629\":2820,\"_631\":2939,\"_633\":217,\"_634\":684,\"_635\":2940,\"_637\":2941,\"_639\":25,\"_640\":3525,\"_642\":3526,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":3500,\"_651\":1207,\"_160\":2248,\"_173\":1105,\"_171\":654,\"_166\":2910,\"_656\":36,\"_657\":200,\"_658\":25,\"_659\":885,\"_661\":200,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2927,\"_619\":1043,\"_621\":2115,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2928,\"_627\":2929,\"_629\":699,\"_631\":2451,\"_633\":217,\"_634\":223,\"_635\":2930,\"_637\":2931,\"_639\":25,\"_640\":3523,\"_642\":3524,\"_644\":2123,\"_645\":217,\"_646\":2124,\"_647\":684,\"_648\":2125,\"_649\":2126,\"_12\":3377,\"_651\":1158,\"_160\":2934,\"_173\":780,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2934,\"_672\":-5,\"_673\":2935,\"_674\":-5,\"_675\":-5},{\"_617\":2919,\"_619\":1043,\"_621\":2014,\"_15\":-5,\"_623\":2015,\"_624\":25,\"_625\":1045,\"_260\":2920,\"_627\":2921,\"_629\":2853,\"_631\":2922,\"_633\":2026,\"_634\":684,\"_635\":2923,\"_637\":2924,\"_639\":25,\"_640\":3521,\"_642\":3522,\"_644\":2025,\"_645\":2026,\"_646\":2027,\"_647\":684,\"_648\":2028,\"_649\":2029,\"_12\":3360,\"_651\":2030,\"_160\":2857,\"_173\":1105,\"_171\":654,\"_166\":2032,\"_656\":36,\"_657\":416,\"_658\":25,\"_659\":1546,\"_661\":416,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2857,\"_672\":-5,\"_673\":2031,\"_674\":-5,\"_675\":-5},{\"_617\":2911,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2912,\"_627\":2913,\"_629\":2820,\"_631\":2914,\"_633\":217,\"_634\":684,\"_635\":2915,\"_637\":2916,\"_639\":25,\"_640\":3519,\"_642\":3520,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":3500,\"_651\":1103,\"_160\":2248,\"_173\":1105,\"_171\":654,\"_166\":2910,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":885,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2904,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2905,\"_627\":2906,\"_629\":2820,\"_631\":2907,\"_633\":217,\"_634\":223,\"_635\":2828,\"_637\":2829,\"_639\":25,\"_640\":3517,\"_642\":3518,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":3500,\"_651\":1118,\"_160\":2248,\"_173\":1105,\"_171\":654,\"_166\":2910,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":2316,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2895,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2896,\"_627\":2897,\"_629\":917,\"_631\":2898,\"_633\":217,\"_634\":210,\"_635\":2899,\"_637\":2900,\"_639\":25,\"_640\":3515,\"_642\":3516,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":1078,\"_160\":898,\"_173\":946,\"_171\":654,\"_166\":2903,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":2062,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":2088,\"_674\":-5,\"_675\":-5},{\"_617\":2886,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2887,\"_627\":2888,\"_629\":2820,\"_631\":2889,\"_633\":217,\"_634\":684,\"_635\":2890,\"_637\":2891,\"_639\":25,\"_640\":3513,\"_642\":3514,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":3500,\"_651\":2482,\"_160\":2127,\"_173\":654,\"_171\":654,\"_166\":2841,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":885,\"_661\":736,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2127,\"_672\":-5,\"_673\":2894,\"_674\":-5,\"_675\":-5},{\"_617\":2878,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2879,\"_627\":2880,\"_629\":2820,\"_631\":2881,\"_633\":217,\"_634\":684,\"_635\":2882,\"_637\":2883,\"_639\":25,\"_640\":3511,\"_642\":3512,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":3500,\"_651\":1078,\"_160\":2248,\"_173\":1105,\"_171\":654,\"_166\":2877,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":885,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2868,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2869,\"_627\":2870,\"_629\":2820,\"_631\":2871,\"_633\":217,\"_634\":684,\"_635\":2872,\"_637\":2873,\"_639\":25,\"_640\":3509,\"_642\":3510,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":3500,\"_651\":2876,\"_160\":923,\"_173\":1105,\"_171\":654,\"_166\":2877,\"_656\":36,\"_657\":200,\"_658\":25,\"_659\":885,\"_661\":200,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":2100,\"_674\":-5,\"_675\":-5},{\"_617\":2858,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2859,\"_627\":2860,\"_629\":1048,\"_631\":1034,\"_633\":217,\"_634\":210,\"_635\":2861,\"_637\":2862,\"_639\":25,\"_640\":3507,\"_642\":3508,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":2865,\"_160\":2866,\"_173\":750,\"_171\":654,\"_166\":2867,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":2062,\"_661\":736,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2866,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2852,\"_619\":1043,\"_621\":2014,\"_15\":-5,\"_623\":2015,\"_624\":25,\"_625\":1045,\"_260\":2027,\"_627\":2025,\"_629\":2853,\"_631\":2854,\"_633\":2026,\"_634\":684,\"_635\":2028,\"_637\":2029,\"_639\":25,\"_640\":3505,\"_642\":3506,\"_644\":2025,\"_645\":2026,\"_646\":2027,\"_647\":684,\"_648\":2028,\"_649\":2029,\"_12\":3360,\"_651\":2030,\"_160\":2857,\"_173\":1105,\"_171\":654,\"_166\":2032,\"_656\":36,\"_657\":416,\"_658\":25,\"_659\":1546,\"_661\":416,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2857,\"_672\":-5,\"_673\":2031,\"_674\":-5,\"_675\":-5},{\"_617\":2842,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2843,\"_627\":2844,\"_629\":917,\"_631\":2845,\"_633\":217,\"_634\":210,\"_635\":2846,\"_637\":2847,\"_639\":25,\"_640\":3503,\"_642\":3504,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":1078,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":2850,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":2062,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":2851,\"_674\":-5,\"_675\":-5},{\"_617\":2833,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2834,\"_627\":2835,\"_629\":2820,\"_631\":2836,\"_633\":217,\"_634\":684,\"_635\":2837,\"_637\":2838,\"_639\":25,\"_640\":3501,\"_642\":3502,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":3500,\"_651\":1307,\"_160\":2248,\"_173\":654,\"_171\":654,\"_166\":2841,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":885,\"_661\":736,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2248,\"_672\":-5,\"_673\":1091,\"_674\":-5,\"_675\":-5},{\"_617\":2816,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2818,\"_627\":2819,\"_629\":2820,\"_631\":2821,\"_633\":217,\"_634\":684,\"_635\":2822,\"_637\":2823,\"_639\":25,\"_640\":3498,\"_642\":3499,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":3500,\"_651\":1103,\"_160\":2830,\"_173\":1105,\"_171\":654,\"_166\":2831,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":885,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2830,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2808,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2809,\"_627\":2810,\"_629\":1048,\"_631\":1337,\"_633\":217,\"_634\":210,\"_635\":2811,\"_637\":2812,\"_639\":25,\"_640\":3496,\"_642\":3497,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":2482,\"_160\":2060,\"_173\":1105,\"_171\":654,\"_166\":2815,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":2062,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2060,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2798,\"_619\":620,\"_621\":2799,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2800,\"_627\":2801,\"_629\":772,\"_631\":2230,\"_633\":217,\"_634\":207,\"_635\":2802,\"_637\":2803,\"_639\":25,\"_640\":3494,\"_642\":3495,\"_644\":2801,\"_645\":217,\"_646\":2800,\"_647\":207,\"_648\":2802,\"_649\":2803,\"_12\":2801,\"_651\":1078,\"_160\":779,\"_173\":780,\"_171\":654,\"_166\":2806,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":779,\"_672\":-5,\"_673\":691,\"_674\":-5,\"_675\":-5},{\"_617\":2792,\"_619\":620,\"_621\":2793,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1059,\"_627\":1060,\"_629\":823,\"_631\":1061,\"_633\":217,\"_634\":201,\"_635\":1062,\"_637\":1063,\"_639\":25,\"_640\":3492,\"_642\":3493,\"_644\":1060,\"_645\":217,\"_646\":1059,\"_647\":201,\"_648\":1062,\"_649\":1063,\"_12\":1060,\"_651\":2796,\"_160\":2235,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2235,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2780,\"_619\":620,\"_621\":2781,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2782,\"_627\":2783,\"_629\":2081,\"_631\":2784,\"_633\":217,\"_634\":201,\"_635\":2785,\"_637\":2786,\"_639\":25,\"_640\":3490,\"_642\":3491,\"_644\":2783,\"_645\":217,\"_646\":2782,\"_647\":201,\"_648\":2785,\"_649\":2786,\"_12\":2783,\"_651\":1103,\"_160\":2789,\"_173\":780,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2789,\"_672\":-5,\"_673\":2790,\"_674\":-5,\"_675\":-5},{\"_617\":2770,\"_619\":620,\"_621\":2771,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2772,\"_627\":2773,\"_629\":1524,\"_631\":2774,\"_633\":217,\"_634\":201,\"_635\":2775,\"_637\":2776,\"_639\":25,\"_640\":3488,\"_642\":3489,\"_644\":2773,\"_645\":217,\"_646\":2772,\"_647\":201,\"_648\":2775,\"_649\":2776,\"_12\":2773,\"_651\":1066,\"_160\":2260,\"_173\":780,\"_171\":654,\"_166\":1208,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2260,\"_672\":-5,\"_673\":2011,\"_674\":-5,\"_675\":-5},{\"_617\":2761,\"_619\":620,\"_621\":2762,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2763,\"_627\":2764,\"_629\":772,\"_631\":1858,\"_633\":217,\"_634\":217,\"_635\":2765,\"_637\":2766,\"_639\":25,\"_640\":3486,\"_642\":3487,\"_644\":2764,\"_645\":217,\"_646\":2763,\"_647\":217,\"_648\":2765,\"_649\":2766,\"_12\":2764,\"_651\":2030,\"_160\":855,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":855,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2749,\"_619\":620,\"_621\":2750,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2751,\"_627\":2752,\"_629\":2753,\"_631\":2754,\"_633\":222,\"_634\":222,\"_635\":2755,\"_637\":2756,\"_639\":25,\"_640\":3484,\"_642\":3485,\"_644\":2752,\"_645\":222,\"_646\":2751,\"_647\":222,\"_648\":2755,\"_649\":2756,\"_12\":2752,\"_651\":1103,\"_160\":2759,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2759,\"_672\":-5,\"_673\":1321,\"_674\":-5,\"_675\":-5},{\"_617\":2736,\"_619\":620,\"_621\":2737,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2738,\"_627\":2739,\"_629\":2740,\"_631\":2741,\"_633\":217,\"_634\":215,\"_635\":2742,\"_637\":2743,\"_639\":25,\"_640\":3482,\"_642\":3483,\"_644\":2739,\"_645\":217,\"_646\":2738,\"_647\":215,\"_648\":2742,\"_649\":2743,\"_12\":2739,\"_651\":1158,\"_160\":2746,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2746,\"_672\":-5,\"_673\":2747,\"_674\":-5,\"_675\":-5},{\"_617\":2722,\"_619\":620,\"_621\":2723,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2724,\"_627\":2725,\"_629\":2726,\"_631\":2727,\"_633\":2728,\"_634\":225,\"_635\":2729,\"_637\":2730,\"_639\":25,\"_640\":3480,\"_642\":3481,\"_644\":2725,\"_645\":2728,\"_646\":2724,\"_647\":225,\"_648\":2729,\"_649\":2730,\"_12\":2725,\"_651\":2733,\"_160\":2734,\"_173\":780,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2734,\"_672\":-5,\"_673\":1442,\"_674\":-5,\"_675\":-5},{\"_617\":2709,\"_619\":620,\"_621\":2710,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2711,\"_627\":2712,\"_629\":2713,\"_631\":2714,\"_633\":217,\"_634\":215,\"_635\":2715,\"_637\":2716,\"_639\":25,\"_640\":3478,\"_642\":3479,\"_644\":2712,\"_645\":217,\"_646\":2711,\"_647\":215,\"_648\":2715,\"_649\":2716,\"_12\":2712,\"_651\":1066,\"_160\":2719,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2719,\"_672\":-5,\"_673\":2720,\"_674\":-5,\"_675\":-5},{\"_617\":2699,\"_619\":620,\"_621\":2700,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2701,\"_627\":2702,\"_629\":2067,\"_631\":1237,\"_633\":217,\"_634\":215,\"_635\":2703,\"_637\":2704,\"_639\":25,\"_640\":3476,\"_642\":3477,\"_644\":2702,\"_645\":217,\"_646\":2701,\"_647\":215,\"_648\":2703,\"_649\":2704,\"_12\":2702,\"_651\":2707,\"_160\":2280,\"_173\":1105,\"_171\":654,\"_166\":2074,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":416,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2280,\"_672\":-5,\"_673\":971,\"_674\":-5,\"_675\":-5},{\"_617\":2689,\"_619\":620,\"_621\":2690,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2691,\"_627\":2692,\"_629\":2067,\"_631\":632,\"_633\":217,\"_634\":684,\"_635\":2693,\"_637\":2694,\"_639\":25,\"_640\":3474,\"_642\":3475,\"_644\":2692,\"_645\":217,\"_646\":2691,\"_647\":684,\"_648\":2693,\"_649\":2694,\"_12\":2692,\"_651\":1103,\"_160\":2352,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2352,\"_672\":-5,\"_673\":2697,\"_674\":-5,\"_675\":-5},{\"_617\":2678,\"_619\":620,\"_621\":2679,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2680,\"_627\":2681,\"_629\":1668,\"_631\":2682,\"_633\":217,\"_634\":684,\"_635\":2683,\"_637\":2684,\"_639\":25,\"_640\":3472,\"_642\":3473,\"_644\":2681,\"_645\":217,\"_646\":2680,\"_647\":684,\"_648\":2683,\"_649\":2684,\"_12\":2681,\"_651\":1307,\"_160\":2352,\"_173\":780,\"_171\":654,\"_166\":2687,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":736,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2352,\"_672\":-5,\"_673\":1419,\"_674\":-5,\"_675\":-5},{\"_617\":2667,\"_619\":620,\"_621\":2668,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2669,\"_627\":2670,\"_629\":2615,\"_631\":2118,\"_633\":217,\"_634\":215,\"_635\":2671,\"_637\":2672,\"_639\":25,\"_640\":3470,\"_642\":3471,\"_644\":2670,\"_645\":217,\"_646\":2669,\"_647\":215,\"_648\":2671,\"_649\":2672,\"_12\":2670,\"_651\":1103,\"_160\":2675,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2675,\"_672\":-5,\"_673\":2676,\"_674\":-5,\"_675\":-5},{\"_617\":2657,\"_619\":620,\"_621\":2658,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2659,\"_627\":2660,\"_629\":1524,\"_631\":2206,\"_633\":217,\"_634\":217,\"_635\":2661,\"_637\":2662,\"_639\":25,\"_640\":3468,\"_642\":3469,\"_644\":2660,\"_645\":217,\"_646\":2659,\"_647\":217,\"_648\":2661,\"_649\":2662,\"_12\":2660,\"_651\":2665,\"_160\":2403,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2645,\"_619\":620,\"_621\":2646,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2647,\"_627\":2648,\"_629\":798,\"_631\":2055,\"_633\":217,\"_634\":217,\"_635\":2649,\"_637\":2650,\"_639\":25,\"_640\":3466,\"_642\":3467,\"_644\":2648,\"_645\":217,\"_646\":2647,\"_647\":217,\"_648\":2649,\"_649\":2650,\"_12\":2653,\"_651\":2654,\"_160\":1354,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1354,\"_672\":-5,\"_673\":2655,\"_674\":-5,\"_675\":-5},{\"_617\":2633,\"_619\":620,\"_621\":2634,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2635,\"_627\":2636,\"_629\":965,\"_631\":2637,\"_633\":217,\"_634\":210,\"_635\":2638,\"_637\":2639,\"_639\":25,\"_640\":3464,\"_642\":3465,\"_644\":2636,\"_645\":217,\"_646\":2635,\"_647\":210,\"_648\":2638,\"_649\":2639,\"_12\":2636,\"_651\":1307,\"_160\":2642,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2642,\"_672\":-5,\"_673\":2643,\"_674\":-5,\"_675\":-5},{\"_617\":2623,\"_619\":620,\"_621\":2624,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2625,\"_627\":2626,\"_629\":1448,\"_631\":1327,\"_633\":217,\"_634\":223,\"_635\":2627,\"_637\":2628,\"_639\":25,\"_640\":3462,\"_642\":3463,\"_644\":2626,\"_645\":217,\"_646\":2625,\"_647\":223,\"_648\":2627,\"_649\":2628,\"_12\":2631,\"_651\":1158,\"_160\":2199,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2199,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2611,\"_619\":620,\"_621\":2612,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2613,\"_627\":2614,\"_629\":2615,\"_631\":977,\"_633\":217,\"_634\":684,\"_635\":2616,\"_637\":2617,\"_639\":25,\"_640\":3460,\"_642\":3461,\"_644\":2614,\"_645\":217,\"_646\":2613,\"_647\":684,\"_648\":2616,\"_649\":2617,\"_12\":2620,\"_651\":1103,\"_160\":2621,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2621,\"_672\":-5,\"_673\":1321,\"_674\":-5,\"_675\":-5},{\"_617\":2601,\"_619\":620,\"_621\":2602,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2603,\"_627\":2604,\"_629\":1524,\"_631\":759,\"_633\":217,\"_634\":201,\"_635\":2605,\"_637\":2606,\"_639\":25,\"_640\":3458,\"_642\":3459,\"_644\":2604,\"_645\":217,\"_646\":2603,\"_647\":201,\"_648\":2605,\"_649\":2606,\"_12\":2609,\"_651\":1078,\"_160\":2403,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2590,\"_619\":620,\"_621\":2591,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2592,\"_627\":2593,\"_629\":2152,\"_631\":2594,\"_633\":217,\"_634\":201,\"_635\":2595,\"_637\":2596,\"_639\":25,\"_640\":3456,\"_642\":3457,\"_644\":2593,\"_645\":217,\"_646\":2592,\"_647\":201,\"_648\":2595,\"_649\":2596,\"_12\":2599,\"_651\":1353,\"_160\":2160,\"_173\":654,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2160,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2580,\"_619\":620,\"_621\":2581,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2582,\"_627\":2583,\"_629\":2584,\"_631\":2503,\"_633\":217,\"_634\":217,\"_635\":2585,\"_637\":2586,\"_639\":25,\"_640\":3454,\"_642\":3455,\"_644\":2583,\"_645\":217,\"_646\":2582,\"_647\":217,\"_648\":2585,\"_649\":2586,\"_12\":2583,\"_651\":1103,\"_160\":779,\"_173\":1105,\"_171\":654,\"_166\":1146,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":2391,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":779,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2568,\"_619\":620,\"_621\":2569,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2570,\"_627\":2571,\"_629\":2572,\"_631\":862,\"_633\":217,\"_634\":215,\"_635\":2573,\"_637\":2574,\"_639\":25,\"_640\":3452,\"_642\":3453,\"_644\":2571,\"_645\":217,\"_646\":2570,\"_647\":215,\"_648\":2573,\"_649\":2574,\"_12\":2571,\"_651\":1307,\"_160\":2577,\"_173\":780,\"_171\":654,\"_166\":2578,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":721,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2577,\"_672\":-5,\"_673\":691,\"_674\":-5,\"_675\":-5},{\"_617\":2558,\"_619\":620,\"_621\":2559,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2560,\"_627\":2561,\"_629\":811,\"_631\":2562,\"_633\":217,\"_634\":221,\"_635\":2563,\"_637\":2564,\"_639\":25,\"_640\":3450,\"_642\":3451,\"_644\":2561,\"_645\":217,\"_646\":2560,\"_647\":221,\"_648\":2563,\"_649\":2564,\"_12\":2561,\"_651\":1158,\"_160\":2403,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2546,\"_619\":620,\"_621\":2547,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2548,\"_627\":2549,\"_629\":1807,\"_631\":2550,\"_633\":217,\"_634\":217,\"_635\":2551,\"_637\":2552,\"_639\":25,\"_640\":3448,\"_642\":3449,\"_644\":2549,\"_645\":217,\"_646\":2548,\"_647\":217,\"_648\":2551,\"_649\":2552,\"_12\":2549,\"_651\":2555,\"_160\":2556,\"_173\":780,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":2391,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2556,\"_672\":-5,\"_673\":1956,\"_674\":-5,\"_675\":-5},{\"_617\":2533,\"_619\":620,\"_621\":2534,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2535,\"_627\":2536,\"_629\":2537,\"_631\":2538,\"_633\":217,\"_634\":684,\"_635\":2539,\"_637\":2540,\"_639\":25,\"_640\":3446,\"_642\":3447,\"_644\":2536,\"_645\":217,\"_646\":2535,\"_647\":684,\"_648\":2539,\"_649\":2540,\"_12\":2536,\"_651\":2543,\"_160\":2544,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2544,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2523,\"_619\":620,\"_621\":2524,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2525,\"_627\":2526,\"_629\":1085,\"_631\":2230,\"_633\":217,\"_634\":217,\"_635\":2527,\"_637\":2528,\"_639\":25,\"_640\":3444,\"_642\":3445,\"_644\":2526,\"_645\":217,\"_646\":2525,\"_647\":217,\"_648\":2527,\"_649\":2528,\"_12\":2531,\"_651\":1158,\"_160\":2247,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2247,\"_672\":-5,\"_673\":1406,\"_674\":-5,\"_675\":-5},{\"_617\":2511,\"_619\":620,\"_621\":2512,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2513,\"_627\":2514,\"_629\":965,\"_631\":2055,\"_633\":217,\"_634\":210,\"_635\":2515,\"_637\":2516,\"_639\":25,\"_640\":3442,\"_642\":3443,\"_644\":2514,\"_645\":217,\"_646\":2513,\"_647\":210,\"_648\":2515,\"_649\":2516,\"_12\":2519,\"_651\":1158,\"_160\":2520,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2520,\"_672\":-5,\"_673\":2521,\"_674\":-5,\"_675\":-5},{\"_617\":2498,\"_619\":620,\"_621\":2499,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2500,\"_627\":2501,\"_629\":2502,\"_631\":2503,\"_633\":217,\"_634\":215,\"_635\":2504,\"_637\":2505,\"_639\":25,\"_640\":3440,\"_642\":3441,\"_644\":2501,\"_645\":217,\"_646\":2500,\"_647\":215,\"_648\":2504,\"_649\":2505,\"_12\":2501,\"_651\":2508,\"_160\":765,\"_173\":654,\"_171\":654,\"_166\":2509,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1633,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":765,\"_672\":-5,\"_673\":691,\"_674\":-5,\"_675\":-5},{\"_617\":2486,\"_619\":620,\"_621\":2487,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2488,\"_627\":2489,\"_629\":758,\"_631\":2490,\"_633\":217,\"_634\":217,\"_635\":2491,\"_637\":2492,\"_639\":25,\"_640\":3438,\"_642\":3439,\"_644\":2489,\"_645\":217,\"_646\":2488,\"_647\":217,\"_648\":2491,\"_649\":2492,\"_12\":2495,\"_651\":1307,\"_160\":2496,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2496,\"_672\":-5,\"_673\":1888,\"_674\":-5,\"_675\":-5},{\"_617\":2472,\"_619\":620,\"_621\":2473,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2474,\"_627\":2475,\"_629\":2476,\"_631\":2477,\"_633\":217,\"_634\":215,\"_635\":2478,\"_637\":2479,\"_639\":25,\"_640\":3436,\"_642\":3437,\"_644\":2475,\"_645\":217,\"_646\":2474,\"_647\":215,\"_648\":2478,\"_649\":2479,\"_12\":2475,\"_651\":2482,\"_160\":2483,\"_173\":693,\"_171\":654,\"_166\":2484,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2483,\"_672\":-5,\"_673\":842,\"_674\":-5,\"_675\":-5},{\"_617\":2457,\"_619\":620,\"_621\":2458,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2459,\"_627\":2460,\"_629\":2461,\"_631\":2462,\"_633\":217,\"_634\":217,\"_635\":2463,\"_637\":2464,\"_639\":25,\"_640\":3434,\"_642\":3435,\"_644\":2460,\"_645\":217,\"_646\":2459,\"_647\":217,\"_648\":2463,\"_649\":2464,\"_12\":2467,\"_651\":2468,\"_160\":2469,\"_173\":780,\"_171\":654,\"_166\":1055,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2469,\"_672\":-5,\"_673\":2470,\"_674\":-5,\"_675\":-5},{\"_617\":2447,\"_619\":620,\"_621\":2448,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2449,\"_627\":2450,\"_629\":823,\"_631\":2451,\"_633\":217,\"_634\":217,\"_635\":2452,\"_637\":2453,\"_639\":25,\"_640\":3432,\"_642\":3433,\"_644\":2450,\"_645\":217,\"_646\":2449,\"_647\":217,\"_648\":2452,\"_649\":2453,\"_12\":2450,\"_651\":1066,\"_160\":2235,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2235,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2437,\"_619\":620,\"_621\":2438,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2439,\"_627\":2440,\"_629\":1498,\"_631\":1348,\"_633\":217,\"_634\":684,\"_635\":2441,\"_637\":2442,\"_639\":25,\"_640\":3430,\"_642\":3431,\"_644\":2440,\"_645\":217,\"_646\":2439,\"_647\":684,\"_648\":2441,\"_649\":2442,\"_12\":2440,\"_651\":1307,\"_160\":2445,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2445,\"_672\":-5,\"_673\":945,\"_674\":-5,\"_675\":-5},{\"_617\":2428,\"_619\":620,\"_621\":2429,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2430,\"_627\":2431,\"_629\":1498,\"_631\":1628,\"_633\":217,\"_634\":210,\"_635\":2432,\"_637\":2433,\"_639\":25,\"_640\":3428,\"_642\":3429,\"_644\":2431,\"_645\":217,\"_646\":2430,\"_647\":210,\"_648\":2432,\"_649\":2433,\"_12\":2431,\"_651\":1699,\"_160\":2328,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2328,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2415,\"_619\":620,\"_621\":2416,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2417,\"_627\":2418,\"_629\":713,\"_631\":2419,\"_633\":217,\"_634\":223,\"_635\":2420,\"_637\":2421,\"_639\":25,\"_640\":3426,\"_642\":3427,\"_644\":2418,\"_645\":217,\"_646\":2417,\"_647\":223,\"_648\":2420,\"_649\":2421,\"_12\":2418,\"_651\":1158,\"_160\":2424,\"_173\":780,\"_171\":654,\"_166\":2425,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":2391,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2424,\"_672\":-5,\"_673\":2426,\"_674\":-5,\"_675\":-5},{\"_617\":2405,\"_619\":620,\"_621\":2406,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2407,\"_627\":2408,\"_629\":1524,\"_631\":2409,\"_633\":217,\"_634\":217,\"_635\":2410,\"_637\":2411,\"_639\":25,\"_640\":3424,\"_642\":3425,\"_644\":2408,\"_645\":217,\"_646\":2407,\"_647\":217,\"_648\":2410,\"_649\":2411,\"_12\":2408,\"_651\":1078,\"_160\":2260,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2260,\"_672\":-5,\"_673\":2011,\"_674\":-5,\"_675\":-5},{\"_617\":2393,\"_619\":620,\"_621\":2394,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2395,\"_627\":2396,\"_629\":1524,\"_631\":2397,\"_633\":217,\"_634\":217,\"_635\":2398,\"_637\":2399,\"_639\":25,\"_640\":3422,\"_642\":3423,\"_644\":2396,\"_645\":217,\"_646\":2395,\"_647\":217,\"_648\":2398,\"_649\":2399,\"_12\":2402,\"_651\":1158,\"_160\":2403,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2380,\"_619\":620,\"_621\":2381,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2382,\"_627\":2383,\"_629\":713,\"_631\":2384,\"_633\":217,\"_634\":223,\"_635\":2385,\"_637\":2386,\"_639\":25,\"_640\":3420,\"_642\":3421,\"_644\":2383,\"_645\":217,\"_646\":2382,\"_647\":223,\"_648\":2385,\"_649\":2386,\"_12\":2383,\"_651\":1158,\"_160\":2389,\"_173\":750,\"_171\":654,\"_166\":2390,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":2391,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2389,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2367,\"_619\":620,\"_621\":2368,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2369,\"_627\":2370,\"_629\":2371,\"_631\":2372,\"_633\":217,\"_634\":215,\"_635\":2373,\"_637\":2374,\"_639\":25,\"_640\":3418,\"_642\":3419,\"_644\":2370,\"_645\":217,\"_646\":2369,\"_647\":215,\"_648\":2373,\"_649\":2374,\"_12\":2370,\"_651\":1158,\"_160\":2377,\"_173\":1105,\"_171\":654,\"_166\":2378,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":200,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2377,\"_672\":-5,\"_673\":1462,\"_674\":-5,\"_675\":-5},{\"_617\":2355,\"_619\":620,\"_621\":2356,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2357,\"_627\":2358,\"_629\":2297,\"_631\":2359,\"_633\":217,\"_634\":201,\"_635\":2360,\"_637\":2361,\"_639\":25,\"_640\":3416,\"_642\":3417,\"_644\":2358,\"_645\":217,\"_646\":2357,\"_647\":201,\"_648\":2360,\"_649\":2361,\"_12\":2364,\"_651\":1103,\"_160\":1406,\"_173\":780,\"_171\":654,\"_166\":2129,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1406,\"_672\":-5,\"_673\":2365,\"_674\":-5,\"_675\":-5},{\"_617\":2342,\"_619\":620,\"_621\":2343,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2344,\"_627\":2345,\"_629\":2346,\"_631\":1716,\"_633\":217,\"_634\":684,\"_635\":2347,\"_637\":2348,\"_639\":25,\"_640\":3414,\"_642\":3415,\"_644\":2345,\"_645\":217,\"_646\":2344,\"_647\":684,\"_648\":2347,\"_649\":2348,\"_12\":2345,\"_651\":2351,\"_160\":2352,\"_173\":780,\"_171\":654,\"_166\":2353,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2352,\"_672\":-5,\"_673\":1419,\"_674\":-5,\"_675\":-5},{\"_617\":2330,\"_619\":620,\"_621\":2331,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2332,\"_627\":2333,\"_629\":2297,\"_631\":2334,\"_633\":217,\"_634\":217,\"_635\":2335,\"_637\":2336,\"_639\":25,\"_640\":3412,\"_642\":3413,\"_644\":2333,\"_645\":217,\"_646\":2332,\"_647\":217,\"_648\":2335,\"_649\":2336,\"_12\":2333,\"_651\":1078,\"_160\":2339,\"_173\":780,\"_171\":654,\"_166\":2303,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2339,\"_672\":-5,\"_673\":2340,\"_674\":-5,\"_675\":-5},{\"_617\":2318,\"_619\":620,\"_621\":2319,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2320,\"_627\":2321,\"_629\":1498,\"_631\":2322,\"_633\":217,\"_634\":210,\"_635\":2323,\"_637\":2324,\"_639\":25,\"_640\":3410,\"_642\":3411,\"_644\":2321,\"_645\":217,\"_646\":2320,\"_647\":210,\"_648\":2323,\"_649\":2324,\"_12\":2321,\"_651\":2327,\"_160\":2328,\"_173\":780,\"_171\":654,\"_166\":2099,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2328,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2306,\"_619\":620,\"_621\":2307,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2308,\"_627\":2309,\"_629\":2310,\"_631\":2311,\"_633\":217,\"_634\":217,\"_635\":2312,\"_637\":2313,\"_639\":25,\"_640\":3408,\"_642\":3409,\"_644\":2309,\"_645\":217,\"_646\":2308,\"_647\":217,\"_648\":2312,\"_649\":2313,\"_12\":2309,\"_651\":1158,\"_160\":707,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":2316,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":707,\"_672\":-5,\"_673\":779,\"_674\":-5,\"_675\":-5},{\"_617\":2293,\"_619\":620,\"_621\":2294,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2295,\"_627\":2296,\"_629\":2297,\"_631\":2298,\"_633\":217,\"_634\":201,\"_635\":2299,\"_637\":2300,\"_639\":25,\"_640\":3406,\"_642\":3407,\"_644\":2296,\"_645\":217,\"_646\":2295,\"_647\":201,\"_648\":2299,\"_649\":2300,\"_12\":2296,\"_651\":1103,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":2303,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":2304,\"_674\":-5,\"_675\":-5},{\"_617\":2282,\"_619\":620,\"_621\":2283,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2284,\"_627\":2285,\"_629\":811,\"_631\":2286,\"_633\":222,\"_634\":684,\"_635\":2287,\"_637\":2288,\"_639\":25,\"_640\":3404,\"_642\":3405,\"_644\":2285,\"_645\":222,\"_646\":2284,\"_647\":684,\"_648\":2287,\"_649\":2288,\"_12\":2285,\"_651\":1118,\"_160\":2291,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2291,\"_672\":-5,\"_673\":1442,\"_674\":-5,\"_675\":-5},{\"_617\":2272,\"_619\":620,\"_621\":2273,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2274,\"_627\":2275,\"_629\":1085,\"_631\":1962,\"_633\":217,\"_634\":210,\"_635\":2276,\"_637\":2277,\"_639\":25,\"_640\":3402,\"_642\":3403,\"_644\":2275,\"_645\":217,\"_646\":2274,\"_647\":210,\"_648\":2276,\"_649\":2277,\"_12\":2275,\"_651\":1307,\"_160\":2280,\"_173\":1105,\"_171\":654,\"_166\":751,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":752,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2280,\"_672\":-5,\"_673\":971,\"_674\":-5,\"_675\":-5},{\"_617\":2262,\"_619\":620,\"_621\":2263,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2264,\"_627\":2265,\"_629\":917,\"_631\":2266,\"_633\":217,\"_634\":210,\"_635\":2267,\"_637\":990,\"_639\":25,\"_640\":3400,\"_642\":3401,\"_644\":2265,\"_645\":217,\"_646\":2264,\"_647\":210,\"_648\":2267,\"_649\":990,\"_12\":2265,\"_651\":1078,\"_160\":2270,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2270,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2250,\"_619\":620,\"_621\":2251,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2252,\"_627\":2253,\"_629\":1524,\"_631\":2254,\"_633\":217,\"_634\":217,\"_635\":2255,\"_637\":2256,\"_639\":25,\"_640\":3398,\"_642\":3399,\"_644\":2253,\"_645\":217,\"_646\":2252,\"_647\":217,\"_648\":2255,\"_649\":2256,\"_12\":2259,\"_651\":1066,\"_160\":2260,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2260,\"_672\":-5,\"_673\":2011,\"_674\":-5,\"_675\":-5},{\"_617\":2237,\"_619\":620,\"_621\":2238,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2239,\"_627\":2240,\"_629\":1448,\"_631\":2241,\"_633\":217,\"_634\":223,\"_635\":2242,\"_637\":2243,\"_639\":25,\"_640\":3396,\"_642\":3397,\"_644\":2240,\"_645\":217,\"_646\":2239,\"_647\":223,\"_648\":2242,\"_649\":2243,\"_12\":2246,\"_651\":1158,\"_160\":2247,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2247,\"_672\":-5,\"_673\":2248,\"_674\":-5,\"_675\":-5},{\"_617\":2226,\"_619\":620,\"_621\":2227,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2228,\"_627\":2229,\"_629\":743,\"_631\":2230,\"_633\":217,\"_634\":217,\"_635\":2231,\"_637\":2232,\"_639\":25,\"_640\":3394,\"_642\":3395,\"_644\":2229,\"_645\":217,\"_646\":2228,\"_647\":217,\"_648\":2231,\"_649\":2232,\"_12\":1967,\"_651\":1103,\"_160\":2235,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2235,\"_672\":-5,\"_673\":982,\"_674\":-5,\"_675\":-5},{\"_617\":2215,\"_619\":620,\"_621\":2216,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2217,\"_627\":2218,\"_629\":1085,\"_631\":2219,\"_633\":217,\"_634\":210,\"_635\":2220,\"_637\":2221,\"_639\":25,\"_640\":3392,\"_642\":3393,\"_644\":2218,\"_645\":217,\"_646\":2217,\"_647\":210,\"_648\":2220,\"_649\":2221,\"_12\":2218,\"_651\":1078,\"_160\":2224,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2224,\"_672\":-5,\"_673\":805,\"_674\":-5,\"_675\":-5},{\"_617\":2202,\"_619\":620,\"_621\":2203,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2204,\"_627\":2205,\"_629\":1085,\"_631\":2206,\"_633\":217,\"_634\":210,\"_635\":2207,\"_637\":2208,\"_639\":25,\"_640\":3390,\"_642\":3391,\"_644\":2205,\"_645\":217,\"_646\":2204,\"_647\":210,\"_648\":2207,\"_649\":2208,\"_12\":2211,\"_651\":1078,\"_160\":2212,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2212,\"_672\":-5,\"_673\":2213,\"_674\":-5,\"_675\":-5},{\"_617\":2187,\"_619\":620,\"_621\":2188,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2189,\"_627\":2190,\"_629\":2191,\"_631\":2192,\"_633\":217,\"_634\":217,\"_635\":2193,\"_637\":2194,\"_639\":25,\"_640\":3388,\"_642\":3389,\"_644\":2190,\"_645\":217,\"_646\":2189,\"_647\":217,\"_648\":2193,\"_649\":2194,\"_12\":2197,\"_651\":2198,\"_160\":2199,\"_173\":750,\"_171\":1105,\"_166\":2200,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2199,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2175,\"_619\":620,\"_621\":2176,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2177,\"_627\":2178,\"_629\":835,\"_631\":2179,\"_633\":217,\"_634\":684,\"_635\":2180,\"_637\":2181,\"_639\":25,\"_640\":3386,\"_642\":3387,\"_644\":2178,\"_645\":217,\"_646\":2177,\"_647\":684,\"_648\":2180,\"_649\":2181,\"_12\":2184,\"_651\":2030,\"_160\":2185,\"_173\":780,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2185,\"_672\":-5,\"_673\":841,\"_674\":-5,\"_675\":-5},{\"_617\":2162,\"_619\":620,\"_621\":2163,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2164,\"_627\":2165,\"_629\":953,\"_631\":2166,\"_633\":217,\"_634\":223,\"_635\":2167,\"_637\":2168,\"_639\":25,\"_640\":3384,\"_642\":3385,\"_644\":2165,\"_645\":217,\"_646\":2164,\"_647\":223,\"_648\":2167,\"_649\":2168,\"_12\":2171,\"_651\":2172,\"_160\":2173,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2173,\"_672\":-5,\"_673\":959,\"_674\":-5,\"_675\":-5},{\"_617\":2148,\"_619\":620,\"_621\":2149,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2150,\"_627\":2151,\"_629\":2152,\"_631\":2153,\"_633\":217,\"_634\":201,\"_635\":2154,\"_637\":2155,\"_639\":25,\"_640\":3382,\"_642\":3383,\"_644\":2151,\"_645\":217,\"_646\":2150,\"_647\":201,\"_648\":2154,\"_649\":2155,\"_12\":2158,\"_651\":2159,\"_160\":2160,\"_173\":654,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2160,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2140,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2141,\"_627\":2142,\"_629\":1048,\"_631\":2143,\"_633\":217,\"_634\":210,\"_635\":2144,\"_637\":2145,\"_639\":25,\"_640\":3380,\"_642\":3381,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":778,\"_160\":1406,\"_173\":780,\"_171\":654,\"_166\":1055,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1406,\"_672\":-5,\"_673\":2139,\"_674\":-5,\"_675\":-5},{\"_617\":2131,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2132,\"_627\":2133,\"_629\":1048,\"_631\":744,\"_633\":217,\"_634\":210,\"_635\":2134,\"_637\":2135,\"_639\":25,\"_640\":3378,\"_642\":3379,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":778,\"_160\":945,\"_173\":780,\"_171\":654,\"_166\":2138,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":208,\"_661\":220,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":945,\"_672\":-5,\"_673\":2139,\"_674\":-5,\"_675\":-5},{\"_617\":2114,\"_619\":1043,\"_621\":2115,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2116,\"_627\":2117,\"_629\":1822,\"_631\":2118,\"_633\":217,\"_634\":201,\"_635\":2119,\"_637\":2120,\"_639\":25,\"_640\":3375,\"_642\":3376,\"_644\":2123,\"_645\":217,\"_646\":2124,\"_647\":684,\"_648\":2125,\"_649\":2126,\"_12\":3377,\"_651\":778,\"_160\":2127,\"_173\":780,\"_171\":654,\"_166\":2128,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2127,\"_672\":-5,\"_673\":2129,\"_674\":-5,\"_675\":-5},{\"_617\":2102,\"_619\":620,\"_621\":2103,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2104,\"_627\":2105,\"_629\":1614,\"_631\":2106,\"_633\":217,\"_634\":210,\"_635\":2107,\"_637\":2108,\"_639\":25,\"_640\":3373,\"_642\":3374,\"_644\":2105,\"_645\":217,\"_646\":2104,\"_647\":210,\"_648\":2107,\"_649\":2108,\"_12\":2105,\"_651\":690,\"_160\":2111,\"_173\":692,\"_171\":654,\"_166\":691,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2111,\"_672\":-5,\"_673\":2112,\"_674\":-5,\"_675\":-5},{\"_617\":2090,\"_619\":620,\"_621\":2091,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2092,\"_627\":2093,\"_629\":1498,\"_631\":2094,\"_633\":217,\"_634\":210,\"_635\":2095,\"_637\":2096,\"_639\":25,\"_640\":3371,\"_642\":3372,\"_644\":2093,\"_645\":217,\"_646\":2092,\"_647\":210,\"_648\":2095,\"_649\":2096,\"_12\":2093,\"_651\":690,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":2099,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":2100,\"_674\":-5,\"_675\":-5},{\"_617\":2077,\"_619\":620,\"_621\":2078,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2079,\"_627\":2080,\"_629\":2081,\"_631\":2082,\"_633\":217,\"_634\":201,\"_635\":2083,\"_637\":2084,\"_639\":25,\"_640\":3369,\"_642\":3370,\"_644\":2080,\"_645\":217,\"_646\":2079,\"_647\":201,\"_648\":2083,\"_649\":2084,\"_12\":2087,\"_651\":778,\"_160\":805,\"_173\":692,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":2088,\"_674\":-5,\"_675\":-5},{\"_617\":2063,\"_619\":620,\"_621\":2064,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2065,\"_627\":2066,\"_629\":2067,\"_631\":2068,\"_633\":217,\"_634\":684,\"_635\":2069,\"_637\":2070,\"_639\":25,\"_640\":3367,\"_642\":3368,\"_644\":2066,\"_645\":217,\"_646\":2065,\"_647\":684,\"_648\":2069,\"_649\":2070,\"_12\":2066,\"_651\":690,\"_160\":2073,\"_173\":1105,\"_171\":654,\"_166\":2074,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2073,\"_672\":-5,\"_673\":2075,\"_674\":-5,\"_675\":-5},{\"_617\":2052,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2053,\"_627\":2054,\"_629\":1048,\"_631\":2055,\"_633\":217,\"_634\":210,\"_635\":2056,\"_637\":2057,\"_639\":25,\"_640\":3365,\"_642\":3366,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":1078,\"_160\":2060,\"_173\":750,\"_171\":654,\"_166\":2061,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":2062,\"_661\":736,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2060,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2043,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2044,\"_627\":2045,\"_629\":1048,\"_631\":877,\"_633\":217,\"_634\":209,\"_635\":2046,\"_637\":2047,\"_639\":25,\"_640\":3363,\"_642\":3364,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":1307,\"_160\":2050,\"_173\":1105,\"_171\":654,\"_166\":2051,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":416,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2050,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2034,\"_619\":1043,\"_621\":2014,\"_15\":-5,\"_623\":2015,\"_624\":25,\"_625\":1045,\"_260\":2035,\"_627\":2036,\"_629\":2037,\"_631\":2038,\"_633\":2026,\"_634\":684,\"_635\":2039,\"_637\":2040,\"_639\":25,\"_640\":3361,\"_642\":3362,\"_644\":2025,\"_645\":2026,\"_646\":2027,\"_647\":684,\"_648\":2028,\"_649\":2029,\"_12\":3360,\"_651\":1144,\"_160\":2031,\"_173\":1105,\"_171\":654,\"_166\":2032,\"_656\":36,\"_657\":1633,\"_658\":25,\"_659\":1546,\"_661\":1633,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2031,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2013,\"_619\":1043,\"_621\":2014,\"_15\":-5,\"_623\":2015,\"_624\":25,\"_625\":1045,\"_260\":2016,\"_627\":2017,\"_629\":2018,\"_631\":2019,\"_633\":2020,\"_634\":684,\"_635\":2021,\"_637\":2022,\"_639\":25,\"_640\":3358,\"_642\":3359,\"_644\":2025,\"_645\":2026,\"_646\":2027,\"_647\":684,\"_648\":2028,\"_649\":2029,\"_12\":3360,\"_651\":2030,\"_160\":2031,\"_173\":1105,\"_171\":654,\"_166\":2032,\"_656\":36,\"_657\":208,\"_658\":25,\"_659\":1546,\"_661\":208,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2031,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2002,\"_619\":620,\"_621\":2003,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2004,\"_627\":2005,\"_629\":2006,\"_631\":1823,\"_633\":217,\"_634\":215,\"_635\":2007,\"_637\":2008,\"_639\":25,\"_640\":3356,\"_642\":3357,\"_644\":2005,\"_645\":217,\"_646\":2004,\"_647\":215,\"_648\":2007,\"_649\":2008,\"_12\":2005,\"_651\":1078,\"_160\":2011,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2011,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1989,\"_619\":620,\"_621\":1990,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1991,\"_627\":1992,\"_629\":1176,\"_631\":1993,\"_633\":217,\"_634\":215,\"_635\":1994,\"_637\":1995,\"_639\":25,\"_640\":3354,\"_642\":3355,\"_644\":1992,\"_645\":217,\"_646\":1991,\"_647\":215,\"_648\":1994,\"_649\":1995,\"_12\":1992,\"_651\":1158,\"_160\":1183,\"_173\":1998,\"_171\":654,\"_166\":1999,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":2000,\"_661\":736,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1183,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1978,\"_619\":620,\"_621\":1979,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1980,\"_627\":1981,\"_629\":965,\"_631\":1982,\"_633\":217,\"_634\":210,\"_635\":1983,\"_637\":1984,\"_639\":25,\"_640\":3352,\"_642\":3353,\"_644\":1981,\"_645\":217,\"_646\":1980,\"_647\":210,\"_648\":1983,\"_649\":1984,\"_12\":1987,\"_651\":1078,\"_160\":805,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1969,\"_619\":620,\"_621\":1970,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1971,\"_627\":1972,\"_629\":1883,\"_631\":1795,\"_633\":217,\"_634\":217,\"_635\":1973,\"_637\":1974,\"_639\":25,\"_640\":3350,\"_642\":3351,\"_644\":1972,\"_645\":217,\"_646\":1971,\"_647\":217,\"_648\":1973,\"_649\":1974,\"_12\":1972,\"_651\":1078,\"_160\":1067,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":1633,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1067,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1958,\"_619\":620,\"_621\":1959,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1960,\"_627\":1961,\"_629\":743,\"_631\":1962,\"_633\":217,\"_634\":684,\"_635\":1963,\"_637\":1964,\"_639\":25,\"_640\":3348,\"_642\":3349,\"_644\":1961,\"_645\":217,\"_646\":1960,\"_647\":684,\"_648\":1963,\"_649\":1964,\"_12\":1967,\"_651\":1207,\"_160\":749,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":749,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1947,\"_619\":620,\"_621\":1948,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1949,\"_627\":1950,\"_629\":953,\"_631\":1951,\"_633\":217,\"_634\":223,\"_635\":1952,\"_637\":1953,\"_639\":25,\"_640\":3346,\"_642\":3347,\"_644\":1950,\"_645\":217,\"_646\":1949,\"_647\":223,\"_648\":1952,\"_649\":1953,\"_12\":1950,\"_651\":1078,\"_160\":1956,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1956,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1936,\"_619\":620,\"_621\":1937,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1938,\"_627\":1939,\"_629\":1940,\"_631\":1907,\"_633\":217,\"_634\":217,\"_635\":1941,\"_637\":1942,\"_639\":25,\"_640\":3344,\"_642\":3345,\"_644\":1939,\"_645\":217,\"_646\":1938,\"_647\":217,\"_648\":1941,\"_649\":1942,\"_12\":1939,\"_651\":1945,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1923,\"_619\":620,\"_621\":1924,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1925,\"_627\":1926,\"_629\":1807,\"_631\":1927,\"_633\":217,\"_634\":207,\"_635\":1928,\"_637\":1929,\"_639\":25,\"_640\":3342,\"_642\":3343,\"_644\":1926,\"_645\":217,\"_646\":1925,\"_647\":207,\"_648\":1928,\"_649\":1929,\"_12\":1926,\"_651\":1078,\"_160\":1932,\"_173\":780,\"_171\":654,\"_166\":1933,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":1934,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1932,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1914,\"_619\":620,\"_621\":1915,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1916,\"_627\":1917,\"_629\":1085,\"_631\":744,\"_633\":217,\"_634\":210,\"_635\":1918,\"_637\":1919,\"_639\":25,\"_640\":3340,\"_642\":3341,\"_644\":1917,\"_645\":217,\"_646\":1916,\"_647\":210,\"_648\":1918,\"_649\":1919,\"_12\":1917,\"_651\":1066,\"_160\":1380,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1380,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1903,\"_619\":620,\"_621\":1904,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1905,\"_627\":1906,\"_629\":743,\"_631\":1907,\"_633\":217,\"_634\":217,\"_635\":1908,\"_637\":1909,\"_639\":25,\"_640\":3338,\"_642\":3339,\"_644\":1906,\"_645\":217,\"_646\":1905,\"_647\":217,\"_648\":1908,\"_649\":1909,\"_12\":1912,\"_651\":1078,\"_160\":1577,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1577,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1891,\"_619\":620,\"_621\":1892,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1893,\"_627\":1894,\"_629\":1895,\"_631\":1896,\"_633\":203,\"_634\":203,\"_635\":1897,\"_637\":1898,\"_639\":25,\"_640\":3336,\"_642\":3337,\"_644\":1894,\"_645\":203,\"_646\":1893,\"_647\":203,\"_648\":1897,\"_649\":1898,\"_12\":1894,\"_651\":1901,\"_160\":1462,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1462,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1879,\"_619\":620,\"_621\":1880,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1881,\"_627\":1882,\"_629\":1883,\"_631\":988,\"_633\":217,\"_634\":214,\"_635\":1884,\"_637\":1885,\"_639\":25,\"_640\":3334,\"_642\":3335,\"_644\":1882,\"_645\":217,\"_646\":1881,\"_647\":214,\"_648\":1884,\"_649\":1885,\"_12\":1882,\"_651\":1078,\"_160\":1888,\"_173\":654,\"_171\":654,\"_166\":1889,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1888,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1866,\"_619\":620,\"_621\":1867,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1868,\"_627\":1869,\"_629\":1870,\"_631\":1871,\"_633\":217,\"_634\":215,\"_635\":1872,\"_637\":1873,\"_639\":25,\"_640\":3332,\"_642\":3333,\"_644\":1869,\"_645\":217,\"_646\":1868,\"_647\":215,\"_648\":1872,\"_649\":1873,\"_12\":1876,\"_651\":1800,\"_160\":1877,\"_173\":692,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1877,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1854,\"_619\":620,\"_621\":1855,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1856,\"_627\":1857,\"_629\":743,\"_631\":1858,\"_633\":217,\"_634\":217,\"_635\":1859,\"_637\":1860,\"_639\":25,\"_640\":3330,\"_642\":3331,\"_644\":1857,\"_645\":217,\"_646\":1856,\"_647\":217,\"_648\":1859,\"_649\":1860,\"_12\":1863,\"_651\":1078,\"_160\":1864,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1864,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1844,\"_619\":620,\"_621\":1845,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1846,\"_627\":1847,\"_629\":1524,\"_631\":1848,\"_633\":217,\"_634\":201,\"_635\":1849,\"_637\":1850,\"_639\":25,\"_640\":3328,\"_642\":3329,\"_644\":1847,\"_645\":217,\"_646\":1846,\"_647\":201,\"_648\":1849,\"_649\":1850,\"_12\":1847,\"_651\":1307,\"_160\":1005,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1005,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1831,\"_619\":620,\"_621\":1832,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1833,\"_627\":1834,\"_629\":1835,\"_631\":1836,\"_633\":217,\"_634\":684,\"_635\":1837,\"_637\":1838,\"_639\":25,\"_640\":3326,\"_642\":3327,\"_644\":1834,\"_645\":217,\"_646\":1833,\"_647\":684,\"_648\":1837,\"_649\":1838,\"_12\":1841,\"_651\":1103,\"_160\":1842,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1842,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1818,\"_619\":620,\"_621\":1819,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1820,\"_627\":1821,\"_629\":1822,\"_631\":1823,\"_633\":217,\"_634\":684,\"_635\":1824,\"_637\":1825,\"_639\":25,\"_640\":3324,\"_642\":3325,\"_644\":1821,\"_645\":217,\"_646\":1820,\"_647\":684,\"_648\":1824,\"_649\":1825,\"_12\":1821,\"_651\":1158,\"_160\":1828,\"_173\":692,\"_171\":654,\"_166\":1829,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1828,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1803,\"_619\":620,\"_621\":1804,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1805,\"_627\":1806,\"_629\":1807,\"_631\":1808,\"_633\":217,\"_634\":207,\"_635\":1809,\"_637\":1810,\"_639\":25,\"_640\":3322,\"_642\":3323,\"_644\":1806,\"_645\":217,\"_646\":1805,\"_647\":207,\"_648\":1809,\"_649\":1810,\"_12\":1813,\"_651\":1814,\"_160\":1815,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1816,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1815,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1791,\"_619\":620,\"_621\":1792,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1793,\"_627\":1794,\"_629\":713,\"_631\":1795,\"_633\":217,\"_634\":684,\"_635\":1796,\"_637\":1797,\"_639\":25,\"_640\":3320,\"_642\":3321,\"_644\":1794,\"_645\":217,\"_646\":1793,\"_647\":684,\"_648\":1796,\"_649\":1797,\"_12\":1794,\"_651\":1800,\"_160\":1653,\"_173\":946,\"_171\":654,\"_166\":1801,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":200,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1653,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1780,\"_619\":620,\"_621\":1781,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1782,\"_627\":1783,\"_629\":891,\"_631\":1784,\"_633\":217,\"_634\":684,\"_635\":1785,\"_637\":1786,\"_639\":25,\"_640\":3318,\"_642\":3319,\"_644\":1783,\"_645\":217,\"_646\":1782,\"_647\":684,\"_648\":1785,\"_649\":1786,\"_12\":1789,\"_651\":1103,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1768,\"_619\":620,\"_621\":1769,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1770,\"_627\":1771,\"_629\":1772,\"_631\":1400,\"_633\":217,\"_634\":217,\"_635\":1773,\"_637\":1774,\"_639\":25,\"_640\":3316,\"_642\":3317,\"_644\":1771,\"_645\":217,\"_646\":1770,\"_647\":217,\"_648\":1773,\"_649\":1774,\"_12\":1777,\"_651\":1103,\"_160\":691,\"_173\":946,\"_171\":654,\"_166\":1778,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":691,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1757,\"_619\":620,\"_621\":1758,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1759,\"_627\":1760,\"_629\":1761,\"_631\":780,\"_633\":217,\"_634\":684,\"_635\":1762,\"_637\":1763,\"_639\":25,\"_640\":3314,\"_642\":3315,\"_644\":1760,\"_645\":217,\"_646\":1759,\"_647\":684,\"_648\":1762,\"_649\":1763,\"_12\":1760,\"_651\":1766,\"_160\":720,\"_173\":1105,\"_171\":654,\"_166\":1430,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":752,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1746,\"_619\":620,\"_621\":1747,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1748,\"_627\":1749,\"_629\":1627,\"_631\":1750,\"_633\":217,\"_634\":215,\"_635\":1751,\"_637\":1752,\"_639\":25,\"_640\":3312,\"_642\":3313,\"_644\":1749,\"_645\":217,\"_646\":1748,\"_647\":215,\"_648\":1751,\"_649\":1752,\"_12\":1755,\"_651\":1078,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1735,\"_619\":620,\"_621\":1736,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1737,\"_627\":1738,\"_629\":1461,\"_631\":1739,\"_633\":217,\"_634\":217,\"_635\":1740,\"_637\":1741,\"_639\":25,\"_640\":3310,\"_642\":3311,\"_644\":1738,\"_645\":217,\"_646\":1737,\"_647\":217,\"_648\":1740,\"_649\":1741,\"_12\":1738,\"_651\":1158,\"_160\":1067,\"_173\":654,\"_171\":654,\"_166\":1744,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":736,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1067,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1722,\"_619\":620,\"_621\":1723,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1724,\"_627\":1725,\"_629\":1137,\"_631\":1726,\"_633\":217,\"_634\":199,\"_635\":1727,\"_637\":1728,\"_639\":25,\"_640\":3308,\"_642\":3309,\"_644\":1725,\"_645\":217,\"_646\":1724,\"_647\":199,\"_648\":1727,\"_649\":1728,\"_12\":1731,\"_651\":1732,\"_160\":1733,\"_173\":692,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1733,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1712,\"_619\":620,\"_621\":1713,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1714,\"_627\":1715,\"_629\":1448,\"_631\":1716,\"_633\":217,\"_634\":684,\"_635\":1717,\"_637\":1718,\"_639\":25,\"_640\":3306,\"_642\":3307,\"_644\":1715,\"_645\":217,\"_646\":1714,\"_647\":684,\"_648\":1717,\"_649\":1718,\"_12\":1715,\"_651\":1066,\"_160\":720,\"_173\":654,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1702,\"_619\":620,\"_621\":1703,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1704,\"_627\":1705,\"_629\":891,\"_631\":1706,\"_633\":217,\"_634\":219,\"_635\":1707,\"_637\":1708,\"_639\":25,\"_640\":3304,\"_642\":3305,\"_644\":1705,\"_645\":217,\"_646\":1704,\"_647\":219,\"_648\":1707,\"_649\":1708,\"_12\":1705,\"_651\":1158,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1690,\"_619\":620,\"_621\":1691,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1692,\"_627\":1693,\"_629\":891,\"_631\":1694,\"_633\":217,\"_634\":217,\"_635\":1695,\"_637\":1696,\"_639\":25,\"_640\":3302,\"_642\":3303,\"_644\":1693,\"_645\":217,\"_646\":1692,\"_647\":217,\"_648\":1695,\"_649\":1696,\"_12\":1693,\"_651\":1699,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":1700,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1677,\"_619\":620,\"_621\":1678,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1679,\"_627\":1680,\"_629\":1137,\"_631\":1681,\"_633\":217,\"_634\":199,\"_635\":1682,\"_637\":1683,\"_639\":25,\"_640\":3300,\"_642\":3301,\"_644\":1680,\"_645\":217,\"_646\":1679,\"_647\":199,\"_648\":1682,\"_649\":1683,\"_12\":1686,\"_651\":1687,\"_160\":1688,\"_173\":780,\"_171\":654,\"_166\":884,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1688,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1664,\"_619\":620,\"_621\":1665,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1666,\"_627\":1667,\"_629\":1668,\"_631\":1669,\"_633\":217,\"_634\":215,\"_635\":1670,\"_637\":1671,\"_639\":25,\"_640\":3298,\"_642\":3299,\"_644\":1667,\"_645\":217,\"_646\":1666,\"_647\":215,\"_648\":1670,\"_649\":1671,\"_12\":1667,\"_651\":1103,\"_160\":1674,\"_173\":780,\"_171\":654,\"_166\":1675,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":208,\"_661\":752,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1674,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1655,\"_619\":620,\"_621\":1656,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1657,\"_627\":1658,\"_629\":891,\"_631\":1577,\"_633\":217,\"_634\":219,\"_635\":1659,\"_637\":1660,\"_639\":25,\"_640\":3296,\"_642\":3297,\"_644\":1658,\"_645\":217,\"_646\":1657,\"_647\":219,\"_648\":1659,\"_649\":1660,\"_12\":1658,\"_651\":1307,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1645,\"_619\":620,\"_621\":1646,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1647,\"_627\":1648,\"_629\":1498,\"_631\":1400,\"_633\":217,\"_634\":210,\"_635\":1649,\"_637\":1650,\"_639\":25,\"_640\":3294,\"_642\":3295,\"_644\":1648,\"_645\":217,\"_646\":1647,\"_647\":210,\"_648\":1649,\"_649\":1650,\"_12\":1648,\"_651\":1066,\"_160\":1653,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1653,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1635,\"_619\":620,\"_621\":1636,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1637,\"_627\":1638,\"_629\":758,\"_631\":1639,\"_633\":217,\"_634\":213,\"_635\":1640,\"_637\":1641,\"_639\":25,\"_640\":3292,\"_642\":3293,\"_644\":1638,\"_645\":217,\"_646\":1637,\"_647\":213,\"_648\":1640,\"_649\":1641,\"_12\":1638,\"_651\":1543,\"_160\":1544,\"_173\":780,\"_171\":654,\"_166\":1545,\"_656\":36,\"_657\":208,\"_658\":25,\"_659\":1546,\"_661\":208,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1544,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1623,\"_619\":620,\"_621\":1624,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1625,\"_627\":1626,\"_629\":1627,\"_631\":1628,\"_633\":217,\"_634\":215,\"_635\":1629,\"_637\":1630,\"_639\":25,\"_640\":3290,\"_642\":3291,\"_644\":1626,\"_645\":217,\"_646\":1625,\"_647\":215,\"_648\":1629,\"_649\":1630,\"_12\":1626,\"_651\":1078,\"_160\":707,\"_173\":654,\"_171\":654,\"_166\":1492,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1633,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":707,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1610,\"_619\":620,\"_621\":1611,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1612,\"_627\":1613,\"_629\":1614,\"_631\":1615,\"_633\":217,\"_634\":684,\"_635\":1616,\"_637\":1617,\"_639\":25,\"_640\":3288,\"_642\":3289,\"_644\":1613,\"_645\":217,\"_646\":1612,\"_647\":684,\"_648\":1616,\"_649\":1617,\"_12\":1613,\"_651\":1066,\"_160\":1620,\"_173\":750,\"_171\":1105,\"_166\":1621,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1620,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1599,\"_619\":620,\"_621\":1600,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1601,\"_627\":1602,\"_629\":1085,\"_631\":1603,\"_633\":217,\"_634\":210,\"_635\":1604,\"_637\":1605,\"_639\":25,\"_640\":3286,\"_642\":3287,\"_644\":1602,\"_645\":217,\"_646\":1601,\"_647\":210,\"_648\":1604,\"_649\":1605,\"_12\":1602,\"_651\":1078,\"_160\":1608,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1608,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1589,\"_619\":620,\"_621\":1590,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1591,\"_627\":1592,\"_629\":1498,\"_631\":1593,\"_633\":217,\"_634\":684,\"_635\":1594,\"_637\":1595,\"_639\":25,\"_640\":3284,\"_642\":3285,\"_644\":1592,\"_645\":217,\"_646\":1591,\"_647\":684,\"_648\":1594,\"_649\":1595,\"_12\":1592,\"_651\":1078,\"_160\":720,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1579,\"_619\":620,\"_621\":1580,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1581,\"_627\":1582,\"_629\":743,\"_631\":877,\"_633\":217,\"_634\":223,\"_635\":1583,\"_637\":1584,\"_639\":25,\"_640\":3282,\"_642\":3283,\"_644\":1582,\"_645\":217,\"_646\":1581,\"_647\":223,\"_648\":1583,\"_649\":1584,\"_12\":1582,\"_651\":1587,\"_160\":749,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":749,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1568,\"_619\":620,\"_621\":1569,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1570,\"_627\":1571,\"_629\":743,\"_631\":1572,\"_633\":217,\"_634\":223,\"_635\":1573,\"_637\":1574,\"_639\":25,\"_640\":3280,\"_642\":3281,\"_644\":1571,\"_645\":217,\"_646\":1570,\"_647\":223,\"_648\":1573,\"_649\":1574,\"_12\":1454,\"_651\":1078,\"_160\":1577,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1577,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1559,\"_619\":620,\"_621\":1560,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1561,\"_627\":1562,\"_629\":630,\"_631\":862,\"_633\":217,\"_634\":199,\"_635\":1563,\"_637\":1564,\"_639\":25,\"_640\":3278,\"_642\":3279,\"_644\":1562,\"_645\":217,\"_646\":1561,\"_647\":199,\"_648\":1563,\"_649\":1564,\"_12\":1562,\"_651\":1418,\"_160\":691,\"_173\":780,\"_171\":654,\"_166\":884,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":660,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":691,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1548,\"_619\":620,\"_621\":1549,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1550,\"_627\":1551,\"_629\":1552,\"_631\":1553,\"_633\":217,\"_634\":223,\"_635\":1554,\"_637\":1555,\"_639\":25,\"_640\":3276,\"_642\":3277,\"_644\":1551,\"_645\":217,\"_646\":1550,\"_647\":223,\"_648\":1554,\"_649\":1555,\"_12\":1551,\"_651\":1158,\"_160\":959,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":959,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1533,\"_619\":620,\"_621\":1534,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1535,\"_627\":1536,\"_629\":1537,\"_631\":1538,\"_633\":217,\"_634\":213,\"_635\":1539,\"_637\":1540,\"_639\":25,\"_640\":3274,\"_642\":3275,\"_644\":1536,\"_645\":217,\"_646\":1535,\"_647\":213,\"_648\":1539,\"_649\":1540,\"_12\":1536,\"_651\":1543,\"_160\":1544,\"_173\":780,\"_171\":654,\"_166\":1545,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":1546,\"_661\":752,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1544,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1520,\"_619\":620,\"_621\":1521,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1522,\"_627\":1523,\"_629\":1524,\"_631\":1525,\"_633\":217,\"_634\":201,\"_635\":1526,\"_637\":1527,\"_639\":25,\"_640\":3272,\"_642\":3273,\"_644\":1523,\"_645\":217,\"_646\":1522,\"_647\":201,\"_648\":1526,\"_649\":1527,\"_12\":1523,\"_651\":1530,\"_160\":1531,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1531,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1505,\"_619\":620,\"_621\":1506,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1507,\"_627\":1508,\"_629\":861,\"_631\":1509,\"_633\":217,\"_634\":207,\"_635\":1510,\"_637\":1511,\"_639\":25,\"_640\":3270,\"_642\":3271,\"_644\":1508,\"_645\":217,\"_646\":1507,\"_647\":207,\"_648\":1510,\"_649\":1511,\"_12\":1514,\"_651\":1515,\"_160\":1516,\"_173\":1105,\"_171\":654,\"_166\":1517,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":1518,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1516,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1494,\"_619\":620,\"_621\":1495,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1496,\"_627\":1497,\"_629\":1498,\"_631\":773,\"_633\":217,\"_634\":210,\"_635\":1499,\"_637\":1500,\"_639\":25,\"_640\":3268,\"_642\":3269,\"_644\":1497,\"_645\":217,\"_646\":1496,\"_647\":210,\"_648\":1499,\"_649\":1500,\"_12\":1497,\"_651\":1158,\"_160\":1503,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1503,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1482,\"_619\":620,\"_621\":1483,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1484,\"_627\":1485,\"_629\":1486,\"_631\":799,\"_633\":217,\"_634\":215,\"_635\":1487,\"_637\":1488,\"_639\":25,\"_640\":3266,\"_642\":3267,\"_644\":1485,\"_645\":217,\"_646\":1484,\"_647\":215,\"_648\":1487,\"_649\":1488,\"_12\":1485,\"_651\":1491,\"_160\":841,\"_173\":1105,\"_171\":654,\"_166\":1492,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":416,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1470,\"_619\":620,\"_621\":1471,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1472,\"_627\":1473,\"_629\":758,\"_631\":1474,\"_633\":217,\"_634\":217,\"_635\":1475,\"_637\":1476,\"_639\":25,\"_640\":3264,\"_642\":3265,\"_644\":1473,\"_645\":217,\"_646\":1472,\"_647\":217,\"_648\":1475,\"_649\":1476,\"_12\":1473,\"_651\":1479,\"_160\":1480,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1480,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1457,\"_619\":620,\"_621\":1458,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1459,\"_627\":1460,\"_629\":1461,\"_631\":1462,\"_633\":217,\"_634\":217,\"_635\":1463,\"_637\":1464,\"_639\":25,\"_640\":3262,\"_642\":3263,\"_644\":1460,\"_645\":217,\"_646\":1459,\"_647\":217,\"_648\":1463,\"_649\":1464,\"_12\":1460,\"_651\":1078,\"_160\":1467,\"_173\":750,\"_171\":654,\"_166\":1468,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":752,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1467,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1444,\"_619\":620,\"_621\":1445,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1446,\"_627\":1447,\"_629\":1448,\"_631\":1449,\"_633\":217,\"_634\":223,\"_635\":1450,\"_637\":1451,\"_639\":25,\"_640\":3260,\"_642\":3261,\"_644\":1447,\"_645\":217,\"_646\":1446,\"_647\":223,\"_648\":1450,\"_649\":1451,\"_12\":1454,\"_651\":1158,\"_160\":1455,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1455,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1432,\"_619\":620,\"_621\":1433,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1434,\"_627\":1435,\"_629\":1436,\"_631\":773,\"_633\":217,\"_634\":217,\"_635\":1437,\"_637\":1438,\"_639\":25,\"_640\":3258,\"_642\":3259,\"_644\":1435,\"_645\":217,\"_646\":1434,\"_647\":217,\"_648\":1437,\"_649\":1438,\"_12\":1435,\"_651\":1441,\"_160\":1442,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1442,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1421,\"_619\":620,\"_621\":1422,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1423,\"_627\":1424,\"_629\":1112,\"_631\":1425,\"_633\":217,\"_634\":215,\"_635\":1426,\"_637\":1427,\"_639\":25,\"_640\":3256,\"_642\":3257,\"_644\":1424,\"_645\":217,\"_646\":1423,\"_647\":215,\"_648\":1426,\"_649\":1427,\"_12\":1424,\"_651\":1307,\"_160\":765,\"_173\":654,\"_171\":654,\"_166\":1430,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":765,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1408,\"_619\":620,\"_621\":1409,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1410,\"_627\":1411,\"_629\":1412,\"_631\":1413,\"_633\":217,\"_634\":684,\"_635\":1414,\"_637\":1415,\"_639\":25,\"_640\":3254,\"_642\":3255,\"_644\":1411,\"_645\":217,\"_646\":1410,\"_647\":684,\"_648\":1414,\"_649\":1415,\"_12\":1411,\"_651\":1418,\"_160\":1419,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1419,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1395,\"_619\":620,\"_621\":1396,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1397,\"_627\":1398,\"_629\":1399,\"_631\":1400,\"_633\":217,\"_634\":210,\"_635\":1401,\"_637\":1402,\"_639\":25,\"_640\":3252,\"_642\":3253,\"_644\":1398,\"_645\":217,\"_646\":1397,\"_647\":210,\"_648\":1401,\"_649\":1402,\"_12\":1405,\"_651\":1078,\"_160\":1406,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1406,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1382,\"_619\":620,\"_621\":1383,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1384,\"_627\":1385,\"_629\":1137,\"_631\":1386,\"_633\":217,\"_634\":199,\"_635\":1387,\"_637\":1388,\"_639\":25,\"_640\":3250,\"_642\":3251,\"_644\":1385,\"_645\":217,\"_646\":1384,\"_647\":199,\"_648\":1387,\"_649\":1388,\"_12\":1391,\"_651\":1392,\"_160\":1393,\"_173\":946,\"_171\":654,\"_166\":1220,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":885,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1393,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1370,\"_619\":620,\"_621\":1371,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1372,\"_627\":1373,\"_629\":1374,\"_631\":1375,\"_633\":217,\"_634\":210,\"_635\":1376,\"_637\":1377,\"_639\":25,\"_640\":3248,\"_642\":3249,\"_644\":1373,\"_645\":217,\"_646\":1372,\"_647\":210,\"_648\":1376,\"_649\":1377,\"_12\":1373,\"_651\":1078,\"_160\":1380,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1380,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1357,\"_619\":620,\"_621\":1358,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1359,\"_627\":1360,\"_629\":1361,\"_631\":1362,\"_633\":217,\"_634\":217,\"_635\":1363,\"_637\":1364,\"_639\":25,\"_640\":3246,\"_642\":3247,\"_644\":1360,\"_645\":217,\"_646\":1359,\"_647\":217,\"_648\":1363,\"_649\":1364,\"_12\":1367,\"_651\":1078,\"_160\":1368,\"_173\":654,\"_171\":654,\"_166\":735,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1368,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1343,\"_619\":620,\"_621\":1344,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1345,\"_627\":1346,\"_629\":1347,\"_631\":1348,\"_633\":217,\"_634\":684,\"_635\":1349,\"_637\":1350,\"_639\":25,\"_640\":3244,\"_642\":3245,\"_644\":1346,\"_645\":217,\"_646\":1345,\"_647\":684,\"_648\":1349,\"_649\":1350,\"_12\":1346,\"_651\":1353,\"_160\":1354,\"_173\":1184,\"_171\":654,\"_166\":1355,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1354,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1333,\"_619\":620,\"_621\":1334,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1335,\"_627\":1336,\"_629\":743,\"_631\":1337,\"_633\":217,\"_634\":223,\"_635\":1338,\"_637\":1339,\"_639\":25,\"_640\":3242,\"_642\":3243,\"_644\":1336,\"_645\":217,\"_646\":1335,\"_647\":223,\"_648\":1338,\"_649\":1339,\"_12\":1336,\"_651\":1207,\"_160\":1170,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1170,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1323,\"_619\":620,\"_621\":1324,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1325,\"_627\":1326,\"_629\":743,\"_631\":1327,\"_633\":217,\"_634\":217,\"_635\":1165,\"_637\":1328,\"_639\":25,\"_640\":3240,\"_642\":3241,\"_644\":1326,\"_645\":217,\"_646\":1325,\"_647\":217,\"_648\":1165,\"_649\":1328,\"_12\":1331,\"_651\":1158,\"_160\":1170,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1170,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1310,\"_619\":620,\"_621\":1311,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1312,\"_627\":1313,\"_629\":1314,\"_631\":1315,\"_633\":217,\"_634\":684,\"_635\":1316,\"_637\":1317,\"_639\":25,\"_640\":3238,\"_642\":3239,\"_644\":1313,\"_645\":217,\"_646\":1312,\"_647\":684,\"_648\":1316,\"_649\":1317,\"_12\":1320,\"_651\":1103,\"_160\":1321,\"_173\":780,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1321,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1298,\"_619\":620,\"_621\":1299,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1300,\"_627\":1301,\"_629\":953,\"_631\":1302,\"_633\":217,\"_634\":223,\"_635\":1303,\"_637\":1304,\"_639\":25,\"_640\":3236,\"_642\":3237,\"_644\":1301,\"_645\":217,\"_646\":1300,\"_647\":223,\"_648\":1303,\"_649\":1304,\"_12\":1301,\"_651\":1307,\"_160\":1308,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1308,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1286,\"_619\":620,\"_621\":1287,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1288,\"_627\":1289,\"_629\":1085,\"_631\":1290,\"_633\":217,\"_634\":217,\"_635\":1291,\"_637\":1292,\"_639\":25,\"_640\":3234,\"_642\":3235,\"_644\":1289,\"_645\":217,\"_646\":1288,\"_647\":217,\"_648\":1291,\"_649\":1292,\"_12\":1295,\"_651\":1158,\"_160\":1296,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1296,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1270,\"_619\":620,\"_621\":1271,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1272,\"_627\":1273,\"_629\":1274,\"_631\":1275,\"_633\":1276,\"_634\":684,\"_635\":1277,\"_637\":1278,\"_639\":25,\"_640\":3232,\"_642\":3233,\"_644\":1273,\"_645\":1276,\"_646\":1272,\"_647\":684,\"_648\":1277,\"_649\":1278,\"_12\":1281,\"_651\":1282,\"_160\":1283,\"_173\":750,\"_171\":654,\"_166\":1284,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1283,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1258,\"_619\":620,\"_621\":1259,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1260,\"_627\":1261,\"_629\":876,\"_631\":773,\"_633\":217,\"_634\":207,\"_635\":1262,\"_637\":1263,\"_639\":25,\"_640\":3230,\"_642\":3231,\"_644\":1261,\"_645\":217,\"_646\":1260,\"_647\":207,\"_648\":1262,\"_649\":1263,\"_12\":1266,\"_651\":1267,\"_160\":1268,\"_173\":780,\"_171\":654,\"_166\":884,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":885,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1268,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1245,\"_619\":620,\"_621\":1246,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1247,\"_627\":1248,\"_629\":1249,\"_631\":1250,\"_633\":217,\"_634\":684,\"_635\":1251,\"_637\":1252,\"_639\":25,\"_640\":3228,\"_642\":3229,\"_644\":1248,\"_645\":217,\"_646\":1247,\"_647\":684,\"_648\":1251,\"_649\":1252,\"_12\":1248,\"_651\":1158,\"_160\":720,\"_173\":1105,\"_171\":654,\"_166\":1255,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":1256,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1232,\"_619\":620,\"_621\":1233,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1234,\"_627\":1235,\"_629\":1236,\"_631\":1237,\"_633\":217,\"_634\":205,\"_635\":1238,\"_637\":1239,\"_639\":25,\"_640\":3226,\"_642\":3227,\"_644\":1235,\"_645\":217,\"_646\":1234,\"_647\":205,\"_648\":1238,\"_649\":1239,\"_12\":1235,\"_651\":1242,\"_160\":1243,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":660,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1243,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1222,\"_619\":620,\"_621\":1223,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1224,\"_627\":1225,\"_629\":891,\"_631\":1226,\"_633\":217,\"_634\":217,\"_635\":1227,\"_637\":1228,\"_639\":25,\"_640\":3224,\"_642\":3225,\"_644\":1225,\"_645\":217,\"_646\":1224,\"_647\":217,\"_648\":1227,\"_649\":1228,\"_12\":1225,\"_651\":1118,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1210,\"_619\":620,\"_621\":1211,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1212,\"_627\":1213,\"_629\":630,\"_631\":1214,\"_633\":217,\"_634\":199,\"_635\":1215,\"_637\":1216,\"_639\":25,\"_640\":3222,\"_642\":3223,\"_644\":1213,\"_645\":217,\"_646\":1212,\"_647\":199,\"_648\":1215,\"_649\":1216,\"_12\":1219,\"_651\":1078,\"_160\":841,\"_173\":1105,\"_171\":654,\"_166\":1220,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":660,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1198,\"_619\":620,\"_621\":1199,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1200,\"_627\":1201,\"_629\":1085,\"_631\":1202,\"_633\":217,\"_634\":210,\"_635\":1203,\"_637\":1204,\"_639\":25,\"_640\":3220,\"_642\":3221,\"_644\":1201,\"_645\":217,\"_646\":1200,\"_647\":210,\"_648\":1203,\"_649\":1204,\"_12\":1201,\"_651\":1207,\"_160\":805,\"_173\":780,\"_171\":654,\"_166\":1208,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1187,\"_619\":620,\"_621\":1188,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1189,\"_627\":1190,\"_629\":1085,\"_631\":1191,\"_633\":217,\"_634\":210,\"_635\":1192,\"_637\":1193,\"_639\":25,\"_640\":3218,\"_642\":3219,\"_644\":1190,\"_645\":217,\"_646\":1189,\"_647\":210,\"_648\":1192,\"_649\":1193,\"_12\":1196,\"_651\":1078,\"_160\":971,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":971,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1172,\"_619\":620,\"_621\":1173,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1174,\"_627\":1175,\"_629\":1176,\"_631\":1177,\"_633\":217,\"_634\":215,\"_635\":1178,\"_637\":1179,\"_639\":25,\"_640\":3216,\"_642\":3217,\"_644\":1175,\"_645\":217,\"_646\":1174,\"_647\":215,\"_648\":1178,\"_649\":1179,\"_12\":1175,\"_651\":1182,\"_160\":1183,\"_173\":1184,\"_171\":654,\"_166\":1185,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":202,\"_661\":736,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1183,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1160,\"_619\":620,\"_621\":1161,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1162,\"_627\":1163,\"_629\":743,\"_631\":1164,\"_633\":217,\"_634\":217,\"_635\":1165,\"_637\":1166,\"_639\":25,\"_640\":3214,\"_642\":3215,\"_644\":1163,\"_645\":217,\"_646\":1162,\"_647\":217,\"_648\":1165,\"_649\":1166,\"_12\":1169,\"_651\":1078,\"_160\":1170,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1170,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1148,\"_619\":620,\"_621\":1149,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1150,\"_627\":1151,\"_629\":891,\"_631\":1152,\"_633\":217,\"_634\":217,\"_635\":1153,\"_637\":1154,\"_639\":25,\"_640\":3212,\"_642\":3213,\"_644\":1151,\"_645\":217,\"_646\":1150,\"_647\":217,\"_648\":1153,\"_649\":1154,\"_12\":1157,\"_651\":1158,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1133,\"_619\":620,\"_621\":1134,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1135,\"_627\":1136,\"_629\":1137,\"_631\":1138,\"_633\":217,\"_634\":199,\"_635\":1139,\"_637\":1140,\"_639\":25,\"_640\":3210,\"_642\":3211,\"_644\":1136,\"_645\":217,\"_646\":1135,\"_647\":199,\"_648\":1139,\"_649\":1140,\"_12\":1143,\"_651\":1144,\"_160\":1145,\"_173\":750,\"_171\":654,\"_166\":1146,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":885,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1145,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1121,\"_619\":620,\"_621\":1122,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1123,\"_627\":1124,\"_629\":1125,\"_631\":799,\"_633\":217,\"_634\":212,\"_635\":1126,\"_637\":1127,\"_639\":25,\"_640\":3208,\"_642\":3209,\"_644\":1124,\"_645\":217,\"_646\":1123,\"_647\":212,\"_648\":1126,\"_649\":1127,\"_12\":1130,\"_651\":1078,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1108,\"_619\":620,\"_621\":1109,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1110,\"_627\":1111,\"_629\":1112,\"_631\":1113,\"_633\":217,\"_634\":215,\"_635\":1114,\"_637\":1115,\"_639\":25,\"_640\":3206,\"_642\":3207,\"_644\":1111,\"_645\":217,\"_646\":1110,\"_647\":215,\"_648\":1114,\"_649\":1115,\"_12\":1111,\"_651\":1118,\"_160\":1119,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1119,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1093,\"_619\":620,\"_621\":1094,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1095,\"_627\":1096,\"_629\":1097,\"_631\":1098,\"_633\":217,\"_634\":215,\"_635\":1099,\"_637\":1100,\"_639\":25,\"_640\":3204,\"_642\":3205,\"_644\":1096,\"_645\":217,\"_646\":1095,\"_647\":215,\"_648\":1099,\"_649\":1100,\"_12\":1096,\"_651\":1103,\"_160\":1104,\"_173\":1105,\"_171\":654,\"_166\":751,\"_656\":36,\"_657\":200,\"_658\":36,\"_659\":1106,\"_661\":200,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1104,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1081,\"_619\":620,\"_621\":1082,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1083,\"_627\":1084,\"_629\":1085,\"_631\":1086,\"_633\":217,\"_634\":210,\"_635\":1087,\"_637\":1088,\"_639\":25,\"_640\":3202,\"_642\":3203,\"_644\":1084,\"_645\":217,\"_646\":1083,\"_647\":210,\"_648\":1087,\"_649\":1088,\"_12\":1084,\"_651\":1078,\"_160\":1091,\"_173\":692,\"_171\":654,\"_166\":779,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1091,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1069,\"_619\":620,\"_621\":1070,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1071,\"_627\":1072,\"_629\":965,\"_631\":1073,\"_633\":217,\"_634\":217,\"_635\":1074,\"_637\":1075,\"_639\":25,\"_640\":3200,\"_642\":3201,\"_644\":1072,\"_645\":217,\"_646\":1071,\"_647\":217,\"_648\":1074,\"_649\":1075,\"_12\":1072,\"_651\":1078,\"_160\":1079,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1079,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1057,\"_619\":620,\"_621\":1058,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1059,\"_627\":1060,\"_629\":823,\"_631\":1061,\"_633\":217,\"_634\":201,\"_635\":1062,\"_637\":1063,\"_639\":25,\"_640\":3198,\"_642\":3199,\"_644\":1060,\"_645\":217,\"_646\":1059,\"_647\":201,\"_648\":1062,\"_649\":1063,\"_12\":1060,\"_651\":1066,\"_160\":1067,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1067,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1042,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":1046,\"_627\":1047,\"_629\":1048,\"_631\":1049,\"_633\":217,\"_634\":210,\"_635\":1050,\"_637\":1051,\"_639\":25,\"_640\":3195,\"_642\":3196,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":778,\"_160\":1054,\"_173\":780,\"_171\":654,\"_166\":1055,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1054,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1029,\"_619\":620,\"_621\":1030,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1031,\"_627\":1032,\"_629\":1033,\"_631\":1034,\"_633\":217,\"_634\":217,\"_635\":1035,\"_637\":1036,\"_639\":25,\"_640\":3193,\"_642\":3194,\"_644\":1032,\"_645\":217,\"_646\":1031,\"_647\":217,\"_648\":1035,\"_649\":1036,\"_12\":1032,\"_651\":690,\"_160\":1039,\"_173\":780,\"_171\":654,\"_166\":1040,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1039,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1016,\"_619\":620,\"_621\":1017,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1018,\"_627\":1019,\"_629\":1020,\"_631\":1021,\"_633\":217,\"_634\":684,\"_635\":1022,\"_637\":1023,\"_639\":25,\"_640\":3191,\"_642\":3192,\"_644\":1019,\"_645\":217,\"_646\":1018,\"_647\":684,\"_648\":1022,\"_649\":1023,\"_12\":1026,\"_651\":778,\"_160\":1027,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1027,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1007,\"_619\":620,\"_621\":1008,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1009,\"_627\":1010,\"_629\":965,\"_631\":799,\"_633\":217,\"_634\":684,\"_635\":1011,\"_637\":1012,\"_639\":25,\"_640\":3189,\"_642\":3190,\"_644\":1010,\"_645\":217,\"_646\":1009,\"_647\":684,\"_648\":1011,\"_649\":1012,\"_12\":1010,\"_651\":690,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":995,\"_619\":620,\"_621\":996,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":997,\"_627\":998,\"_629\":999,\"_631\":1000,\"_633\":217,\"_634\":217,\"_635\":1001,\"_637\":1002,\"_639\":25,\"_640\":3187,\"_642\":3188,\"_644\":998,\"_645\":217,\"_646\":997,\"_647\":217,\"_648\":1001,\"_649\":1002,\"_12\":998,\"_651\":690,\"_160\":1005,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1005,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":984,\"_619\":620,\"_621\":985,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":986,\"_627\":987,\"_629\":965,\"_631\":988,\"_633\":217,\"_634\":684,\"_635\":989,\"_637\":990,\"_639\":25,\"_640\":3185,\"_642\":3186,\"_644\":987,\"_645\":217,\"_646\":986,\"_647\":684,\"_648\":989,\"_649\":990,\"_12\":987,\"_651\":778,\"_160\":993,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":993,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":973,\"_619\":620,\"_621\":974,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":975,\"_627\":976,\"_629\":743,\"_631\":977,\"_633\":217,\"_634\":223,\"_635\":978,\"_637\":979,\"_639\":25,\"_640\":3183,\"_642\":3184,\"_644\":976,\"_645\":217,\"_646\":975,\"_647\":223,\"_648\":978,\"_649\":979,\"_12\":976,\"_651\":778,\"_160\":982,\"_173\":654,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":982,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":961,\"_619\":620,\"_621\":962,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":963,\"_627\":964,\"_629\":965,\"_631\":966,\"_633\":217,\"_634\":210,\"_635\":967,\"_637\":968,\"_639\":25,\"_640\":3181,\"_642\":3182,\"_644\":964,\"_645\":217,\"_646\":963,\"_647\":210,\"_648\":967,\"_649\":968,\"_12\":964,\"_651\":705,\"_160\":971,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":971,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":949,\"_619\":620,\"_621\":950,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":951,\"_627\":952,\"_629\":953,\"_631\":954,\"_633\":217,\"_634\":223,\"_635\":955,\"_637\":956,\"_639\":25,\"_640\":3179,\"_642\":3180,\"_644\":952,\"_645\":217,\"_646\":951,\"_647\":223,\"_648\":955,\"_649\":956,\"_12\":952,\"_651\":690,\"_160\":959,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":959,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":936,\"_619\":620,\"_621\":937,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":938,\"_627\":939,\"_629\":699,\"_631\":940,\"_633\":217,\"_634\":223,\"_635\":941,\"_637\":942,\"_639\":25,\"_640\":3177,\"_642\":3178,\"_644\":939,\"_645\":217,\"_646\":938,\"_647\":223,\"_648\":941,\"_649\":942,\"_12\":939,\"_651\":690,\"_160\":945,\"_173\":946,\"_171\":654,\"_166\":947,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":416,\"_661\":206,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":945,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":925,\"_619\":620,\"_621\":926,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":927,\"_627\":928,\"_629\":929,\"_631\":930,\"_633\":217,\"_634\":215,\"_635\":931,\"_637\":932,\"_639\":25,\"_640\":3175,\"_642\":3176,\"_644\":928,\"_645\":217,\"_646\":927,\"_647\":215,\"_648\":931,\"_649\":932,\"_12\":928,\"_651\":690,\"_160\":841,\"_173\":780,\"_171\":654,\"_166\":765,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":913,\"_619\":620,\"_621\":914,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":915,\"_627\":916,\"_629\":917,\"_631\":918,\"_633\":215,\"_634\":210,\"_635\":919,\"_637\":920,\"_639\":25,\"_640\":3173,\"_642\":3174,\"_644\":916,\"_645\":215,\"_646\":915,\"_647\":210,\"_648\":919,\"_649\":920,\"_12\":916,\"_651\":690,\"_160\":923,\"_173\":692,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":900,\"_619\":620,\"_621\":901,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":902,\"_627\":903,\"_629\":904,\"_631\":905,\"_633\":217,\"_634\":684,\"_635\":906,\"_637\":907,\"_639\":25,\"_640\":3171,\"_642\":3172,\"_644\":903,\"_645\":217,\"_646\":902,\"_647\":684,\"_648\":906,\"_649\":907,\"_12\":903,\"_651\":705,\"_160\":910,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":910,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":887,\"_619\":620,\"_621\":888,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":889,\"_627\":890,\"_629\":891,\"_631\":892,\"_633\":217,\"_634\":219,\"_635\":893,\"_637\":894,\"_639\":25,\"_640\":3169,\"_642\":3170,\"_644\":890,\"_645\":217,\"_646\":889,\"_647\":219,\"_648\":893,\"_649\":894,\"_12\":897,\"_651\":778,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":872,\"_619\":620,\"_621\":873,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":874,\"_627\":875,\"_629\":876,\"_631\":877,\"_633\":217,\"_634\":207,\"_635\":878,\"_637\":879,\"_639\":25,\"_640\":3167,\"_642\":3168,\"_644\":875,\"_645\":217,\"_646\":874,\"_647\":207,\"_648\":878,\"_649\":879,\"_12\":882,\"_651\":652,\"_160\":883,\"_173\":692,\"_171\":654,\"_166\":884,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":883,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":857,\"_619\":620,\"_621\":858,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":859,\"_627\":860,\"_629\":861,\"_631\":862,\"_633\":217,\"_634\":207,\"_635\":863,\"_637\":864,\"_639\":25,\"_640\":3165,\"_642\":3166,\"_644\":860,\"_645\":217,\"_646\":859,\"_647\":207,\"_648\":863,\"_649\":864,\"_12\":867,\"_651\":868,\"_160\":869,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":870,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":869,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":844,\"_619\":620,\"_621\":845,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":846,\"_627\":847,\"_629\":848,\"_631\":849,\"_633\":217,\"_634\":221,\"_635\":850,\"_637\":851,\"_639\":25,\"_640\":3163,\"_642\":3164,\"_644\":847,\"_645\":217,\"_646\":846,\"_647\":221,\"_648\":850,\"_649\":851,\"_12\":854,\"_651\":778,\"_160\":707,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":707,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":831,\"_619\":620,\"_621\":832,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":833,\"_627\":834,\"_629\":835,\"_631\":836,\"_633\":217,\"_634\":201,\"_635\":837,\"_637\":838,\"_639\":25,\"_640\":3161,\"_642\":3162,\"_644\":834,\"_645\":217,\"_646\":833,\"_647\":201,\"_648\":837,\"_649\":838,\"_12\":834,\"_651\":652,\"_160\":841,\"_173\":780,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":819,\"_619\":620,\"_621\":820,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":821,\"_627\":822,\"_629\":823,\"_631\":824,\"_633\":217,\"_634\":217,\"_635\":825,\"_637\":826,\"_639\":25,\"_640\":3159,\"_642\":3160,\"_644\":822,\"_645\":217,\"_646\":821,\"_647\":217,\"_648\":825,\"_649\":826,\"_12\":822,\"_651\":690,\"_160\":829,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":829,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":807,\"_619\":620,\"_621\":808,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":809,\"_627\":810,\"_629\":811,\"_631\":812,\"_633\":222,\"_634\":222,\"_635\":813,\"_637\":814,\"_639\":25,\"_640\":3157,\"_642\":3158,\"_644\":810,\"_645\":222,\"_646\":809,\"_647\":222,\"_648\":813,\"_649\":814,\"_12\":810,\"_651\":778,\"_160\":817,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":817,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":794,\"_619\":620,\"_621\":795,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":796,\"_627\":797,\"_629\":798,\"_631\":799,\"_633\":217,\"_634\":684,\"_635\":800,\"_637\":801,\"_639\":25,\"_640\":3155,\"_642\":3156,\"_644\":797,\"_645\":217,\"_646\":796,\"_647\":684,\"_648\":800,\"_649\":801,\"_12\":804,\"_651\":690,\"_160\":805,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":783,\"_619\":620,\"_621\":784,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":785,\"_627\":786,\"_629\":787,\"_631\":788,\"_633\":217,\"_634\":215,\"_635\":789,\"_637\":790,\"_639\":25,\"_640\":3153,\"_642\":3154,\"_644\":786,\"_645\":217,\"_646\":785,\"_647\":215,\"_648\":789,\"_649\":790,\"_12\":786,\"_651\":705,\"_160\":781,\"_173\":693,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":781,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":768,\"_619\":620,\"_621\":769,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":770,\"_627\":771,\"_629\":772,\"_631\":773,\"_633\":217,\"_634\":217,\"_635\":774,\"_637\":775,\"_639\":25,\"_640\":3151,\"_642\":3152,\"_644\":771,\"_645\":217,\"_646\":770,\"_647\":217,\"_648\":774,\"_649\":775,\"_12\":771,\"_651\":778,\"_160\":779,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":779,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":754,\"_619\":620,\"_621\":755,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":756,\"_627\":757,\"_629\":758,\"_631\":759,\"_633\":217,\"_634\":207,\"_635\":760,\"_637\":761,\"_639\":25,\"_640\":3149,\"_642\":3150,\"_644\":757,\"_645\":217,\"_646\":756,\"_647\":207,\"_648\":760,\"_649\":761,\"_12\":764,\"_651\":690,\"_160\":765,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":765,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":739,\"_619\":620,\"_621\":740,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":741,\"_627\":742,\"_629\":743,\"_631\":744,\"_633\":217,\"_634\":223,\"_635\":745,\"_637\":746,\"_639\":25,\"_640\":3147,\"_642\":3148,\"_644\":742,\"_645\":217,\"_646\":741,\"_647\":223,\"_648\":745,\"_649\":746,\"_12\":742,\"_651\":690,\"_160\":749,\"_173\":750,\"_171\":654,\"_166\":751,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":752,\"_661\":206,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":749,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":723,\"_619\":620,\"_621\":724,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":725,\"_627\":726,\"_629\":727,\"_631\":728,\"_633\":217,\"_634\":205,\"_635\":729,\"_637\":730,\"_639\":25,\"_640\":3145,\"_642\":3146,\"_644\":726,\"_645\":217,\"_646\":725,\"_647\":205,\"_648\":729,\"_649\":730,\"_12\":726,\"_651\":690,\"_160\":733,\"_173\":734,\"_171\":654,\"_166\":735,\"_656\":36,\"_657\":736,\"_658\":36,\"_659\":737,\"_661\":736,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":733,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":709,\"_619\":620,\"_621\":710,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":711,\"_627\":712,\"_629\":713,\"_631\":714,\"_633\":217,\"_634\":223,\"_635\":715,\"_637\":716,\"_639\":25,\"_640\":3143,\"_642\":3144,\"_644\":712,\"_645\":217,\"_646\":711,\"_647\":223,\"_648\":715,\"_649\":716,\"_12\":712,\"_651\":705,\"_160\":719,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":721,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":719,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":695,\"_619\":620,\"_621\":696,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":697,\"_627\":698,\"_629\":699,\"_631\":700,\"_633\":217,\"_634\":223,\"_635\":701,\"_637\":702,\"_639\":25,\"_640\":3141,\"_642\":3142,\"_644\":698,\"_645\":217,\"_646\":697,\"_647\":223,\"_648\":701,\"_649\":702,\"_12\":698,\"_651\":705,\"_160\":706,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":706,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":677,\"_619\":620,\"_621\":678,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":679,\"_627\":680,\"_629\":681,\"_631\":682,\"_633\":683,\"_634\":684,\"_635\":685,\"_637\":686,\"_639\":25,\"_640\":3139,\"_642\":3140,\"_644\":680,\"_645\":683,\"_646\":679,\"_647\":684,\"_648\":685,\"_649\":686,\"_12\":689,\"_651\":690,\"_160\":691,\"_173\":692,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":691,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":618,\"_619\":620,\"_621\":622,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":626,\"_627\":628,\"_629\":630,\"_631\":632,\"_633\":217,\"_634\":199,\"_635\":636,\"_637\":638,\"_639\":25,\"_640\":3137,\"_642\":3138,\"_644\":628,\"_645\":217,\"_646\":626,\"_647\":199,\"_648\":636,\"_649\":638,\"_12\":650,\"_651\":652,\"_160\":653,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":660,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":653,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},[676],[],[694],[],[708],[],[722],[],[738],[],[753],[],[767],[],[782],[],[793],[],[806],[],[818],[],[830],[],[843],[],[856],[],[871],[],[886],[],[899],[],[912],[],[924],[],[935],[],[948],[],[960],[],[972],[],[983],[],[994],[],[1006],[],[1015],[],[1028],[],[1041],[],[1056],[],\"Nuvo\",[1068],[],[1080],[],[1092],[],[1107],[],[1120],[],[1132],[],[1147],[],[1159],[],[1171],[],[1186],[],[1197],[],[1209],[],[1221],[],[1231],[],[1244],[],[1257],[],[1269],[],[1285],[],[1297],[],[1309],[],[1322],[],[1332],[],[1342],[],[1356],[],[1369],[],[1381],[],[1394],[],[1407],[],[1420],[],[1431],[],[1443],[],[1456],[],[1469],[],[1481],[],[1493],[],[1504],[],[1519],[],[1532],[],[1547],[],[1558],[],[1567],[],[1578],[],[1588],[],[1598],[],[1609],[],[1622],[],[1634],[],[1644],[],[1654],[],[1663],[],[1676],[],[1689],[],[1701],[],[1711],[],[1721],[],[1734],[],[1745],[],[1756],[],[1767],[],[1779],[],[1790],[],[1802],[],[1817],[],[1830],[],[1843],[],[1853],[],[1865],[],[1878],[],[1890],[],[1902],[],[1913],[],[1922],[],[1935],[],[1946],[],[1957],[],[1968],[],[1977],[],[1988],[],[2001],[],[2012],[],[2033],[],\"Chelsea Creek Multi \",[2033],[],[1056],[],[1056],[],[2076],[],[2089],[],[2101],[],[2113],[],[2130],[],\"Desrosiers\",[1056],[],[1056],[],[2161],[],[2174],[],[2186],[],[2201],[],[2214],[],[2225],[],[2236],[],[2249],[],[2261],[],[2271],[],[2281],[],[2292],[],[2305],[],[2317],[],[2329],[],[2341],[],[2354],[],[2366],[],[2379],[],[2392],[],[2404],[],[2414],[],[2427],[],[2436],[],[2446],[],[2456],[],[2471],[],[2485],[],[2497],[],[2510],[],[2522],[],[2532],[],[2545],[],[2557],[],[2567],[],[2579],[],[2589],[],[2600],[],[2610],[],[2622],[],[2632],[],[2644],[],[2656],[],[2666],[],[2677],[],[2688],[],[2698],[],[2708],[],[2721],[],[2735],[],[2748],[],[2760],[],[2769],[],[2779],[],[2791],[],[2797],[],[2807],[],[1056],[],[2832],[],\"PURE\",[2832],[],[1056],[],[2033],[],[1056],[],[2832],[],[2832],[],[2832],[],[1056],[],[2832],[],[2832],[],[2033],[],[2130],[],[2832],[],{\"_617\":2936,\"_619\":1043,\"_621\":2817,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":2827,\"_627\":2826,\"_629\":2820,\"_631\":2939,\"_633\":217,\"_634\":684,\"_635\":2828,\"_637\":2829,\"_639\":25,\"_640\":4051,\"_642\":4052,\"_644\":2826,\"_645\":217,\"_646\":2827,\"_647\":684,\"_648\":2828,\"_649\":2829,\"_12\":3500,\"_651\":1207,\"_160\":2830,\"_173\":1105,\"_171\":654,\"_166\":2910,\"_656\":36,\"_657\":4053,\"_658\":36,\"_659\":4054,\"_661\":4053,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2830,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_4044\":208,\"_675\":-5},{\"_617\":2927,\"_619\":1043,\"_621\":2115,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2124,\"_627\":2123,\"_629\":699,\"_631\":2451,\"_633\":217,\"_634\":684,\"_635\":2125,\"_637\":2126,\"_639\":25,\"_640\":4048,\"_642\":4049,\"_644\":2123,\"_645\":217,\"_646\":2124,\"_647\":684,\"_648\":2125,\"_649\":2126,\"_12\":3377,\"_651\":1158,\"_160\":2127,\"_173\":780,\"_171\":654,\"_166\":4050,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1633,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2127,\"_672\":-5,\"_673\":2129,\"_674\":-5,\"_4044\":206,\"_675\":-5},{\"_617\":2919,\"_619\":1043,\"_621\":2014,\"_15\":-5,\"_623\":2015,\"_624\":25,\"_625\":1045,\"_260\":2027,\"_627\":2025,\"_629\":2853,\"_631\":2922,\"_633\":2026,\"_634\":684,\"_635\":2028,\"_637\":2029,\"_639\":25,\"_640\":4045,\"_642\":4046,\"_644\":2025,\"_645\":2026,\"_646\":2027,\"_647\":684,\"_648\":2028,\"_649\":2029,\"_12\":3360,\"_651\":2030,\"_160\":2857,\"_173\":1105,\"_171\":654,\"_166\":2032,\"_656\":36,\"_657\":211,\"_658\":25,\"_659\":4047,\"_661\":211,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2857,\"_672\":-5,\"_673\":2031,\"_674\":-5,\"_4044\":752,\"_675\":-5},{\"_617\":2895,\"_619\":1043,\"_621\":1044,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":1045,\"_260\":1046,\"_627\":1047,\"_629\":917,\"_631\":2898,\"_633\":217,\"_634\":684,\"_635\":1050,\"_637\":1051,\"_639\":25,\"_640\":4041,\"_642\":4042,\"_644\":1047,\"_645\":217,\"_646\":1046,\"_647\":684,\"_648\":1050,\"_649\":1051,\"_12\":3197,\"_651\":1078,\"_160\":2050,\"_173\":750,\"_171\":654,\"_166\":2867,\"_656\":36,\"_657\":2316,\"_658\":36,\"_659\":4043,\"_661\":2316,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2050,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_4044\":2062,\"_675\":-5},{\"_617\":2798,\"_619\":620,\"_621\":2799,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2800,\"_627\":2801,\"_629\":772,\"_631\":2230,\"_633\":217,\"_634\":207,\"_635\":2802,\"_637\":2803,\"_639\":25,\"_640\":4039,\"_642\":4040,\"_644\":2801,\"_645\":217,\"_646\":2800,\"_647\":207,\"_648\":2802,\"_649\":2803,\"_12\":2801,\"_651\":1078,\"_160\":779,\"_173\":780,\"_171\":654,\"_166\":2806,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":779,\"_672\":-5,\"_673\":691,\"_674\":-5,\"_675\":-5},{\"_617\":2792,\"_619\":620,\"_621\":2793,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1059,\"_627\":1060,\"_629\":823,\"_631\":1061,\"_633\":217,\"_634\":201,\"_635\":1062,\"_637\":1063,\"_639\":25,\"_640\":4037,\"_642\":4038,\"_644\":1060,\"_645\":217,\"_646\":1059,\"_647\":201,\"_648\":1062,\"_649\":1063,\"_12\":1060,\"_651\":2796,\"_160\":2235,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2235,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2780,\"_619\":620,\"_621\":2781,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2782,\"_627\":2783,\"_629\":2081,\"_631\":2784,\"_633\":217,\"_634\":201,\"_635\":2785,\"_637\":2786,\"_639\":25,\"_640\":4035,\"_642\":4036,\"_644\":2783,\"_645\":217,\"_646\":2782,\"_647\":201,\"_648\":2785,\"_649\":2786,\"_12\":2783,\"_651\":1103,\"_160\":2789,\"_173\":780,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2789,\"_672\":-5,\"_673\":2790,\"_674\":-5,\"_675\":-5},{\"_617\":2770,\"_619\":620,\"_621\":2771,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2772,\"_627\":2773,\"_629\":1524,\"_631\":2774,\"_633\":217,\"_634\":201,\"_635\":2775,\"_637\":2776,\"_639\":25,\"_640\":4033,\"_642\":4034,\"_644\":2773,\"_645\":217,\"_646\":2772,\"_647\":201,\"_648\":2775,\"_649\":2776,\"_12\":2773,\"_651\":1066,\"_160\":2260,\"_173\":780,\"_171\":654,\"_166\":1208,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2260,\"_672\":-5,\"_673\":2011,\"_674\":-5,\"_675\":-5},{\"_617\":2761,\"_619\":620,\"_621\":2762,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2763,\"_627\":2764,\"_629\":772,\"_631\":1858,\"_633\":217,\"_634\":217,\"_635\":2765,\"_637\":2766,\"_639\":25,\"_640\":4031,\"_642\":4032,\"_644\":2764,\"_645\":217,\"_646\":2763,\"_647\":217,\"_648\":2765,\"_649\":2766,\"_12\":2764,\"_651\":2030,\"_160\":855,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":855,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2749,\"_619\":620,\"_621\":2750,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2751,\"_627\":2752,\"_629\":2753,\"_631\":2754,\"_633\":222,\"_634\":222,\"_635\":2755,\"_637\":2756,\"_639\":25,\"_640\":4029,\"_642\":4030,\"_644\":2752,\"_645\":222,\"_646\":2751,\"_647\":222,\"_648\":2755,\"_649\":2756,\"_12\":2752,\"_651\":1103,\"_160\":2759,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2759,\"_672\":-5,\"_673\":1321,\"_674\":-5,\"_675\":-5},{\"_617\":2736,\"_619\":620,\"_621\":2737,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2738,\"_627\":2739,\"_629\":2740,\"_631\":2741,\"_633\":217,\"_634\":215,\"_635\":2742,\"_637\":2743,\"_639\":25,\"_640\":4027,\"_642\":4028,\"_644\":2739,\"_645\":217,\"_646\":2738,\"_647\":215,\"_648\":2742,\"_649\":2743,\"_12\":2739,\"_651\":1158,\"_160\":2746,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2746,\"_672\":-5,\"_673\":2747,\"_674\":-5,\"_675\":-5},{\"_617\":2722,\"_619\":620,\"_621\":2723,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2724,\"_627\":2725,\"_629\":2726,\"_631\":2727,\"_633\":2728,\"_634\":225,\"_635\":2729,\"_637\":2730,\"_639\":25,\"_640\":4025,\"_642\":4026,\"_644\":2725,\"_645\":2728,\"_646\":2724,\"_647\":225,\"_648\":2729,\"_649\":2730,\"_12\":2725,\"_651\":2733,\"_160\":2734,\"_173\":780,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2734,\"_672\":-5,\"_673\":1442,\"_674\":-5,\"_675\":-5},{\"_617\":2709,\"_619\":620,\"_621\":2710,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2711,\"_627\":2712,\"_629\":2713,\"_631\":2714,\"_633\":217,\"_634\":215,\"_635\":2715,\"_637\":2716,\"_639\":25,\"_640\":4023,\"_642\":4024,\"_644\":2712,\"_645\":217,\"_646\":2711,\"_647\":215,\"_648\":2715,\"_649\":2716,\"_12\":2712,\"_651\":1066,\"_160\":2719,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2719,\"_672\":-5,\"_673\":2720,\"_674\":-5,\"_675\":-5},{\"_617\":2699,\"_619\":620,\"_621\":2700,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2701,\"_627\":2702,\"_629\":2067,\"_631\":1237,\"_633\":217,\"_634\":215,\"_635\":2703,\"_637\":2704,\"_639\":25,\"_640\":4021,\"_642\":4022,\"_644\":2702,\"_645\":217,\"_646\":2701,\"_647\":215,\"_648\":2703,\"_649\":2704,\"_12\":2702,\"_651\":2707,\"_160\":2280,\"_173\":1105,\"_171\":654,\"_166\":2074,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":416,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2280,\"_672\":-5,\"_673\":971,\"_674\":-5,\"_675\":-5},{\"_617\":2689,\"_619\":620,\"_621\":2690,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2691,\"_627\":2692,\"_629\":2067,\"_631\":632,\"_633\":217,\"_634\":684,\"_635\":2693,\"_637\":2694,\"_639\":25,\"_640\":4019,\"_642\":4020,\"_644\":2692,\"_645\":217,\"_646\":2691,\"_647\":684,\"_648\":2693,\"_649\":2694,\"_12\":2692,\"_651\":1103,\"_160\":2352,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2352,\"_672\":-5,\"_673\":2697,\"_674\":-5,\"_675\":-5},{\"_617\":2678,\"_619\":620,\"_621\":2679,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2680,\"_627\":2681,\"_629\":1668,\"_631\":2682,\"_633\":217,\"_634\":684,\"_635\":2683,\"_637\":2684,\"_639\":25,\"_640\":4017,\"_642\":4018,\"_644\":2681,\"_645\":217,\"_646\":2680,\"_647\":684,\"_648\":2683,\"_649\":2684,\"_12\":2681,\"_651\":1307,\"_160\":2352,\"_173\":780,\"_171\":654,\"_166\":2687,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":736,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2352,\"_672\":-5,\"_673\":1419,\"_674\":-5,\"_675\":-5},{\"_617\":2667,\"_619\":620,\"_621\":2668,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2669,\"_627\":2670,\"_629\":2615,\"_631\":2118,\"_633\":217,\"_634\":215,\"_635\":2671,\"_637\":2672,\"_639\":25,\"_640\":4015,\"_642\":4016,\"_644\":2670,\"_645\":217,\"_646\":2669,\"_647\":215,\"_648\":2671,\"_649\":2672,\"_12\":2670,\"_651\":1103,\"_160\":2675,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2675,\"_672\":-5,\"_673\":2676,\"_674\":-5,\"_675\":-5},{\"_617\":2657,\"_619\":620,\"_621\":2658,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2659,\"_627\":2660,\"_629\":1524,\"_631\":2206,\"_633\":217,\"_634\":217,\"_635\":2661,\"_637\":2662,\"_639\":25,\"_640\":4013,\"_642\":4014,\"_644\":2660,\"_645\":217,\"_646\":2659,\"_647\":217,\"_648\":2661,\"_649\":2662,\"_12\":2660,\"_651\":2665,\"_160\":2403,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2645,\"_619\":620,\"_621\":2646,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2647,\"_627\":2648,\"_629\":798,\"_631\":2055,\"_633\":217,\"_634\":217,\"_635\":2649,\"_637\":2650,\"_639\":25,\"_640\":4011,\"_642\":4012,\"_644\":2648,\"_645\":217,\"_646\":2647,\"_647\":217,\"_648\":2649,\"_649\":2650,\"_12\":2653,\"_651\":2654,\"_160\":1354,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1354,\"_672\":-5,\"_673\":2655,\"_674\":-5,\"_675\":-5},{\"_617\":2633,\"_619\":620,\"_621\":2634,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2635,\"_627\":2636,\"_629\":965,\"_631\":2637,\"_633\":217,\"_634\":210,\"_635\":2638,\"_637\":2639,\"_639\":25,\"_640\":4009,\"_642\":4010,\"_644\":2636,\"_645\":217,\"_646\":2635,\"_647\":210,\"_648\":2638,\"_649\":2639,\"_12\":2636,\"_651\":1307,\"_160\":2642,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2642,\"_672\":-5,\"_673\":2643,\"_674\":-5,\"_675\":-5},{\"_617\":2623,\"_619\":620,\"_621\":2624,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2625,\"_627\":2626,\"_629\":1448,\"_631\":1327,\"_633\":217,\"_634\":223,\"_635\":2627,\"_637\":2628,\"_639\":25,\"_640\":4007,\"_642\":4008,\"_644\":2626,\"_645\":217,\"_646\":2625,\"_647\":223,\"_648\":2627,\"_649\":2628,\"_12\":2631,\"_651\":1158,\"_160\":2199,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2199,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2611,\"_619\":620,\"_621\":2612,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2613,\"_627\":2614,\"_629\":2615,\"_631\":977,\"_633\":217,\"_634\":684,\"_635\":2616,\"_637\":2617,\"_639\":25,\"_640\":4005,\"_642\":4006,\"_644\":2614,\"_645\":217,\"_646\":2613,\"_647\":684,\"_648\":2616,\"_649\":2617,\"_12\":2620,\"_651\":1103,\"_160\":2621,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2621,\"_672\":-5,\"_673\":1321,\"_674\":-5,\"_675\":-5},{\"_617\":2601,\"_619\":620,\"_621\":2602,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2603,\"_627\":2604,\"_629\":1524,\"_631\":759,\"_633\":217,\"_634\":201,\"_635\":2605,\"_637\":2606,\"_639\":25,\"_640\":4003,\"_642\":4004,\"_644\":2604,\"_645\":217,\"_646\":2603,\"_647\":201,\"_648\":2605,\"_649\":2606,\"_12\":2609,\"_651\":1078,\"_160\":2403,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2590,\"_619\":620,\"_621\":2591,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2592,\"_627\":2593,\"_629\":2152,\"_631\":2594,\"_633\":217,\"_634\":201,\"_635\":2595,\"_637\":2596,\"_639\":25,\"_640\":4001,\"_642\":4002,\"_644\":2593,\"_645\":217,\"_646\":2592,\"_647\":201,\"_648\":2595,\"_649\":2596,\"_12\":2599,\"_651\":1353,\"_160\":2160,\"_173\":654,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2160,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2580,\"_619\":620,\"_621\":2581,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2582,\"_627\":2583,\"_629\":2584,\"_631\":2503,\"_633\":217,\"_634\":217,\"_635\":2585,\"_637\":2586,\"_639\":25,\"_640\":3999,\"_642\":4000,\"_644\":2583,\"_645\":217,\"_646\":2582,\"_647\":217,\"_648\":2585,\"_649\":2586,\"_12\":2583,\"_651\":1103,\"_160\":779,\"_173\":1105,\"_171\":654,\"_166\":1146,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":2391,\"_661\":752,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":779,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2568,\"_619\":620,\"_621\":2569,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2570,\"_627\":2571,\"_629\":2572,\"_631\":862,\"_633\":217,\"_634\":215,\"_635\":2573,\"_637\":2574,\"_639\":25,\"_640\":3997,\"_642\":3998,\"_644\":2571,\"_645\":217,\"_646\":2570,\"_647\":215,\"_648\":2573,\"_649\":2574,\"_12\":2571,\"_651\":1307,\"_160\":2577,\"_173\":780,\"_171\":654,\"_166\":2578,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":721,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2577,\"_672\":-5,\"_673\":691,\"_674\":-5,\"_675\":-5},{\"_617\":2558,\"_619\":620,\"_621\":2559,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2560,\"_627\":2561,\"_629\":811,\"_631\":2562,\"_633\":217,\"_634\":221,\"_635\":2563,\"_637\":2564,\"_639\":25,\"_640\":3995,\"_642\":3996,\"_644\":2561,\"_645\":217,\"_646\":2560,\"_647\":221,\"_648\":2563,\"_649\":2564,\"_12\":2561,\"_651\":1158,\"_160\":2403,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2546,\"_619\":620,\"_621\":2547,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2548,\"_627\":2549,\"_629\":1807,\"_631\":2550,\"_633\":217,\"_634\":217,\"_635\":2551,\"_637\":2552,\"_639\":25,\"_640\":3993,\"_642\":3994,\"_644\":2549,\"_645\":217,\"_646\":2548,\"_647\":217,\"_648\":2551,\"_649\":2552,\"_12\":2549,\"_651\":2555,\"_160\":2556,\"_173\":780,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":2391,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2556,\"_672\":-5,\"_673\":1956,\"_674\":-5,\"_675\":-5},{\"_617\":2533,\"_619\":620,\"_621\":2534,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2535,\"_627\":2536,\"_629\":2537,\"_631\":2538,\"_633\":217,\"_634\":684,\"_635\":2539,\"_637\":2540,\"_639\":25,\"_640\":3991,\"_642\":3992,\"_644\":2536,\"_645\":217,\"_646\":2535,\"_647\":684,\"_648\":2539,\"_649\":2540,\"_12\":2536,\"_651\":2543,\"_160\":2544,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2544,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2523,\"_619\":620,\"_621\":2524,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2525,\"_627\":2526,\"_629\":1085,\"_631\":2230,\"_633\":217,\"_634\":217,\"_635\":2527,\"_637\":2528,\"_639\":25,\"_640\":3989,\"_642\":3990,\"_644\":2526,\"_645\":217,\"_646\":2525,\"_647\":217,\"_648\":2527,\"_649\":2528,\"_12\":2531,\"_651\":1158,\"_160\":2247,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2247,\"_672\":-5,\"_673\":1406,\"_674\":-5,\"_675\":-5},{\"_617\":2511,\"_619\":620,\"_621\":2512,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2513,\"_627\":2514,\"_629\":965,\"_631\":2055,\"_633\":217,\"_634\":210,\"_635\":2515,\"_637\":2516,\"_639\":25,\"_640\":3987,\"_642\":3988,\"_644\":2514,\"_645\":217,\"_646\":2513,\"_647\":210,\"_648\":2515,\"_649\":2516,\"_12\":2519,\"_651\":1158,\"_160\":2520,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2520,\"_672\":-5,\"_673\":2521,\"_674\":-5,\"_675\":-5},{\"_617\":2498,\"_619\":620,\"_621\":2499,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2500,\"_627\":2501,\"_629\":2502,\"_631\":2503,\"_633\":217,\"_634\":215,\"_635\":2504,\"_637\":2505,\"_639\":25,\"_640\":3985,\"_642\":3986,\"_644\":2501,\"_645\":217,\"_646\":2500,\"_647\":215,\"_648\":2504,\"_649\":2505,\"_12\":2501,\"_651\":2508,\"_160\":765,\"_173\":654,\"_171\":654,\"_166\":2509,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1633,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":765,\"_672\":-5,\"_673\":691,\"_674\":-5,\"_675\":-5},{\"_617\":2486,\"_619\":620,\"_621\":2487,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2488,\"_627\":2489,\"_629\":758,\"_631\":2490,\"_633\":217,\"_634\":217,\"_635\":2491,\"_637\":2492,\"_639\":25,\"_640\":3983,\"_642\":3984,\"_644\":2489,\"_645\":217,\"_646\":2488,\"_647\":217,\"_648\":2491,\"_649\":2492,\"_12\":2495,\"_651\":1307,\"_160\":2496,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2496,\"_672\":-5,\"_673\":1888,\"_674\":-5,\"_675\":-5},{\"_617\":2472,\"_619\":620,\"_621\":2473,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2474,\"_627\":2475,\"_629\":2476,\"_631\":2477,\"_633\":217,\"_634\":215,\"_635\":2478,\"_637\":2479,\"_639\":25,\"_640\":3981,\"_642\":3982,\"_644\":2475,\"_645\":217,\"_646\":2474,\"_647\":215,\"_648\":2478,\"_649\":2479,\"_12\":2475,\"_651\":2482,\"_160\":2483,\"_173\":693,\"_171\":654,\"_166\":2484,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2483,\"_672\":-5,\"_673\":842,\"_674\":-5,\"_675\":-5},{\"_617\":2457,\"_619\":620,\"_621\":2458,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2459,\"_627\":2460,\"_629\":2461,\"_631\":2462,\"_633\":217,\"_634\":217,\"_635\":2463,\"_637\":2464,\"_639\":25,\"_640\":3979,\"_642\":3980,\"_644\":2460,\"_645\":217,\"_646\":2459,\"_647\":217,\"_648\":2463,\"_649\":2464,\"_12\":2467,\"_651\":2468,\"_160\":2469,\"_173\":780,\"_171\":654,\"_166\":1055,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2469,\"_672\":-5,\"_673\":2470,\"_674\":-5,\"_675\":-5},{\"_617\":2447,\"_619\":620,\"_621\":2448,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2449,\"_627\":2450,\"_629\":823,\"_631\":2451,\"_633\":217,\"_634\":217,\"_635\":2452,\"_637\":2453,\"_639\":25,\"_640\":3977,\"_642\":3978,\"_644\":2450,\"_645\":217,\"_646\":2449,\"_647\":217,\"_648\":2452,\"_649\":2453,\"_12\":2450,\"_651\":1066,\"_160\":2235,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2235,\"_672\":-5,\"_673\":1067,\"_674\":-5,\"_675\":-5},{\"_617\":2437,\"_619\":620,\"_621\":2438,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2439,\"_627\":2440,\"_629\":1498,\"_631\":1348,\"_633\":217,\"_634\":684,\"_635\":2441,\"_637\":2442,\"_639\":25,\"_640\":3975,\"_642\":3976,\"_644\":2440,\"_645\":217,\"_646\":2439,\"_647\":684,\"_648\":2441,\"_649\":2442,\"_12\":2440,\"_651\":1307,\"_160\":2445,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2445,\"_672\":-5,\"_673\":945,\"_674\":-5,\"_675\":-5},{\"_617\":2428,\"_619\":620,\"_621\":2429,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2430,\"_627\":2431,\"_629\":1498,\"_631\":1628,\"_633\":217,\"_634\":210,\"_635\":2432,\"_637\":2433,\"_639\":25,\"_640\":3973,\"_642\":3974,\"_644\":2431,\"_645\":217,\"_646\":2430,\"_647\":210,\"_648\":2432,\"_649\":2433,\"_12\":2431,\"_651\":1699,\"_160\":2328,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2328,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2415,\"_619\":620,\"_621\":2416,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2417,\"_627\":2418,\"_629\":713,\"_631\":2419,\"_633\":217,\"_634\":223,\"_635\":2420,\"_637\":2421,\"_639\":25,\"_640\":3971,\"_642\":3972,\"_644\":2418,\"_645\":217,\"_646\":2417,\"_647\":223,\"_648\":2420,\"_649\":2421,\"_12\":2418,\"_651\":1158,\"_160\":2424,\"_173\":780,\"_171\":654,\"_166\":2425,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":2391,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2424,\"_672\":-5,\"_673\":2426,\"_674\":-5,\"_675\":-5},{\"_617\":2405,\"_619\":620,\"_621\":2406,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2407,\"_627\":2408,\"_629\":1524,\"_631\":2409,\"_633\":217,\"_634\":217,\"_635\":2410,\"_637\":2411,\"_639\":25,\"_640\":3969,\"_642\":3970,\"_644\":2408,\"_645\":217,\"_646\":2407,\"_647\":217,\"_648\":2410,\"_649\":2411,\"_12\":2408,\"_651\":1078,\"_160\":2260,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2260,\"_672\":-5,\"_673\":2011,\"_674\":-5,\"_675\":-5},{\"_617\":2393,\"_619\":620,\"_621\":2394,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2395,\"_627\":2396,\"_629\":1524,\"_631\":2397,\"_633\":217,\"_634\":217,\"_635\":2398,\"_637\":2399,\"_639\":25,\"_640\":3967,\"_642\":3968,\"_644\":2396,\"_645\":217,\"_646\":2395,\"_647\":217,\"_648\":2398,\"_649\":2399,\"_12\":2402,\"_651\":1158,\"_160\":2403,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2403,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2380,\"_619\":620,\"_621\":2381,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2382,\"_627\":2383,\"_629\":713,\"_631\":2384,\"_633\":217,\"_634\":223,\"_635\":2385,\"_637\":2386,\"_639\":25,\"_640\":3965,\"_642\":3966,\"_644\":2383,\"_645\":217,\"_646\":2382,\"_647\":223,\"_648\":2385,\"_649\":2386,\"_12\":2383,\"_651\":1158,\"_160\":2389,\"_173\":750,\"_171\":654,\"_166\":2390,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":2391,\"_661\":220,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2389,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":2367,\"_619\":620,\"_621\":2368,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2369,\"_627\":2370,\"_629\":2371,\"_631\":2372,\"_633\":217,\"_634\":215,\"_635\":2373,\"_637\":2374,\"_639\":25,\"_640\":3963,\"_642\":3964,\"_644\":2370,\"_645\":217,\"_646\":2369,\"_647\":215,\"_648\":2373,\"_649\":2374,\"_12\":2370,\"_651\":1158,\"_160\":2377,\"_173\":1105,\"_171\":654,\"_166\":2378,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":200,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2377,\"_672\":-5,\"_673\":1462,\"_674\":-5,\"_675\":-5},{\"_617\":2355,\"_619\":620,\"_621\":2356,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2357,\"_627\":2358,\"_629\":2297,\"_631\":2359,\"_633\":217,\"_634\":201,\"_635\":2360,\"_637\":2361,\"_639\":25,\"_640\":3961,\"_642\":3962,\"_644\":2358,\"_645\":217,\"_646\":2357,\"_647\":201,\"_648\":2360,\"_649\":2361,\"_12\":2364,\"_651\":1103,\"_160\":1406,\"_173\":780,\"_171\":654,\"_166\":2129,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1406,\"_672\":-5,\"_673\":2365,\"_674\":-5,\"_675\":-5},{\"_617\":2342,\"_619\":620,\"_621\":2343,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2344,\"_627\":2345,\"_629\":2346,\"_631\":1716,\"_633\":217,\"_634\":684,\"_635\":2347,\"_637\":2348,\"_639\":25,\"_640\":3959,\"_642\":3960,\"_644\":2345,\"_645\":217,\"_646\":2344,\"_647\":684,\"_648\":2347,\"_649\":2348,\"_12\":2345,\"_651\":2351,\"_160\":2352,\"_173\":780,\"_171\":654,\"_166\":2353,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2352,\"_672\":-5,\"_673\":1419,\"_674\":-5,\"_675\":-5},{\"_617\":2330,\"_619\":620,\"_621\":2331,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2332,\"_627\":2333,\"_629\":2297,\"_631\":2334,\"_633\":217,\"_634\":217,\"_635\":2335,\"_637\":2336,\"_639\":25,\"_640\":3957,\"_642\":3958,\"_644\":2333,\"_645\":217,\"_646\":2332,\"_647\":217,\"_648\":2335,\"_649\":2336,\"_12\":2333,\"_651\":1078,\"_160\":2339,\"_173\":780,\"_171\":654,\"_166\":2303,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2339,\"_672\":-5,\"_673\":2340,\"_674\":-5,\"_675\":-5},{\"_617\":2318,\"_619\":620,\"_621\":2319,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2320,\"_627\":2321,\"_629\":1498,\"_631\":2322,\"_633\":217,\"_634\":210,\"_635\":2323,\"_637\":2324,\"_639\":25,\"_640\":3955,\"_642\":3956,\"_644\":2321,\"_645\":217,\"_646\":2320,\"_647\":210,\"_648\":2323,\"_649\":2324,\"_12\":2321,\"_651\":2327,\"_160\":2328,\"_173\":780,\"_171\":654,\"_166\":2099,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2328,\"_672\":-5,\"_673\":923,\"_674\":-5,\"_675\":-5},{\"_617\":2306,\"_619\":620,\"_621\":2307,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2308,\"_627\":2309,\"_629\":2310,\"_631\":2311,\"_633\":217,\"_634\":217,\"_635\":2312,\"_637\":2313,\"_639\":25,\"_640\":3953,\"_642\":3954,\"_644\":2309,\"_645\":217,\"_646\":2308,\"_647\":217,\"_648\":2312,\"_649\":2313,\"_12\":2309,\"_651\":1158,\"_160\":707,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":2316,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":707,\"_672\":-5,\"_673\":779,\"_674\":-5,\"_675\":-5},{\"_617\":2293,\"_619\":620,\"_621\":2294,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2295,\"_627\":2296,\"_629\":2297,\"_631\":2298,\"_633\":217,\"_634\":201,\"_635\":2299,\"_637\":2300,\"_639\":25,\"_640\":3951,\"_642\":3952,\"_644\":2296,\"_645\":217,\"_646\":2295,\"_647\":201,\"_648\":2299,\"_649\":2300,\"_12\":2296,\"_651\":1103,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":2303,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":2304,\"_674\":-5,\"_675\":-5},{\"_617\":2282,\"_619\":620,\"_621\":2283,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2284,\"_627\":2285,\"_629\":811,\"_631\":2286,\"_633\":222,\"_634\":684,\"_635\":2287,\"_637\":2288,\"_639\":25,\"_640\":3949,\"_642\":3950,\"_644\":2285,\"_645\":222,\"_646\":2284,\"_647\":684,\"_648\":2287,\"_649\":2288,\"_12\":2285,\"_651\":1118,\"_160\":2291,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2291,\"_672\":-5,\"_673\":1442,\"_674\":-5,\"_675\":-5},{\"_617\":2272,\"_619\":620,\"_621\":2273,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2274,\"_627\":2275,\"_629\":1085,\"_631\":1962,\"_633\":217,\"_634\":210,\"_635\":2276,\"_637\":2277,\"_639\":25,\"_640\":3947,\"_642\":3948,\"_644\":2275,\"_645\":217,\"_646\":2274,\"_647\":210,\"_648\":2276,\"_649\":2277,\"_12\":2275,\"_651\":1307,\"_160\":2280,\"_173\":1105,\"_171\":654,\"_166\":751,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":752,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2280,\"_672\":-5,\"_673\":971,\"_674\":-5,\"_675\":-5},{\"_617\":2262,\"_619\":620,\"_621\":2263,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2264,\"_627\":2265,\"_629\":917,\"_631\":2266,\"_633\":217,\"_634\":210,\"_635\":2267,\"_637\":990,\"_639\":25,\"_640\":3945,\"_642\":3946,\"_644\":2265,\"_645\":217,\"_646\":2264,\"_647\":210,\"_648\":2267,\"_649\":990,\"_12\":2265,\"_651\":1078,\"_160\":2270,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2270,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2250,\"_619\":620,\"_621\":2251,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2252,\"_627\":2253,\"_629\":1524,\"_631\":2254,\"_633\":217,\"_634\":217,\"_635\":2255,\"_637\":2256,\"_639\":25,\"_640\":3943,\"_642\":3944,\"_644\":2253,\"_645\":217,\"_646\":2252,\"_647\":217,\"_648\":2255,\"_649\":2256,\"_12\":2259,\"_651\":1066,\"_160\":2260,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2260,\"_672\":-5,\"_673\":2011,\"_674\":-5,\"_675\":-5},{\"_617\":2237,\"_619\":620,\"_621\":2238,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2239,\"_627\":2240,\"_629\":1448,\"_631\":2241,\"_633\":217,\"_634\":223,\"_635\":2242,\"_637\":2243,\"_639\":25,\"_640\":3941,\"_642\":3942,\"_644\":2240,\"_645\":217,\"_646\":2239,\"_647\":223,\"_648\":2242,\"_649\":2243,\"_12\":2246,\"_651\":1158,\"_160\":2247,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2247,\"_672\":-5,\"_673\":2248,\"_674\":-5,\"_675\":-5},{\"_617\":2226,\"_619\":620,\"_621\":2227,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2228,\"_627\":2229,\"_629\":743,\"_631\":2230,\"_633\":217,\"_634\":217,\"_635\":2231,\"_637\":2232,\"_639\":25,\"_640\":3939,\"_642\":3940,\"_644\":2229,\"_645\":217,\"_646\":2228,\"_647\":217,\"_648\":2231,\"_649\":2232,\"_12\":1967,\"_651\":1103,\"_160\":2235,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2235,\"_672\":-5,\"_673\":982,\"_674\":-5,\"_675\":-5},{\"_617\":2215,\"_619\":620,\"_621\":2216,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2217,\"_627\":2218,\"_629\":1085,\"_631\":2219,\"_633\":217,\"_634\":210,\"_635\":2220,\"_637\":2221,\"_639\":25,\"_640\":3937,\"_642\":3938,\"_644\":2218,\"_645\":217,\"_646\":2217,\"_647\":210,\"_648\":2220,\"_649\":2221,\"_12\":2218,\"_651\":1078,\"_160\":2224,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2224,\"_672\":-5,\"_673\":805,\"_674\":-5,\"_675\":-5},{\"_617\":2202,\"_619\":620,\"_621\":2203,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2204,\"_627\":2205,\"_629\":1085,\"_631\":2206,\"_633\":217,\"_634\":210,\"_635\":2207,\"_637\":2208,\"_639\":25,\"_640\":3935,\"_642\":3936,\"_644\":2205,\"_645\":217,\"_646\":2204,\"_647\":210,\"_648\":2207,\"_649\":2208,\"_12\":2211,\"_651\":1078,\"_160\":2212,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2212,\"_672\":-5,\"_673\":2213,\"_674\":-5,\"_675\":-5},{\"_617\":2187,\"_619\":620,\"_621\":2188,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2189,\"_627\":2190,\"_629\":2191,\"_631\":2192,\"_633\":217,\"_634\":217,\"_635\":2193,\"_637\":2194,\"_639\":25,\"_640\":3933,\"_642\":3934,\"_644\":2190,\"_645\":217,\"_646\":2189,\"_647\":217,\"_648\":2193,\"_649\":2194,\"_12\":2197,\"_651\":2198,\"_160\":2199,\"_173\":750,\"_171\":1105,\"_166\":2200,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2199,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2175,\"_619\":620,\"_621\":2176,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2177,\"_627\":2178,\"_629\":835,\"_631\":2179,\"_633\":217,\"_634\":684,\"_635\":2180,\"_637\":2181,\"_639\":25,\"_640\":3931,\"_642\":3932,\"_644\":2178,\"_645\":217,\"_646\":2177,\"_647\":684,\"_648\":2180,\"_649\":2181,\"_12\":2184,\"_651\":2030,\"_160\":2185,\"_173\":780,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2185,\"_672\":-5,\"_673\":841,\"_674\":-5,\"_675\":-5},{\"_617\":2162,\"_619\":620,\"_621\":2163,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2164,\"_627\":2165,\"_629\":953,\"_631\":2166,\"_633\":217,\"_634\":223,\"_635\":2167,\"_637\":2168,\"_639\":25,\"_640\":3929,\"_642\":3930,\"_644\":2165,\"_645\":217,\"_646\":2164,\"_647\":223,\"_648\":2167,\"_649\":2168,\"_12\":2171,\"_651\":2172,\"_160\":2173,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2173,\"_672\":-5,\"_673\":959,\"_674\":-5,\"_675\":-5},{\"_617\":2148,\"_619\":620,\"_621\":2149,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2150,\"_627\":2151,\"_629\":2152,\"_631\":2153,\"_633\":217,\"_634\":201,\"_635\":2154,\"_637\":2155,\"_639\":25,\"_640\":3927,\"_642\":3928,\"_644\":2151,\"_645\":217,\"_646\":2150,\"_647\":201,\"_648\":2154,\"_649\":2155,\"_12\":2158,\"_651\":2159,\"_160\":2160,\"_173\":654,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":36,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2160,\"_672\":-5,\"_673\":720,\"_674\":-5,\"_675\":-5},{\"_617\":2102,\"_619\":620,\"_621\":2103,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2104,\"_627\":2105,\"_629\":1614,\"_631\":2106,\"_633\":217,\"_634\":210,\"_635\":2107,\"_637\":2108,\"_639\":25,\"_640\":3925,\"_642\":3926,\"_644\":2105,\"_645\":217,\"_646\":2104,\"_647\":210,\"_648\":2107,\"_649\":2108,\"_12\":2105,\"_651\":690,\"_160\":2111,\"_173\":692,\"_171\":654,\"_166\":691,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2111,\"_672\":-5,\"_673\":2112,\"_674\":-5,\"_675\":-5},{\"_617\":2090,\"_619\":620,\"_621\":2091,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2092,\"_627\":2093,\"_629\":1498,\"_631\":2094,\"_633\":217,\"_634\":210,\"_635\":2095,\"_637\":2096,\"_639\":25,\"_640\":3923,\"_642\":3924,\"_644\":2093,\"_645\":217,\"_646\":2092,\"_647\":210,\"_648\":2095,\"_649\":2096,\"_12\":2093,\"_651\":690,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":2099,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":2100,\"_674\":-5,\"_675\":-5},{\"_617\":2077,\"_619\":620,\"_621\":2078,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2079,\"_627\":2080,\"_629\":2081,\"_631\":2082,\"_633\":217,\"_634\":201,\"_635\":2083,\"_637\":2084,\"_639\":25,\"_640\":3921,\"_642\":3922,\"_644\":2080,\"_645\":217,\"_646\":2079,\"_647\":201,\"_648\":2083,\"_649\":2084,\"_12\":2087,\"_651\":778,\"_160\":805,\"_173\":692,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":2088,\"_674\":-5,\"_675\":-5},{\"_617\":2063,\"_619\":620,\"_621\":2064,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2065,\"_627\":2066,\"_629\":2067,\"_631\":2068,\"_633\":217,\"_634\":684,\"_635\":2069,\"_637\":2070,\"_639\":25,\"_640\":3919,\"_642\":3920,\"_644\":2066,\"_645\":217,\"_646\":2065,\"_647\":684,\"_648\":2069,\"_649\":2070,\"_12\":2066,\"_651\":690,\"_160\":2073,\"_173\":1105,\"_171\":654,\"_166\":2074,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":36,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2073,\"_672\":-5,\"_673\":2075,\"_674\":-5,\"_675\":-5},{\"_617\":2002,\"_619\":620,\"_621\":2003,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":2004,\"_627\":2005,\"_629\":2006,\"_631\":1823,\"_633\":217,\"_634\":215,\"_635\":2007,\"_637\":2008,\"_639\":25,\"_640\":3917,\"_642\":3918,\"_644\":2005,\"_645\":217,\"_646\":2004,\"_647\":215,\"_648\":2007,\"_649\":2008,\"_12\":2005,\"_651\":1078,\"_160\":2011,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":208,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":2011,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1989,\"_619\":620,\"_621\":1990,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1991,\"_627\":1992,\"_629\":1176,\"_631\":1993,\"_633\":217,\"_634\":215,\"_635\":1994,\"_637\":1995,\"_639\":25,\"_640\":3915,\"_642\":3916,\"_644\":1992,\"_645\":217,\"_646\":1991,\"_647\":215,\"_648\":1994,\"_649\":1995,\"_12\":1992,\"_651\":1158,\"_160\":1183,\"_173\":1998,\"_171\":654,\"_166\":1999,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":2000,\"_661\":736,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1183,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1978,\"_619\":620,\"_621\":1979,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1980,\"_627\":1981,\"_629\":965,\"_631\":1982,\"_633\":217,\"_634\":210,\"_635\":1983,\"_637\":1984,\"_639\":25,\"_640\":3913,\"_642\":3914,\"_644\":1981,\"_645\":217,\"_646\":1980,\"_647\":210,\"_648\":1983,\"_649\":1984,\"_12\":1987,\"_651\":1078,\"_160\":805,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1969,\"_619\":620,\"_621\":1970,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1971,\"_627\":1972,\"_629\":1883,\"_631\":1795,\"_633\":217,\"_634\":217,\"_635\":1973,\"_637\":1974,\"_639\":25,\"_640\":3911,\"_642\":3912,\"_644\":1972,\"_645\":217,\"_646\":1971,\"_647\":217,\"_648\":1973,\"_649\":1974,\"_12\":1972,\"_651\":1078,\"_160\":1067,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":1633,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1067,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1958,\"_619\":620,\"_621\":1959,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1960,\"_627\":1961,\"_629\":743,\"_631\":1962,\"_633\":217,\"_634\":684,\"_635\":1963,\"_637\":1964,\"_639\":25,\"_640\":3909,\"_642\":3910,\"_644\":1961,\"_645\":217,\"_646\":1960,\"_647\":684,\"_648\":1963,\"_649\":1964,\"_12\":1967,\"_651\":1207,\"_160\":749,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":749,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1947,\"_619\":620,\"_621\":1948,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1949,\"_627\":1950,\"_629\":953,\"_631\":1951,\"_633\":217,\"_634\":223,\"_635\":1952,\"_637\":1953,\"_639\":25,\"_640\":3907,\"_642\":3908,\"_644\":1950,\"_645\":217,\"_646\":1949,\"_647\":223,\"_648\":1952,\"_649\":1953,\"_12\":1950,\"_651\":1078,\"_160\":1956,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1956,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1936,\"_619\":620,\"_621\":1937,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1938,\"_627\":1939,\"_629\":1940,\"_631\":1907,\"_633\":217,\"_634\":217,\"_635\":1941,\"_637\":1942,\"_639\":25,\"_640\":3905,\"_642\":3906,\"_644\":1939,\"_645\":217,\"_646\":1938,\"_647\":217,\"_648\":1941,\"_649\":1942,\"_12\":1939,\"_651\":1945,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1923,\"_619\":620,\"_621\":1924,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1925,\"_627\":1926,\"_629\":1807,\"_631\":1927,\"_633\":217,\"_634\":207,\"_635\":1928,\"_637\":1929,\"_639\":25,\"_640\":3903,\"_642\":3904,\"_644\":1926,\"_645\":217,\"_646\":1925,\"_647\":207,\"_648\":1928,\"_649\":1929,\"_12\":1926,\"_651\":1078,\"_160\":1932,\"_173\":780,\"_171\":654,\"_166\":1933,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":1934,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1932,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1914,\"_619\":620,\"_621\":1915,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1916,\"_627\":1917,\"_629\":1085,\"_631\":744,\"_633\":217,\"_634\":210,\"_635\":1918,\"_637\":1919,\"_639\":25,\"_640\":3901,\"_642\":3902,\"_644\":1917,\"_645\":217,\"_646\":1916,\"_647\":210,\"_648\":1918,\"_649\":1919,\"_12\":1917,\"_651\":1066,\"_160\":1380,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1380,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1903,\"_619\":620,\"_621\":1904,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1905,\"_627\":1906,\"_629\":743,\"_631\":1907,\"_633\":217,\"_634\":217,\"_635\":1908,\"_637\":1909,\"_639\":25,\"_640\":3899,\"_642\":3900,\"_644\":1906,\"_645\":217,\"_646\":1905,\"_647\":217,\"_648\":1908,\"_649\":1909,\"_12\":1912,\"_651\":1078,\"_160\":1577,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1577,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1891,\"_619\":620,\"_621\":1892,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1893,\"_627\":1894,\"_629\":1895,\"_631\":1896,\"_633\":203,\"_634\":203,\"_635\":1897,\"_637\":1898,\"_639\":25,\"_640\":3897,\"_642\":3898,\"_644\":1894,\"_645\":203,\"_646\":1893,\"_647\":203,\"_648\":1897,\"_649\":1898,\"_12\":1894,\"_651\":1901,\"_160\":1462,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1462,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1879,\"_619\":620,\"_621\":1880,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1881,\"_627\":1882,\"_629\":1883,\"_631\":988,\"_633\":217,\"_634\":214,\"_635\":1884,\"_637\":1885,\"_639\":25,\"_640\":3895,\"_642\":3896,\"_644\":1882,\"_645\":217,\"_646\":1881,\"_647\":214,\"_648\":1884,\"_649\":1885,\"_12\":1882,\"_651\":1078,\"_160\":1888,\"_173\":654,\"_171\":654,\"_166\":1889,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1888,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1866,\"_619\":620,\"_621\":1867,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1868,\"_627\":1869,\"_629\":1870,\"_631\":1871,\"_633\":217,\"_634\":215,\"_635\":1872,\"_637\":1873,\"_639\":25,\"_640\":3893,\"_642\":3894,\"_644\":1869,\"_645\":217,\"_646\":1868,\"_647\":215,\"_648\":1872,\"_649\":1873,\"_12\":1876,\"_651\":1800,\"_160\":1877,\"_173\":692,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1877,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1854,\"_619\":620,\"_621\":1855,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1856,\"_627\":1857,\"_629\":743,\"_631\":1858,\"_633\":217,\"_634\":217,\"_635\":1859,\"_637\":1860,\"_639\":25,\"_640\":3891,\"_642\":3892,\"_644\":1857,\"_645\":217,\"_646\":1856,\"_647\":217,\"_648\":1859,\"_649\":1860,\"_12\":1863,\"_651\":1078,\"_160\":1864,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1864,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1844,\"_619\":620,\"_621\":1845,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1846,\"_627\":1847,\"_629\":1524,\"_631\":1848,\"_633\":217,\"_634\":201,\"_635\":1849,\"_637\":1850,\"_639\":25,\"_640\":3889,\"_642\":3890,\"_644\":1847,\"_645\":217,\"_646\":1846,\"_647\":201,\"_648\":1849,\"_649\":1850,\"_12\":1847,\"_651\":1307,\"_160\":1005,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1005,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1831,\"_619\":620,\"_621\":1832,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1833,\"_627\":1834,\"_629\":1835,\"_631\":1836,\"_633\":217,\"_634\":684,\"_635\":1837,\"_637\":1838,\"_639\":25,\"_640\":3887,\"_642\":3888,\"_644\":1834,\"_645\":217,\"_646\":1833,\"_647\":684,\"_648\":1837,\"_649\":1838,\"_12\":1841,\"_651\":1103,\"_160\":1842,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1842,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1818,\"_619\":620,\"_621\":1819,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1820,\"_627\":1821,\"_629\":1822,\"_631\":1823,\"_633\":217,\"_634\":684,\"_635\":1824,\"_637\":1825,\"_639\":25,\"_640\":3885,\"_642\":3886,\"_644\":1821,\"_645\":217,\"_646\":1820,\"_647\":684,\"_648\":1824,\"_649\":1825,\"_12\":1821,\"_651\":1158,\"_160\":1828,\"_173\":692,\"_171\":654,\"_166\":1829,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1828,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1803,\"_619\":620,\"_621\":1804,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1805,\"_627\":1806,\"_629\":1807,\"_631\":1808,\"_633\":217,\"_634\":207,\"_635\":1809,\"_637\":1810,\"_639\":25,\"_640\":3883,\"_642\":3884,\"_644\":1806,\"_645\":217,\"_646\":1805,\"_647\":207,\"_648\":1809,\"_649\":1810,\"_12\":1813,\"_651\":1814,\"_160\":1815,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1816,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1815,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1791,\"_619\":620,\"_621\":1792,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1793,\"_627\":1794,\"_629\":713,\"_631\":1795,\"_633\":217,\"_634\":684,\"_635\":1796,\"_637\":1797,\"_639\":25,\"_640\":3881,\"_642\":3882,\"_644\":1794,\"_645\":217,\"_646\":1793,\"_647\":684,\"_648\":1796,\"_649\":1797,\"_12\":1794,\"_651\":1800,\"_160\":1653,\"_173\":946,\"_171\":654,\"_166\":1801,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":200,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1653,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1780,\"_619\":620,\"_621\":1781,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1782,\"_627\":1783,\"_629\":891,\"_631\":1784,\"_633\":217,\"_634\":684,\"_635\":1785,\"_637\":1786,\"_639\":25,\"_640\":3879,\"_642\":3880,\"_644\":1783,\"_645\":217,\"_646\":1782,\"_647\":684,\"_648\":1785,\"_649\":1786,\"_12\":1789,\"_651\":1103,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1768,\"_619\":620,\"_621\":1769,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1770,\"_627\":1771,\"_629\":1772,\"_631\":1400,\"_633\":217,\"_634\":217,\"_635\":1773,\"_637\":1774,\"_639\":25,\"_640\":3877,\"_642\":3878,\"_644\":1771,\"_645\":217,\"_646\":1770,\"_647\":217,\"_648\":1773,\"_649\":1774,\"_12\":1777,\"_651\":1103,\"_160\":691,\"_173\":946,\"_171\":654,\"_166\":1778,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":691,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1757,\"_619\":620,\"_621\":1758,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1759,\"_627\":1760,\"_629\":1761,\"_631\":780,\"_633\":217,\"_634\":684,\"_635\":1762,\"_637\":1763,\"_639\":25,\"_640\":3875,\"_642\":3876,\"_644\":1760,\"_645\":217,\"_646\":1759,\"_647\":684,\"_648\":1762,\"_649\":1763,\"_12\":1760,\"_651\":1766,\"_160\":720,\"_173\":1105,\"_171\":654,\"_166\":1430,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":752,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1746,\"_619\":620,\"_621\":1747,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1748,\"_627\":1749,\"_629\":1627,\"_631\":1750,\"_633\":217,\"_634\":215,\"_635\":1751,\"_637\":1752,\"_639\":25,\"_640\":3873,\"_642\":3874,\"_644\":1749,\"_645\":217,\"_646\":1748,\"_647\":215,\"_648\":1751,\"_649\":1752,\"_12\":1755,\"_651\":1078,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1735,\"_619\":620,\"_621\":1736,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1737,\"_627\":1738,\"_629\":1461,\"_631\":1739,\"_633\":217,\"_634\":217,\"_635\":1740,\"_637\":1741,\"_639\":25,\"_640\":3871,\"_642\":3872,\"_644\":1738,\"_645\":217,\"_646\":1737,\"_647\":217,\"_648\":1740,\"_649\":1741,\"_12\":1738,\"_651\":1158,\"_160\":1067,\"_173\":654,\"_171\":654,\"_166\":1744,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":736,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1067,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1722,\"_619\":620,\"_621\":1723,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1724,\"_627\":1725,\"_629\":1137,\"_631\":1726,\"_633\":217,\"_634\":199,\"_635\":1727,\"_637\":1728,\"_639\":25,\"_640\":3869,\"_642\":3870,\"_644\":1725,\"_645\":217,\"_646\":1724,\"_647\":199,\"_648\":1727,\"_649\":1728,\"_12\":1731,\"_651\":1732,\"_160\":1733,\"_173\":692,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1733,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1712,\"_619\":620,\"_621\":1713,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1714,\"_627\":1715,\"_629\":1448,\"_631\":1716,\"_633\":217,\"_634\":684,\"_635\":1717,\"_637\":1718,\"_639\":25,\"_640\":3867,\"_642\":3868,\"_644\":1715,\"_645\":217,\"_646\":1714,\"_647\":684,\"_648\":1717,\"_649\":1718,\"_12\":1715,\"_651\":1066,\"_160\":720,\"_173\":654,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1702,\"_619\":620,\"_621\":1703,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1704,\"_627\":1705,\"_629\":891,\"_631\":1706,\"_633\":217,\"_634\":219,\"_635\":1707,\"_637\":1708,\"_639\":25,\"_640\":3865,\"_642\":3866,\"_644\":1705,\"_645\":217,\"_646\":1704,\"_647\":219,\"_648\":1707,\"_649\":1708,\"_12\":1705,\"_651\":1158,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1690,\"_619\":620,\"_621\":1691,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1692,\"_627\":1693,\"_629\":891,\"_631\":1694,\"_633\":217,\"_634\":217,\"_635\":1695,\"_637\":1696,\"_639\":25,\"_640\":3863,\"_642\":3864,\"_644\":1693,\"_645\":217,\"_646\":1692,\"_647\":217,\"_648\":1695,\"_649\":1696,\"_12\":1693,\"_651\":1699,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":1700,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1677,\"_619\":620,\"_621\":1678,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1679,\"_627\":1680,\"_629\":1137,\"_631\":1681,\"_633\":217,\"_634\":199,\"_635\":1682,\"_637\":1683,\"_639\":25,\"_640\":3861,\"_642\":3862,\"_644\":1680,\"_645\":217,\"_646\":1679,\"_647\":199,\"_648\":1682,\"_649\":1683,\"_12\":1686,\"_651\":1687,\"_160\":1688,\"_173\":780,\"_171\":654,\"_166\":884,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1688,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1664,\"_619\":620,\"_621\":1665,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1666,\"_627\":1667,\"_629\":1668,\"_631\":1669,\"_633\":217,\"_634\":215,\"_635\":1670,\"_637\":1671,\"_639\":25,\"_640\":3859,\"_642\":3860,\"_644\":1667,\"_645\":217,\"_646\":1666,\"_647\":215,\"_648\":1670,\"_649\":1671,\"_12\":1667,\"_651\":1103,\"_160\":1674,\"_173\":780,\"_171\":654,\"_166\":1675,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":208,\"_661\":752,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1674,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1655,\"_619\":620,\"_621\":1656,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1657,\"_627\":1658,\"_629\":891,\"_631\":1577,\"_633\":217,\"_634\":219,\"_635\":1659,\"_637\":1660,\"_639\":25,\"_640\":3857,\"_642\":3858,\"_644\":1658,\"_645\":217,\"_646\":1657,\"_647\":219,\"_648\":1659,\"_649\":1660,\"_12\":1658,\"_651\":1307,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1645,\"_619\":620,\"_621\":1646,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1647,\"_627\":1648,\"_629\":1498,\"_631\":1400,\"_633\":217,\"_634\":210,\"_635\":1649,\"_637\":1650,\"_639\":25,\"_640\":3855,\"_642\":3856,\"_644\":1648,\"_645\":217,\"_646\":1647,\"_647\":210,\"_648\":1649,\"_649\":1650,\"_12\":1648,\"_651\":1066,\"_160\":1653,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1653,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1635,\"_619\":620,\"_621\":1636,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1637,\"_627\":1638,\"_629\":758,\"_631\":1639,\"_633\":217,\"_634\":213,\"_635\":1640,\"_637\":1641,\"_639\":25,\"_640\":3853,\"_642\":3854,\"_644\":1638,\"_645\":217,\"_646\":1637,\"_647\":213,\"_648\":1640,\"_649\":1641,\"_12\":1638,\"_651\":1543,\"_160\":1544,\"_173\":780,\"_171\":654,\"_166\":1545,\"_656\":36,\"_657\":208,\"_658\":25,\"_659\":1546,\"_661\":208,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1544,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1623,\"_619\":620,\"_621\":1624,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1625,\"_627\":1626,\"_629\":1627,\"_631\":1628,\"_633\":217,\"_634\":215,\"_635\":1629,\"_637\":1630,\"_639\":25,\"_640\":3851,\"_642\":3852,\"_644\":1626,\"_645\":217,\"_646\":1625,\"_647\":215,\"_648\":1629,\"_649\":1630,\"_12\":1626,\"_651\":1078,\"_160\":707,\"_173\":654,\"_171\":654,\"_166\":1492,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":1633,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":707,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1610,\"_619\":620,\"_621\":1611,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1612,\"_627\":1613,\"_629\":1614,\"_631\":1615,\"_633\":217,\"_634\":684,\"_635\":1616,\"_637\":1617,\"_639\":25,\"_640\":3849,\"_642\":3850,\"_644\":1613,\"_645\":217,\"_646\":1612,\"_647\":684,\"_648\":1616,\"_649\":1617,\"_12\":1613,\"_651\":1066,\"_160\":1620,\"_173\":750,\"_171\":1105,\"_166\":1621,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1620,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1599,\"_619\":620,\"_621\":1600,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1601,\"_627\":1602,\"_629\":1085,\"_631\":1603,\"_633\":217,\"_634\":210,\"_635\":1604,\"_637\":1605,\"_639\":25,\"_640\":3847,\"_642\":3848,\"_644\":1602,\"_645\":217,\"_646\":1601,\"_647\":210,\"_648\":1604,\"_649\":1605,\"_12\":1602,\"_651\":1078,\"_160\":1608,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1608,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1589,\"_619\":620,\"_621\":1590,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1591,\"_627\":1592,\"_629\":1498,\"_631\":1593,\"_633\":217,\"_634\":684,\"_635\":1594,\"_637\":1595,\"_639\":25,\"_640\":3845,\"_642\":3846,\"_644\":1592,\"_645\":217,\"_646\":1591,\"_647\":684,\"_648\":1594,\"_649\":1595,\"_12\":1592,\"_651\":1078,\"_160\":720,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1579,\"_619\":620,\"_621\":1580,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1581,\"_627\":1582,\"_629\":743,\"_631\":877,\"_633\":217,\"_634\":223,\"_635\":1583,\"_637\":1584,\"_639\":25,\"_640\":3843,\"_642\":3844,\"_644\":1582,\"_645\":217,\"_646\":1581,\"_647\":223,\"_648\":1583,\"_649\":1584,\"_12\":1582,\"_651\":1587,\"_160\":749,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":749,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1568,\"_619\":620,\"_621\":1569,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1570,\"_627\":1571,\"_629\":743,\"_631\":1572,\"_633\":217,\"_634\":223,\"_635\":1573,\"_637\":1574,\"_639\":25,\"_640\":3841,\"_642\":3842,\"_644\":1571,\"_645\":217,\"_646\":1570,\"_647\":223,\"_648\":1573,\"_649\":1574,\"_12\":1454,\"_651\":1078,\"_160\":1577,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1577,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1559,\"_619\":620,\"_621\":1560,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1561,\"_627\":1562,\"_629\":630,\"_631\":862,\"_633\":217,\"_634\":199,\"_635\":1563,\"_637\":1564,\"_639\":25,\"_640\":3839,\"_642\":3840,\"_644\":1562,\"_645\":217,\"_646\":1561,\"_647\":199,\"_648\":1563,\"_649\":1564,\"_12\":1562,\"_651\":1418,\"_160\":691,\"_173\":780,\"_171\":654,\"_166\":884,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":660,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":691,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1548,\"_619\":620,\"_621\":1549,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1550,\"_627\":1551,\"_629\":1552,\"_631\":1553,\"_633\":217,\"_634\":223,\"_635\":1554,\"_637\":1555,\"_639\":25,\"_640\":3837,\"_642\":3838,\"_644\":1551,\"_645\":217,\"_646\":1550,\"_647\":223,\"_648\":1554,\"_649\":1555,\"_12\":1551,\"_651\":1158,\"_160\":959,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":959,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1533,\"_619\":620,\"_621\":1534,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1535,\"_627\":1536,\"_629\":1537,\"_631\":1538,\"_633\":217,\"_634\":213,\"_635\":1539,\"_637\":1540,\"_639\":25,\"_640\":3835,\"_642\":3836,\"_644\":1536,\"_645\":217,\"_646\":1535,\"_647\":213,\"_648\":1539,\"_649\":1540,\"_12\":1536,\"_651\":1543,\"_160\":1544,\"_173\":780,\"_171\":654,\"_166\":1545,\"_656\":36,\"_657\":752,\"_658\":25,\"_659\":1546,\"_661\":752,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1544,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1520,\"_619\":620,\"_621\":1521,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1522,\"_627\":1523,\"_629\":1524,\"_631\":1525,\"_633\":217,\"_634\":201,\"_635\":1526,\"_637\":1527,\"_639\":25,\"_640\":3833,\"_642\":3834,\"_644\":1523,\"_645\":217,\"_646\":1522,\"_647\":201,\"_648\":1526,\"_649\":1527,\"_12\":1523,\"_651\":1530,\"_160\":1531,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1531,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1505,\"_619\":620,\"_621\":1506,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1507,\"_627\":1508,\"_629\":861,\"_631\":1509,\"_633\":217,\"_634\":207,\"_635\":1510,\"_637\":1511,\"_639\":25,\"_640\":3831,\"_642\":3832,\"_644\":1508,\"_645\":217,\"_646\":1507,\"_647\":207,\"_648\":1510,\"_649\":1511,\"_12\":1514,\"_651\":1515,\"_160\":1516,\"_173\":1105,\"_171\":654,\"_166\":1517,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":1518,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1516,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1494,\"_619\":620,\"_621\":1495,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1496,\"_627\":1497,\"_629\":1498,\"_631\":773,\"_633\":217,\"_634\":210,\"_635\":1499,\"_637\":1500,\"_639\":25,\"_640\":3829,\"_642\":3830,\"_644\":1497,\"_645\":217,\"_646\":1496,\"_647\":210,\"_648\":1499,\"_649\":1500,\"_12\":1497,\"_651\":1158,\"_160\":1503,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1503,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1482,\"_619\":620,\"_621\":1483,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1484,\"_627\":1485,\"_629\":1486,\"_631\":799,\"_633\":217,\"_634\":215,\"_635\":1487,\"_637\":1488,\"_639\":25,\"_640\":3827,\"_642\":3828,\"_644\":1485,\"_645\":217,\"_646\":1484,\"_647\":215,\"_648\":1487,\"_649\":1488,\"_12\":1485,\"_651\":1491,\"_160\":841,\"_173\":1105,\"_171\":654,\"_166\":1492,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":416,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1470,\"_619\":620,\"_621\":1471,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1472,\"_627\":1473,\"_629\":758,\"_631\":1474,\"_633\":217,\"_634\":217,\"_635\":1475,\"_637\":1476,\"_639\":25,\"_640\":3825,\"_642\":3826,\"_644\":1473,\"_645\":217,\"_646\":1472,\"_647\":217,\"_648\":1475,\"_649\":1476,\"_12\":1473,\"_651\":1479,\"_160\":1480,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1480,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1457,\"_619\":620,\"_621\":1458,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1459,\"_627\":1460,\"_629\":1461,\"_631\":1462,\"_633\":217,\"_634\":217,\"_635\":1463,\"_637\":1464,\"_639\":25,\"_640\":3823,\"_642\":3824,\"_644\":1460,\"_645\":217,\"_646\":1459,\"_647\":217,\"_648\":1463,\"_649\":1464,\"_12\":1460,\"_651\":1078,\"_160\":1467,\"_173\":750,\"_171\":654,\"_166\":1468,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":752,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1467,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1444,\"_619\":620,\"_621\":1445,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1446,\"_627\":1447,\"_629\":1448,\"_631\":1449,\"_633\":217,\"_634\":223,\"_635\":1450,\"_637\":1451,\"_639\":25,\"_640\":3821,\"_642\":3822,\"_644\":1447,\"_645\":217,\"_646\":1446,\"_647\":223,\"_648\":1450,\"_649\":1451,\"_12\":1454,\"_651\":1158,\"_160\":1455,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1455,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1432,\"_619\":620,\"_621\":1433,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1434,\"_627\":1435,\"_629\":1436,\"_631\":773,\"_633\":217,\"_634\":217,\"_635\":1437,\"_637\":1438,\"_639\":25,\"_640\":3819,\"_642\":3820,\"_644\":1435,\"_645\":217,\"_646\":1434,\"_647\":217,\"_648\":1437,\"_649\":1438,\"_12\":1435,\"_651\":1441,\"_160\":1442,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1442,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1421,\"_619\":620,\"_621\":1422,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1423,\"_627\":1424,\"_629\":1112,\"_631\":1425,\"_633\":217,\"_634\":215,\"_635\":1426,\"_637\":1427,\"_639\":25,\"_640\":3817,\"_642\":3818,\"_644\":1424,\"_645\":217,\"_646\":1423,\"_647\":215,\"_648\":1426,\"_649\":1427,\"_12\":1424,\"_651\":1307,\"_160\":765,\"_173\":654,\"_171\":654,\"_166\":1430,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":765,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1408,\"_619\":620,\"_621\":1409,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1410,\"_627\":1411,\"_629\":1412,\"_631\":1413,\"_633\":217,\"_634\":684,\"_635\":1414,\"_637\":1415,\"_639\":25,\"_640\":3815,\"_642\":3816,\"_644\":1411,\"_645\":217,\"_646\":1410,\"_647\":684,\"_648\":1414,\"_649\":1415,\"_12\":1411,\"_651\":1418,\"_160\":1419,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1419,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1395,\"_619\":620,\"_621\":1396,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1397,\"_627\":1398,\"_629\":1399,\"_631\":1400,\"_633\":217,\"_634\":210,\"_635\":1401,\"_637\":1402,\"_639\":25,\"_640\":3813,\"_642\":3814,\"_644\":1398,\"_645\":217,\"_646\":1397,\"_647\":210,\"_648\":1401,\"_649\":1402,\"_12\":1405,\"_651\":1078,\"_160\":1406,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1406,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1382,\"_619\":620,\"_621\":1383,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1384,\"_627\":1385,\"_629\":1137,\"_631\":1386,\"_633\":217,\"_634\":199,\"_635\":1387,\"_637\":1388,\"_639\":25,\"_640\":3811,\"_642\":3812,\"_644\":1385,\"_645\":217,\"_646\":1384,\"_647\":199,\"_648\":1387,\"_649\":1388,\"_12\":1391,\"_651\":1392,\"_160\":1393,\"_173\":946,\"_171\":654,\"_166\":1220,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":885,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1393,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1370,\"_619\":620,\"_621\":1371,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1372,\"_627\":1373,\"_629\":1374,\"_631\":1375,\"_633\":217,\"_634\":210,\"_635\":1376,\"_637\":1377,\"_639\":25,\"_640\":3809,\"_642\":3810,\"_644\":1373,\"_645\":217,\"_646\":1372,\"_647\":210,\"_648\":1376,\"_649\":1377,\"_12\":1373,\"_651\":1078,\"_160\":1380,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1380,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1357,\"_619\":620,\"_621\":1358,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1359,\"_627\":1360,\"_629\":1361,\"_631\":1362,\"_633\":217,\"_634\":217,\"_635\":1363,\"_637\":1364,\"_639\":25,\"_640\":3807,\"_642\":3808,\"_644\":1360,\"_645\":217,\"_646\":1359,\"_647\":217,\"_648\":1363,\"_649\":1364,\"_12\":1367,\"_651\":1078,\"_160\":1368,\"_173\":654,\"_171\":654,\"_166\":735,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1368,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1343,\"_619\":620,\"_621\":1344,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1345,\"_627\":1346,\"_629\":1347,\"_631\":1348,\"_633\":217,\"_634\":684,\"_635\":1349,\"_637\":1350,\"_639\":25,\"_640\":3805,\"_642\":3806,\"_644\":1346,\"_645\":217,\"_646\":1345,\"_647\":684,\"_648\":1349,\"_649\":1350,\"_12\":1346,\"_651\":1353,\"_160\":1354,\"_173\":1184,\"_171\":654,\"_166\":1355,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1354,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1333,\"_619\":620,\"_621\":1334,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1335,\"_627\":1336,\"_629\":743,\"_631\":1337,\"_633\":217,\"_634\":223,\"_635\":1338,\"_637\":1339,\"_639\":25,\"_640\":3803,\"_642\":3804,\"_644\":1336,\"_645\":217,\"_646\":1335,\"_647\":223,\"_648\":1338,\"_649\":1339,\"_12\":1336,\"_651\":1207,\"_160\":1170,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1170,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1323,\"_619\":620,\"_621\":1324,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1325,\"_627\":1326,\"_629\":743,\"_631\":1327,\"_633\":217,\"_634\":217,\"_635\":1165,\"_637\":1328,\"_639\":25,\"_640\":3801,\"_642\":3802,\"_644\":1326,\"_645\":217,\"_646\":1325,\"_647\":217,\"_648\":1165,\"_649\":1328,\"_12\":1331,\"_651\":1158,\"_160\":1170,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1170,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1310,\"_619\":620,\"_621\":1311,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1312,\"_627\":1313,\"_629\":1314,\"_631\":1315,\"_633\":217,\"_634\":684,\"_635\":1316,\"_637\":1317,\"_639\":25,\"_640\":3799,\"_642\":3800,\"_644\":1313,\"_645\":217,\"_646\":1312,\"_647\":684,\"_648\":1316,\"_649\":1317,\"_12\":1320,\"_651\":1103,\"_160\":1321,\"_173\":780,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1321,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1298,\"_619\":620,\"_621\":1299,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1300,\"_627\":1301,\"_629\":953,\"_631\":1302,\"_633\":217,\"_634\":223,\"_635\":1303,\"_637\":1304,\"_639\":25,\"_640\":3797,\"_642\":3798,\"_644\":1301,\"_645\":217,\"_646\":1300,\"_647\":223,\"_648\":1303,\"_649\":1304,\"_12\":1301,\"_651\":1307,\"_160\":1308,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1308,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1286,\"_619\":620,\"_621\":1287,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1288,\"_627\":1289,\"_629\":1085,\"_631\":1290,\"_633\":217,\"_634\":217,\"_635\":1291,\"_637\":1292,\"_639\":25,\"_640\":3795,\"_642\":3796,\"_644\":1289,\"_645\":217,\"_646\":1288,\"_647\":217,\"_648\":1291,\"_649\":1292,\"_12\":1295,\"_651\":1158,\"_160\":1296,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1296,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1270,\"_619\":620,\"_621\":1271,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1272,\"_627\":1273,\"_629\":1274,\"_631\":1275,\"_633\":1276,\"_634\":684,\"_635\":1277,\"_637\":1278,\"_639\":25,\"_640\":3793,\"_642\":3794,\"_644\":1273,\"_645\":1276,\"_646\":1272,\"_647\":684,\"_648\":1277,\"_649\":1278,\"_12\":1281,\"_651\":1282,\"_160\":1283,\"_173\":750,\"_171\":654,\"_166\":1284,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1283,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1258,\"_619\":620,\"_621\":1259,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1260,\"_627\":1261,\"_629\":876,\"_631\":773,\"_633\":217,\"_634\":207,\"_635\":1262,\"_637\":1263,\"_639\":25,\"_640\":3791,\"_642\":3792,\"_644\":1261,\"_645\":217,\"_646\":1260,\"_647\":207,\"_648\":1262,\"_649\":1263,\"_12\":1266,\"_651\":1267,\"_160\":1268,\"_173\":780,\"_171\":654,\"_166\":884,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":885,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1268,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1245,\"_619\":620,\"_621\":1246,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1247,\"_627\":1248,\"_629\":1249,\"_631\":1250,\"_633\":217,\"_634\":684,\"_635\":1251,\"_637\":1252,\"_639\":25,\"_640\":3789,\"_642\":3790,\"_644\":1248,\"_645\":217,\"_646\":1247,\"_647\":684,\"_648\":1251,\"_649\":1252,\"_12\":1248,\"_651\":1158,\"_160\":720,\"_173\":1105,\"_171\":654,\"_166\":1255,\"_656\":36,\"_657\":220,\"_658\":25,\"_659\":1256,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":720,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1232,\"_619\":620,\"_621\":1233,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1234,\"_627\":1235,\"_629\":1236,\"_631\":1237,\"_633\":217,\"_634\":205,\"_635\":1238,\"_637\":1239,\"_639\":25,\"_640\":3787,\"_642\":3788,\"_644\":1235,\"_645\":217,\"_646\":1234,\"_647\":205,\"_648\":1238,\"_649\":1239,\"_12\":1235,\"_651\":1242,\"_160\":1243,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":660,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1243,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1222,\"_619\":620,\"_621\":1223,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1224,\"_627\":1225,\"_629\":891,\"_631\":1226,\"_633\":217,\"_634\":217,\"_635\":1227,\"_637\":1228,\"_639\":25,\"_640\":3785,\"_642\":3786,\"_644\":1225,\"_645\":217,\"_646\":1224,\"_647\":217,\"_648\":1227,\"_649\":1228,\"_12\":1225,\"_651\":1118,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1210,\"_619\":620,\"_621\":1211,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1212,\"_627\":1213,\"_629\":630,\"_631\":1214,\"_633\":217,\"_634\":199,\"_635\":1215,\"_637\":1216,\"_639\":25,\"_640\":3783,\"_642\":3784,\"_644\":1213,\"_645\":217,\"_646\":1212,\"_647\":199,\"_648\":1215,\"_649\":1216,\"_12\":1219,\"_651\":1078,\"_160\":841,\"_173\":1105,\"_171\":654,\"_166\":1220,\"_656\":36,\"_657\":220,\"_658\":36,\"_659\":660,\"_661\":220,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1198,\"_619\":620,\"_621\":1199,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1200,\"_627\":1201,\"_629\":1085,\"_631\":1202,\"_633\":217,\"_634\":210,\"_635\":1203,\"_637\":1204,\"_639\":25,\"_640\":3781,\"_642\":3782,\"_644\":1201,\"_645\":217,\"_646\":1200,\"_647\":210,\"_648\":1203,\"_649\":1204,\"_12\":1201,\"_651\":1207,\"_160\":805,\"_173\":780,\"_171\":654,\"_166\":1208,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":220,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1187,\"_619\":620,\"_621\":1188,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1189,\"_627\":1190,\"_629\":1085,\"_631\":1191,\"_633\":217,\"_634\":210,\"_635\":1192,\"_637\":1193,\"_639\":25,\"_640\":3779,\"_642\":3780,\"_644\":1190,\"_645\":217,\"_646\":1189,\"_647\":210,\"_648\":1192,\"_649\":1193,\"_12\":1196,\"_651\":1078,\"_160\":971,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":971,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1172,\"_619\":620,\"_621\":1173,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1174,\"_627\":1175,\"_629\":1176,\"_631\":1177,\"_633\":217,\"_634\":215,\"_635\":1178,\"_637\":1179,\"_639\":25,\"_640\":3777,\"_642\":3778,\"_644\":1175,\"_645\":217,\"_646\":1174,\"_647\":215,\"_648\":1178,\"_649\":1179,\"_12\":1175,\"_651\":1182,\"_160\":1183,\"_173\":1184,\"_171\":654,\"_166\":1185,\"_656\":36,\"_657\":736,\"_658\":25,\"_659\":202,\"_661\":736,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1183,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1160,\"_619\":620,\"_621\":1161,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1162,\"_627\":1163,\"_629\":743,\"_631\":1164,\"_633\":217,\"_634\":217,\"_635\":1165,\"_637\":1166,\"_639\":25,\"_640\":3775,\"_642\":3776,\"_644\":1163,\"_645\":217,\"_646\":1162,\"_647\":217,\"_648\":1165,\"_649\":1166,\"_12\":1169,\"_651\":1078,\"_160\":1170,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1170,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1148,\"_619\":620,\"_621\":1149,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1150,\"_627\":1151,\"_629\":891,\"_631\":1152,\"_633\":217,\"_634\":217,\"_635\":1153,\"_637\":1154,\"_639\":25,\"_640\":3773,\"_642\":3774,\"_644\":1151,\"_645\":217,\"_646\":1150,\"_647\":217,\"_648\":1153,\"_649\":1154,\"_12\":1157,\"_651\":1158,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1133,\"_619\":620,\"_621\":1134,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1135,\"_627\":1136,\"_629\":1137,\"_631\":1138,\"_633\":217,\"_634\":199,\"_635\":1139,\"_637\":1140,\"_639\":25,\"_640\":3771,\"_642\":3772,\"_644\":1136,\"_645\":217,\"_646\":1135,\"_647\":199,\"_648\":1139,\"_649\":1140,\"_12\":1143,\"_651\":1144,\"_160\":1145,\"_173\":750,\"_171\":654,\"_166\":1146,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":885,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1145,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1121,\"_619\":620,\"_621\":1122,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1123,\"_627\":1124,\"_629\":1125,\"_631\":799,\"_633\":217,\"_634\":212,\"_635\":1126,\"_637\":1127,\"_639\":25,\"_640\":3769,\"_642\":3770,\"_644\":1124,\"_645\":217,\"_646\":1123,\"_647\":212,\"_648\":1126,\"_649\":1127,\"_12\":1130,\"_651\":1078,\"_160\":923,\"_173\":780,\"_171\":654,\"_166\":1131,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1108,\"_619\":620,\"_621\":1109,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1110,\"_627\":1111,\"_629\":1112,\"_631\":1113,\"_633\":217,\"_634\":215,\"_635\":1114,\"_637\":1115,\"_639\":25,\"_640\":3767,\"_642\":3768,\"_644\":1111,\"_645\":217,\"_646\":1110,\"_647\":215,\"_648\":1114,\"_649\":1115,\"_12\":1111,\"_651\":1118,\"_160\":1119,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":206,\"_661\":206,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1119,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1093,\"_619\":620,\"_621\":1094,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1095,\"_627\":1096,\"_629\":1097,\"_631\":1098,\"_633\":217,\"_634\":215,\"_635\":1099,\"_637\":1100,\"_639\":25,\"_640\":3765,\"_642\":3766,\"_644\":1096,\"_645\":217,\"_646\":1095,\"_647\":215,\"_648\":1099,\"_649\":1100,\"_12\":1096,\"_651\":1103,\"_160\":1104,\"_173\":1105,\"_171\":654,\"_166\":751,\"_656\":36,\"_657\":200,\"_658\":36,\"_659\":1106,\"_661\":200,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1104,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1081,\"_619\":620,\"_621\":1082,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1083,\"_627\":1084,\"_629\":1085,\"_631\":1086,\"_633\":217,\"_634\":210,\"_635\":1087,\"_637\":1088,\"_639\":25,\"_640\":3763,\"_642\":3764,\"_644\":1084,\"_645\":217,\"_646\":1083,\"_647\":210,\"_648\":1087,\"_649\":1088,\"_12\":1084,\"_651\":1078,\"_160\":1091,\"_173\":692,\"_171\":654,\"_166\":779,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1091,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1069,\"_619\":620,\"_621\":1070,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1071,\"_627\":1072,\"_629\":965,\"_631\":1073,\"_633\":217,\"_634\":217,\"_635\":1074,\"_637\":1075,\"_639\":25,\"_640\":3761,\"_642\":3762,\"_644\":1072,\"_645\":217,\"_646\":1071,\"_647\":217,\"_648\":1074,\"_649\":1075,\"_12\":1072,\"_651\":1078,\"_160\":1079,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1079,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1057,\"_619\":620,\"_621\":1058,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1059,\"_627\":1060,\"_629\":823,\"_631\":1061,\"_633\":217,\"_634\":201,\"_635\":1062,\"_637\":1063,\"_639\":25,\"_640\":3759,\"_642\":3760,\"_644\":1060,\"_645\":217,\"_646\":1059,\"_647\":201,\"_648\":1062,\"_649\":1063,\"_12\":1060,\"_651\":1066,\"_160\":1067,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":36,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1067,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1029,\"_619\":620,\"_621\":1030,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1031,\"_627\":1032,\"_629\":1033,\"_631\":1034,\"_633\":217,\"_634\":217,\"_635\":1035,\"_637\":1036,\"_639\":25,\"_640\":3757,\"_642\":3758,\"_644\":1032,\"_645\":217,\"_646\":1031,\"_647\":217,\"_648\":1035,\"_649\":1036,\"_12\":1032,\"_651\":690,\"_160\":1039,\"_173\":780,\"_171\":654,\"_166\":1040,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1039,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1016,\"_619\":620,\"_621\":1017,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1018,\"_627\":1019,\"_629\":1020,\"_631\":1021,\"_633\":217,\"_634\":684,\"_635\":1022,\"_637\":1023,\"_639\":25,\"_640\":3755,\"_642\":3756,\"_644\":1019,\"_645\":217,\"_646\":1018,\"_647\":684,\"_648\":1022,\"_649\":1023,\"_12\":1026,\"_651\":778,\"_160\":1027,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1027,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":1007,\"_619\":620,\"_621\":1008,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":1009,\"_627\":1010,\"_629\":965,\"_631\":799,\"_633\":217,\"_634\":684,\"_635\":1011,\"_637\":1012,\"_639\":25,\"_640\":3753,\"_642\":3754,\"_644\":1010,\"_645\":217,\"_646\":1009,\"_647\":684,\"_648\":1011,\"_649\":1012,\"_12\":1010,\"_651\":690,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":995,\"_619\":620,\"_621\":996,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":997,\"_627\":998,\"_629\":999,\"_631\":1000,\"_633\":217,\"_634\":217,\"_635\":1001,\"_637\":1002,\"_639\":25,\"_640\":3751,\"_642\":3752,\"_644\":998,\"_645\":217,\"_646\":997,\"_647\":217,\"_648\":1001,\"_649\":1002,\"_12\":998,\"_651\":690,\"_160\":1005,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":1005,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":984,\"_619\":620,\"_621\":985,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":986,\"_627\":987,\"_629\":965,\"_631\":988,\"_633\":217,\"_634\":684,\"_635\":989,\"_637\":990,\"_639\":25,\"_640\":3749,\"_642\":3750,\"_644\":987,\"_645\":217,\"_646\":986,\"_647\":684,\"_648\":989,\"_649\":990,\"_12\":987,\"_651\":778,\"_160\":993,\"_173\":780,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":993,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":973,\"_619\":620,\"_621\":974,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":975,\"_627\":976,\"_629\":743,\"_631\":977,\"_633\":217,\"_634\":223,\"_635\":978,\"_637\":979,\"_639\":25,\"_640\":3747,\"_642\":3748,\"_644\":976,\"_645\":217,\"_646\":975,\"_647\":223,\"_648\":978,\"_649\":979,\"_12\":976,\"_651\":778,\"_160\":982,\"_173\":654,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":982,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":961,\"_619\":620,\"_621\":962,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":963,\"_627\":964,\"_629\":965,\"_631\":966,\"_633\":217,\"_634\":210,\"_635\":967,\"_637\":968,\"_639\":25,\"_640\":3745,\"_642\":3746,\"_644\":964,\"_645\":217,\"_646\":963,\"_647\":210,\"_648\":967,\"_649\":968,\"_12\":964,\"_651\":705,\"_160\":971,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":971,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":949,\"_619\":620,\"_621\":950,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":951,\"_627\":952,\"_629\":953,\"_631\":954,\"_633\":217,\"_634\":223,\"_635\":955,\"_637\":956,\"_639\":25,\"_640\":3743,\"_642\":3744,\"_644\":952,\"_645\":217,\"_646\":951,\"_647\":223,\"_648\":955,\"_649\":956,\"_12\":952,\"_651\":690,\"_160\":959,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":959,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":936,\"_619\":620,\"_621\":937,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":938,\"_627\":939,\"_629\":699,\"_631\":940,\"_633\":217,\"_634\":223,\"_635\":941,\"_637\":942,\"_639\":25,\"_640\":3741,\"_642\":3742,\"_644\":939,\"_645\":217,\"_646\":938,\"_647\":223,\"_648\":941,\"_649\":942,\"_12\":939,\"_651\":690,\"_160\":945,\"_173\":946,\"_171\":654,\"_166\":947,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":416,\"_661\":206,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":945,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":925,\"_619\":620,\"_621\":926,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":927,\"_627\":928,\"_629\":929,\"_631\":930,\"_633\":217,\"_634\":215,\"_635\":931,\"_637\":932,\"_639\":25,\"_640\":3739,\"_642\":3740,\"_644\":928,\"_645\":217,\"_646\":927,\"_647\":215,\"_648\":931,\"_649\":932,\"_12\":928,\"_651\":690,\"_160\":841,\"_173\":780,\"_171\":654,\"_166\":765,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":913,\"_619\":620,\"_621\":914,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":915,\"_627\":916,\"_629\":917,\"_631\":918,\"_633\":215,\"_634\":210,\"_635\":919,\"_637\":920,\"_639\":25,\"_640\":3737,\"_642\":3738,\"_644\":916,\"_645\":215,\"_646\":915,\"_647\":210,\"_648\":919,\"_649\":920,\"_12\":916,\"_651\":690,\"_160\":923,\"_173\":692,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":923,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":900,\"_619\":620,\"_621\":901,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":902,\"_627\":903,\"_629\":904,\"_631\":905,\"_633\":217,\"_634\":684,\"_635\":906,\"_637\":907,\"_639\":25,\"_640\":3735,\"_642\":3736,\"_644\":903,\"_645\":217,\"_646\":902,\"_647\":684,\"_648\":906,\"_649\":907,\"_12\":903,\"_651\":705,\"_160\":910,\"_173\":780,\"_171\":654,\"_166\":911,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":910,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":887,\"_619\":620,\"_621\":888,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":889,\"_627\":890,\"_629\":891,\"_631\":892,\"_633\":217,\"_634\":219,\"_635\":893,\"_637\":894,\"_639\":25,\"_640\":3733,\"_642\":3734,\"_644\":890,\"_645\":217,\"_646\":889,\"_647\":219,\"_648\":893,\"_649\":894,\"_12\":897,\"_651\":778,\"_160\":898,\"_173\":780,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":898,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":872,\"_619\":620,\"_621\":873,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":874,\"_627\":875,\"_629\":876,\"_631\":877,\"_633\":217,\"_634\":207,\"_635\":878,\"_637\":879,\"_639\":25,\"_640\":3731,\"_642\":3732,\"_644\":875,\"_645\":217,\"_646\":874,\"_647\":207,\"_648\":878,\"_649\":879,\"_12\":882,\"_651\":652,\"_160\":883,\"_173\":692,\"_171\":654,\"_166\":884,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":885,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":883,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":857,\"_619\":620,\"_621\":858,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":859,\"_627\":860,\"_629\":861,\"_631\":862,\"_633\":217,\"_634\":207,\"_635\":863,\"_637\":864,\"_639\":25,\"_640\":3729,\"_642\":3730,\"_644\":860,\"_645\":217,\"_646\":859,\"_647\":207,\"_648\":863,\"_649\":864,\"_12\":867,\"_651\":868,\"_160\":869,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":870,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":869,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":844,\"_619\":620,\"_621\":845,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":846,\"_627\":847,\"_629\":848,\"_631\":849,\"_633\":217,\"_634\":221,\"_635\":850,\"_637\":851,\"_639\":25,\"_640\":3727,\"_642\":3728,\"_644\":847,\"_645\":217,\"_646\":846,\"_647\":221,\"_648\":850,\"_649\":851,\"_12\":854,\"_651\":778,\"_160\":707,\"_173\":780,\"_171\":654,\"_166\":855,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":707,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":831,\"_619\":620,\"_621\":832,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":833,\"_627\":834,\"_629\":835,\"_631\":836,\"_633\":217,\"_634\":201,\"_635\":837,\"_637\":838,\"_639\":25,\"_640\":3725,\"_642\":3726,\"_644\":834,\"_645\":217,\"_646\":833,\"_647\":201,\"_648\":837,\"_649\":838,\"_12\":834,\"_651\":652,\"_160\":841,\"_173\":780,\"_171\":654,\"_166\":842,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":206,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":841,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":819,\"_619\":620,\"_621\":820,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":821,\"_627\":822,\"_629\":823,\"_631\":824,\"_633\":217,\"_634\":217,\"_635\":825,\"_637\":826,\"_639\":25,\"_640\":3723,\"_642\":3724,\"_644\":822,\"_645\":217,\"_646\":821,\"_647\":217,\"_648\":825,\"_649\":826,\"_12\":822,\"_651\":690,\"_160\":829,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":752,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":829,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":807,\"_619\":620,\"_621\":808,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":809,\"_627\":810,\"_629\":811,\"_631\":812,\"_633\":222,\"_634\":222,\"_635\":813,\"_637\":814,\"_639\":25,\"_640\":3721,\"_642\":3722,\"_644\":810,\"_645\":222,\"_646\":809,\"_647\":222,\"_648\":813,\"_649\":814,\"_12\":810,\"_651\":778,\"_160\":817,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":817,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":794,\"_619\":620,\"_621\":795,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":796,\"_627\":797,\"_629\":798,\"_631\":799,\"_633\":217,\"_634\":684,\"_635\":800,\"_637\":801,\"_639\":25,\"_640\":3719,\"_642\":3720,\"_644\":797,\"_645\":217,\"_646\":796,\"_647\":684,\"_648\":800,\"_649\":801,\"_12\":804,\"_651\":690,\"_160\":805,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":220,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":805,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":783,\"_619\":620,\"_621\":784,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":785,\"_627\":786,\"_629\":787,\"_631\":788,\"_633\":217,\"_634\":215,\"_635\":789,\"_637\":790,\"_639\":25,\"_640\":3717,\"_642\":3718,\"_644\":786,\"_645\":217,\"_646\":785,\"_647\":215,\"_648\":789,\"_649\":790,\"_12\":786,\"_651\":705,\"_160\":781,\"_173\":693,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":781,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":768,\"_619\":620,\"_621\":769,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":770,\"_627\":771,\"_629\":772,\"_631\":773,\"_633\":217,\"_634\":217,\"_635\":774,\"_637\":775,\"_639\":25,\"_640\":3715,\"_642\":3716,\"_644\":771,\"_645\":217,\"_646\":770,\"_647\":217,\"_648\":774,\"_649\":775,\"_12\":771,\"_651\":778,\"_160\":779,\"_173\":780,\"_171\":654,\"_166\":781,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":736,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":779,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":754,\"_619\":620,\"_621\":755,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":756,\"_627\":757,\"_629\":758,\"_631\":759,\"_633\":217,\"_634\":207,\"_635\":760,\"_637\":761,\"_639\":25,\"_640\":3713,\"_642\":3714,\"_644\":757,\"_645\":217,\"_646\":756,\"_647\":207,\"_648\":760,\"_649\":761,\"_12\":764,\"_651\":690,\"_160\":765,\"_173\":654,\"_171\":654,\"_166\":766,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":765,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":739,\"_619\":620,\"_621\":740,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":741,\"_627\":742,\"_629\":743,\"_631\":744,\"_633\":217,\"_634\":223,\"_635\":745,\"_637\":746,\"_639\":25,\"_640\":3711,\"_642\":3712,\"_644\":742,\"_645\":217,\"_646\":741,\"_647\":223,\"_648\":745,\"_649\":746,\"_12\":742,\"_651\":690,\"_160\":749,\"_173\":750,\"_171\":654,\"_166\":751,\"_656\":36,\"_657\":206,\"_658\":36,\"_659\":752,\"_661\":206,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":749,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":723,\"_619\":620,\"_621\":724,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":725,\"_627\":726,\"_629\":727,\"_631\":728,\"_633\":217,\"_634\":205,\"_635\":729,\"_637\":730,\"_639\":25,\"_640\":3709,\"_642\":3710,\"_644\":726,\"_645\":217,\"_646\":725,\"_647\":205,\"_648\":729,\"_649\":730,\"_12\":726,\"_651\":690,\"_160\":733,\"_173\":734,\"_171\":654,\"_166\":735,\"_656\":36,\"_657\":736,\"_658\":36,\"_659\":737,\"_661\":736,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":733,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":709,\"_619\":620,\"_621\":710,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":711,\"_627\":712,\"_629\":713,\"_631\":714,\"_633\":217,\"_634\":223,\"_635\":715,\"_637\":716,\"_639\":25,\"_640\":3707,\"_642\":3708,\"_644\":712,\"_645\":217,\"_646\":711,\"_647\":223,\"_648\":715,\"_649\":716,\"_12\":712,\"_651\":705,\"_160\":719,\"_173\":692,\"_171\":654,\"_166\":720,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":721,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":719,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":695,\"_619\":620,\"_621\":696,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":697,\"_627\":698,\"_629\":699,\"_631\":700,\"_633\":217,\"_634\":223,\"_635\":701,\"_637\":702,\"_639\":25,\"_640\":3705,\"_642\":3706,\"_644\":698,\"_645\":217,\"_646\":697,\"_647\":223,\"_648\":701,\"_649\":702,\"_12\":698,\"_651\":705,\"_160\":706,\"_173\":692,\"_171\":654,\"_166\":707,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":416,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":706,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":677,\"_619\":620,\"_621\":678,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":679,\"_627\":680,\"_629\":681,\"_631\":682,\"_633\":683,\"_634\":684,\"_635\":685,\"_637\":686,\"_639\":25,\"_640\":3703,\"_642\":3704,\"_644\":680,\"_645\":683,\"_646\":679,\"_647\":684,\"_648\":685,\"_649\":686,\"_12\":689,\"_651\":690,\"_160\":691,\"_173\":692,\"_171\":654,\"_166\":693,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":204,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":691,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},{\"_617\":618,\"_619\":620,\"_621\":622,\"_15\":-5,\"_623\":-5,\"_624\":25,\"_625\":-5,\"_260\":626,\"_627\":628,\"_629\":630,\"_631\":632,\"_633\":217,\"_634\":199,\"_635\":636,\"_637\":638,\"_639\":25,\"_640\":3701,\"_642\":3702,\"_644\":628,\"_645\":217,\"_646\":626,\"_647\":199,\"_648\":636,\"_649\":638,\"_12\":650,\"_651\":652,\"_160\":653,\"_173\":654,\"_171\":654,\"_166\":655,\"_656\":25,\"_657\":204,\"_658\":36,\"_659\":660,\"_661\":204,\"_662\":25,\"_663\":25,\"_664\":665,\"_666\":667,\"_668\":669,\"_670\":25,\"_671\":653,\"_672\":-5,\"_673\":-5,\"_674\":-5,\"_675\":-5},[676],[],[694],[],[708],[],[722],[],[738],[],[753],[],[767],[],[782],[],[793],[],[806],[],[818],[],[830],[],[843],[],[856],[],[871],[],[886],[],[899],[],[912],[],[924],[],[935],[],[948],[],[960],[],[972],[],[983],[],[994],[],[1006],[],[1015],[],[1028],[],[1041],[],[1068],[],[1080],[],[1092],[],[1107],[],[1120],[],[1132],[],[1147],[],[1159],[],[1171],[],[1186],[],[1197],[],[1209],[],[1221],[],[1231],[],[1244],[],[1257],[],[1269],[],[1285],[],[1297],[],[1309],[],[1322],[],[1332],[],[1342],[],[1356],[],[1369],[],[1381],[],[1394],[],[1407],[],[1420],[],[1431],[],[1443],[],[1456],[],[1469],[],[1481],[],[1493],[],[1504],[],[1519],[],[1532],[],[1547],[],[1558],[],[1567],[],[1578],[],[1588],[],[1598],[],[1609],[],[1622],[],[1634],[],[1644],[],[1654],[],[1663],[],[1676],[],[1689],[],[1701],[],[1711],[],[1721],[],[1734],[],[1745],[],[1756],[],[1767],[],[1779],[],[1790],[],[1802],[],[1817],[],[1830],[],[1843],[],[1853],[],[1865],[],[1878],[],[1890],[],[1902],[],[1913],[],[1922],[],[1935],[],[1946],[],[1957],[],[1968],[],[1977],[],[1988],[],[2001],[],[2012],[],[2076],[],[2089],[],[2101],[],[2113],[],[2161],[],[2174],[],[2186],[],[2201],[],[2214],[],[2225],[],[2236],[],[2249],[],[2261],[],[2271],[],[2281],[],[2292],[],[2305],[],[2317],[],[2329],[],[2341],[],[2354],[],[2366],[],[2379],[],[2392],[],[2404],[],[2414],[],[2427],[],[2436],[],[2446],[],[2456],[],[2471],[],[2485],[],[2497],[],[2510],[],[2522],[],[2532],[],[2545],[],[2557],[],[2567],[],[2579],[],[2589],[],[2600],[],[2610],[],[2622],[],[2632],[],[2644],[],[2656],[],[2666],[],[2677],[],[2688],[],[2698],[],[2708],[],[2721],[],[2735],[],[2748],[],[2760],[],[2769],[],[2779],[],[2791],[],[2797],[],[2807],[],[1056],[],75,\"buildingCount\",[2033],[],72,[2130],[],\"644 - 1260\",[2832],[],36,193,\"address\",{\"_627\":4127,\"_633\":217,\"_634\":684,\"_635\":4128,\"_637\":4129,\"_4130\":4115,\"_4131\":4102,\"_4105\":4112,\"_4132\":4133},\"analytics\",{\"_4121\":4122,\"_4123\":4124,\"_4125\":4126},{\"_4117\":4118,\"_4119\":4120},\"contact\",{\"_4088\":4089,\"_4090\":4091,\"_4055\":4092},\"customDomains\",[4082,4083],\"emptyImage\",\"features\",{\"_4079\":25,\"_4080\":36,\"_4081\":25},\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"halfred\",\"templateConfig\",{\"_4075\":4076,\"_4077\":4078},\"templateId\",\"editorial\",\"showcase\",{},\"listingSortOrder\",\"smart\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",\"showUnitAvailability\",{\"_4084\":4087},{\"_4084\":4085,\"_4086\":2015},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_4093\":4094,\"_4095\":4096,\"_4097\":684,\"_4098\":1327,\"_629\":4099,\"_633\":4100,\"_4101\":4102,\"_4103\":4104,\"_4105\":4106,\"_4107\":4108,\"_4109\":4110,\"_627\":684},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"civicNumber\",\"Rue Noel\",{\"_4111\":217,\"_4113\":217},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_4111\":4115,\"_4113\":4116},\"country\",{\"_4111\":4112,\"_4113\":4114},\"lat\",45.467906,\"lng\",-75.7344541,\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"45.467989\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",\"lang\",{\"_93\":4162,\"_260\":4070,\"_4163\":4164,\"_12\":13,\"_15\":16,\"_68\":4059,\"_4165\":4166,\"_4055\":4056,\"_4060\":4061,\"_48\":4167,\"_4168\":4169,\"_4170\":4171,\"_4172\":4173,\"_4067\":4068,\"_4174\":4175,\"_4176\":4177,\"_4069\":-5,\"_4178\":-5,\"_4179\":-5,\"_4180\":-5,\"_4073\":4074,\"_4071\":4072,\"_4062\":4063,\"_4181\":-5,\"_4182\":-5,\"_41\":42,\"_4183\":4184,\"_4185\":4186,\"_4187\":4188,\"_17\":18,\"_4189\":4190,\"_4064\":-7,\"_4191\":4192,\"_4065\":4193,\"_4194\":4195,\"_4196\":-7,\"_4197\":4198,\"_4057\":4199,\"_46\":4200,\"_4201\":4202,\"_4203\":4204},\"toast\",\"user\",{\"_4147\":25,\"_4148\":-5,\"_4149\":-5,\"_4150\":-5,\"_4151\":-5,\"_4152\":-5,\"_4153\":-5,\"_4154\":-5,\"_4155\":-5,\"_4156\":-5,\"_4088\":-5,\"_4090\":-5,\"_4157\":-5,\"_4158\":25,\"_4159\":25,\"_4160\":-5,\"_4161\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isStaff\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_17\":4289},\"social\",{\"_4286\":4287,\"_4288\":684},{\"_141\":142,\"_143\":144,\"_145\":146,\"_147\":148,\"_149\":150,\"_151\":152,\"_153\":154,\"_155\":154,\"_156\":157,\"_158\":152,\"_159\":150},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_4283\":-5,\"_79\":36,\"_4284\":25,\"_4285\":4242},\"plan\",{\"_198\":4265,\"_4266\":684,\"_4267\":4268,\"_4269\":2876,\"_4270\":4271,\"_4272\":4273,\"_4274\":414,\"_4275\":4276,\"_4277\":414,\"_4278\":4279,\"_4280\":4281,\"_4282\":721},\"metadata\",{\"_4057\":4199},\"consentConditionsText\",\"consentConditionsEn\",\"consentConditionsFr\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_4258\":4259,\"_4168\":4169,\"_4260\":4261,\"_4067\":4068,\"_4262\":4263,\"_4093\":4264},\"bucket\",{\"_4255\":4070,\"_4256\":4257},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_4139\":4252,\"_4253\":4254},\"tosHistory\",[4242],{\"_4213\":36,\"_4214\":-7,\"_4080\":36,\"_4215\":25,\"_4216\":25,\"_4217\":36,\"_4218\":36,\"_4219\":25,\"_4220\":-7,\"_4221\":25,\"_4222\":-7,\"_4223\":25,\"_4224\":25,\"_4225\":25,\"_4226\":4227,\"_4228\":25,\"_59\":25,\"_4229\":-7,\"_4230\":-7,\"_4231\":-7,\"_4232\":25,\"_4079\":25,\"_4233\":25,\"_4081\":25,\"_4234\":4235,\"_4236\":36,\"_4237\":25,\"_4238\":25,\"_4239\":25,\"_4240\":25,\"_4241\":25},\"disabledModules\",[],\"rolePermissions\",\"banner\",{\"_264\":4211,\"_21\":4212},{\"_4123\":4124,\"_4209\":4210,\"_4121\":4122,\"_4125\":4126},[141],\"payments\",{\"_4205\":36,\"_4206\":36,\"_4207\":25,\"_4208\":25},\"version\",\"prod-20260917-9ad1803\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"hasAddressVariants\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"hopemIntegrationEnabled\",\"voltixIntegrationEnabled\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_4243\":4244,\"_22\":4245,\"_4203\":4246,\"_79\":36,\"_77\":4247,\"_4248\":4249,\"_4250\":4251},\"ip\",\"45.73.54.230\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",39,\"planDurationInMonths\",\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_4290\":4291},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--><script id="_R_">requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><div role="region" aria-label="Listings map" class="relative overflow-hidden bg-[#efede6] h-full rounded-[22px] border border-[var(--ed-hairline)]" data-sentry-component="EditorialListingsMap" data-sentry-source-file="listings-map.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div aria-hidden="true" class="pointer-events-none absolute inset-0 z-10 flex items-center justify-center"><span class="h-7 w-7 animate-spin rounded-full border-2 border-[var(--ed-border)] border-t-[var(--ed-ink)]"></span></div><div class="absolute right-4 top-4 z-10 flex flex-col items-center gap-2"><button type="button" aria-label="Hide map" title="Hide map" class="flex h-10 w-10 items-center justify-center rounded-full bg-white text-[var(--ed-ink)] shadow-[0_2px_12px_rgba(26,26,23,0.22)] transition-colors hover:bg-[var(--ed-paper)]"><span></span></button><a aria-label="Expand map" title="Expand map" class="flex h-10 w-10 items-center justify-center rounded-full bg-white text-[var(--ed-ink)] shadow-[0_2px_12px_rgba(26,26,23,0.22)] transition-colors hover:bg-[var(--ed-paper)]" href="/fr/listings/map" data-discover="true"><span></span></a><button type="button" aria-label="Zoom in" class="flex h-10 w-10 items-center justify-center rounded-full bg-white text-[var(--ed-ink)] shadow-[0_2px_12px_rgba(26,26,23,0.22)] transition-colors hover:bg-[var(--ed-paper)]"><span></span></button><button type="button" aria-label="Zoom out" class="flex h-10 w-10 items-center justify-center rounded-full bg-white text-[var(--ed-ink)] shadow-[0_2px_12px_rgba(26,26,23,0.22)] transition-colors hover:bg-[var(--ed-paper)]"><span></span></button></div></div></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
1014 +$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/647e1ab998e03b8874bf.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=1200&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/26f1bc76-d9d7-4874-96aa-d5db0874ab14/Capture_d_ecran_2025-12-22_121959.png?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0016-016.jpg?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | Desrosiers, Gatineau</title><meta description="Halfred is proud to introduce the Desrosiers Project, a brand-new, modern rental building designed for today’s lifestyle—clean lines, smart ..."/><meta property="og:title" content="Halfred | Apartment rentals | Project Desrosiers, Gatineau"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content="Halfred is proud to introduce the Desrosiers Project, a brand-new, modern rental building designed for today’s lifestyle—clean lines, smart ..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg"/><meta property="og:url" content="www.halfred.ca/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/project-detail.page-2Kwf5ze5.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="7946aa568350769ad5b7405fb17879cf-e5612e28b71b76ed-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=7946aa568350769ad5b7405fb17879cf,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2Fproject%2F%3Aid%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.605971813172773,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=800&amp;height=600&amp;quality=80" alt="2 chambres, maison Halfred | Apartment rentals à louer à Gatineau, Desrosiers" class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->1</div></div></div><div class="hidden sm:block"><div class="relative overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-96" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=1200&amp;height=600&amp;quality=80" alt="2 chambres, maison Halfred | Apartment rentals à louer à Gatineau, Desrosiers" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">Desrosiers</h1><p class="text-sm text-foreground-600">Gatineau</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p><b>1750$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>15 mai</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-message-circle" aria-hidden="true" focusable="false" tabindex="-1"></span>Je suis intéressé par cette propriété</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description du projet</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>Halfred est fier de vous présenter le projet Desrosiers, un immeuble locatif neuf et moderne, conçu pour répondre aux besoins d’aujourd’hui et de demain. Un cadre de vie pratique, confortable et bien pensé.</p><p>🔑 Caractéristiques générales</p><p>❄️ Climatisation incluse</p><p>🌐 Internet inclus</p><p>⚡ Chauffage et électricité non inclus</p><p>🍽 5 électroménagers inclus</p><p>(À noter : les 3 ½ n’incluent pas de lave-vaisselle)</p><p>🚗 Stationnement extérieur inclus</p><p>🌿 Balcons extérieurs</p><p>🏗 Construction neuve avec finitions modernes</p><p>📋 Enquête de crédit obligatoire | Bail minimum de 12 mois</p><p>✨ Un projet tourné vers l’avenir, parfait pour les professionnels, couples ou familles recherchant la tranquillité, le confort moderne et la prévisibilité d’un loyer tout inclus.</p><p>📞 Intéressé(e)?</p><p>Contactez Halfred dès maintenant pour plus d’informations ou pour réserver votre unité.</p><p>Les disponibilités sont limitées — ne laissez pas passer cette opportunité.</p></div></div></div></div><div class="pt-8 pb-8"><div class="space-y-6" data-sentry-component="BuildingsSection" data-sentry-source-file="buildings-inventory.tsx"><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details/gallery?building=26f1bc76-d9d7-4874-96aa-d5db0874ab14" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/26f1bc76-d9d7-4874-96aa-d5db0874ab14/Capture_d_ecran_2025-12-22_121959.png?width=500&amp;height=250&amp;quality=80" alt="Desrosiers" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">Desrosiers</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">24 Rue Larabie<!-- -->, Templeton<!-- -->, Gatineau</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">1 unité</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Stationnement</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Sèche-linge</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Laveuse</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Lave-vaisselle</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Climatisation centrale</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Balcon</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Internet fibre</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Cuisinière</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Réservoir d&#x27;eau</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->1<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details/gallery?unit=38b85501-4934-4378-91ba-def0adf1e532" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0016-016.jpg?width=96&amp;height=80&amp;quality=80" alt="3" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">10 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->3</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1200<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->8</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1605<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">1750<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/38b85501-4934-4378-91ba-def0adf1e532/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="pr-8"><div class="flex justify-center space-x-8 pb-4 lg:justify-start" data-sentry-component="WalkScore" data-sentry-source-file="walk-score.tsx"><div class="flex flex-col items-center space-y-2 "><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de mobilité</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3b8uitij5_" aria-label="Walk score of 0" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" aria-valuetext="0" role="progressbar" data-sentry-element="CircularProgress" data-sentry-source-file="walk-score.tsx"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-danger w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">0</span></div></div></div></div></div><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="project-details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">Desrosiers</h1><p class="text-sm text-foreground-600">Gatineau</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p><b>1750$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>15 mai</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-message-circle" aria-hidden="true" focusable="false" tabindex="-1"></span>Je suis intéressé par cette propriété</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/project-detail.page-2Kwf5ze5.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicProjectDetailPage": {
338 − "id": "PublicProjectDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/project/:id/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/project-detail.page-2Kwf5ze5.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/seo.helpers-DUWcGrSj.js",
354 − "/assets/should-revalidate-for-modal-CqioTNup.js",
355 − "/assets/listing-card-vLpuwroq.js",
356 − "/assets/types-BlrrbiGM.js",
357 − "/assets/use-tenant-BWWCVgWC.js",
358 − "/assets/index-DoORTE4j.js",
359 − "/assets/icon-ChitaFhd.js",
360 − "/assets/chunk-T45N425O-C34bNx0L.js",
361 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
362 − "/assets/preload-helper-Djj1Qpxo.js",
363 − "/assets/index-yaZ7Ke31.js",
364 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
365 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
366 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
367 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
368 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
369 − "/assets/settings.types-DE5bLdHg.js",
370 − "/assets/index-C5vezUBD.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicProjectDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_621\":-5,\"_622\":-7,\"_623\":624,\"_625\":626,\"_19\":20,\"_17\":627,\"_628\":-5,\"_629\":630,\"_293\":294,\"_631\":-5,\"_632\":-5},\"PublicListingsLayoutPage\",{\"_17\":284,\"_285\":286,\"_287\":288,\"_289\":53,\"_290\":120,\"_291\":292,\"_293\":294,\"_295\":51,\"_296\":51,\"_297\":51},\"PublicProjectDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":139,\"_140\":141,\"_142\":143,\"_89\":144,\"_145\":146,\"_77\":96,\"_147\":148,\"_108\":72,\"_111\":149,\"_109\":150,\"_33\":151,\"_152\":153,\"_154\":144,\"_155\":156,\"_157\":53,\"_158\":159,\"_160\":-5,\"_161\":-5,\"_162\":51,\"_163\":164,\"_165\":166,\"_167\":168},\"auth\",{\"_137\":53,\"_138\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",0,\"Car-Dependent\",\"updated\",\"2026-07-06 15:10:12.578260\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/26Rue-Larabie/lat=-75.610248/lng=45.492742/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",-75.6105,\"snapped_lon\",45.492,\"loggedIn\",\"isStaff\",\"f8af9520-39ba-4c35-a08d-ae7ae53b71fb\",\"area\",1200,\"availabilty\",[\"D\",1778803200000],\"Desrosiers\",\"buildingStreet\",\"26 Rue Larabie\",\"buildingId\",\"957a55a7-9b5a-41ae-a069-f42dcade21f3\",45.492742,-75.610248,{\"_234\":282,\"_20\":283},\"images\",[281],\"projectName\",\"buildingFeatures\",[],\"listed\",\"automatedApplyMode\",\"lead_form\",\"leadFormConfig\",\"featureSiteSubdomain\",\"featureSiteEnabled\",\"units\",[276],\"buildings\",[183],\"cardData\",{\"_43\":139,\"_89\":144,\"_77\":96,\"_108\":72,\"_109\":150,\"_111\":149,\"_169\":170,\"_171\":172,\"_173\":174,\"_140\":175,\"_176\":177,\"_178\":179},\"unitId\",\"38b85501-4934-4378-91ba-def0adf1e532\",\"bedrooms\",[182],\"bathrooms\",[118],[141],\"price\",[181],\"availability\",[180],[\"D\",1778803200000],1750,2,{\"_147\":184,\"_185\":144,\"_186\":187,\"_145\":188,\"_189\":96,\"_190\":191,\"_192\":-5,\"_36\":193,\"_163\":194},\"26f1bc76-d9d7-4874-96aa-d5db0874ab14\",\"buildingName\",\"buildingImages\",[275],\"24 Rue Larabie\",\"buildingCity\",\"buildingNeighborhood\",\"Templeton\",\"buildingAutomatedApplyMode\",[221,222,223,224,225,226,227,228,229,230,231],[195],{\"_43\":170,\"_140\":141,\"_196\":-5,\"_176\":181,\"_171\":182,\"_173\":118,\"_197\":198,\"_152\":199,\"_178\":200,\"_157\":53,\"_201\":184,\"_202\":-5,\"_203\":-5,\"_204\":205,\"_206\":207,\"_36\":208},\"floor\",\"alias\",\"3\",[211,212,213,214,215,216,217,218,219,220],[\"D\",1778803200000],\"building_id\",\"floor_plan_name\",\"floor_plan_image_path\",\"listing_type\",\"Unit\",\"promotion\",{\"_176\":209,\"_33\":210},[],1605,\"*** Promotion pour les 12 premiers mois du bail ***\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0016-016.jpg\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0017-017.jpg\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0018-018.jpg\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0019-019.jpg\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0020-020.jpg\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0021-021.jpg\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0022-022.jpg\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0023-023.jpg\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0024-024.jpg\",\"/storage/v1/object/public/halfred/units/38b85501-4934-4378-91ba-def0adf1e532/0025-025.jpg\",{\"_90\":271,\"_38\":272},{\"_90\":267,\"_38\":268},{\"_90\":264,\"_38\":261},{\"_90\":260,\"_38\":261},{\"_90\":257,\"_38\":238},{\"_90\":253,\"_38\":254},{\"_90\":249,\"_38\":250},{\"_90\":245,\"_38\":246},{\"_90\":241,\"_38\":242},{\"_90\":237,\"_38\":238},{\"_90\":232,\"_38\":233},{\"_234\":235,\"_20\":236},\"lucide:refrigerator\",\"en\",\"Refrigerator\",\"Réfrigérateur\",{\"_234\":239,\"_20\":240},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_234\":243,\"_20\":244},\"lucide:soup\",\"Stove\",\"Cuisinière\",{\"_234\":247,\"_20\":248},\"lucide:wifi\",\"Fiber Internet\",\"Internet fibre\",{\"_234\":251,\"_20\":252},\"lucide:fence\",\"Balcony\",\"Balcon\",{\"_234\":255,\"_20\":256},\"lucide:thermometer-sun\",\"Central Air Conditioning\",\"Climatisation centrale\",{\"_234\":258,\"_20\":259},\"Dishwasher\",\"Lave-vaisselle\",{\"_234\":262,\"_20\":263},\"lucide:washing-machine\",\"Washer\",\"Laveuse\",{\"_234\":265,\"_20\":266},\"Dryer\",\"Sèche-linge\",{\"_234\":269,\"_20\":270},\"lucide:car\",\"Parking\",\"Stationnement\",{\"_234\":273,\"_20\":274},\"lucide:microwave\",\"Oven\",\"Four\",\"/storage/v1/object/public/halfred/buildings/26f1bc76-d9d7-4874-96aa-d5db0874ab14/Capture_d_ecran_2025-12-22_121959.png\",{\"_43\":170,\"_140\":141,\"_196\":-5,\"_176\":181,\"_171\":182,\"_173\":118,\"_197\":198,\"_152\":277,\"_178\":278,\"_157\":53,\"_201\":184,\"_202\":-5,\"_203\":-5,\"_204\":205,\"_206\":279,\"_36\":280},[211,212,213,214,215,216,217,218,219,220],[\"D\",1778803200000],{\"_176\":209,\"_33\":210},[],\"/storage/v1/object/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg\",\"Halfred is proud to introduce the Desrosiers Project, a brand-new, modern rental building designed for today’s lifestyle—clean lines, smart layouts, and comfort built for the future.\\n\\n🔑 General Features\\n\\n❄️ Air conditioning included\\n\\n🌐 Internet included\\n\\n⚡ Heating and electricity not included\\n\\n🍽 5 appliances included\\n(Note: 3½ units do not include a dishwasher)\\n\\n🚗 Outdoor parking included\\n\\n🌿 Private outdoor balconies\\n\\n🏗 New construction with modern finishes\\n\\n📋 Credit check required | Minimum 12-month lease\\n\\n✨ A forward-looking project, perfect for professionals, couples, and families seeking modern comfort, convenience, and predictable all-inclusive living.\\n\\n📞 Interested?\\nContact Halfred today for more information or to reserve your unit.\\nAvailability is limited — secure your new home now.\",\"Halfred est fier de vous présenter le projet Desrosiers, un immeuble locatif neuf et moderne, conçu pour répondre aux besoins d’aujourd’hui et de demain. Un cadre de vie pratique, confortable et bien pensé.\\n\\n🔑 Caractéristiques générales\\n\\n❄️ Climatisation incluse\\n\\n🌐 Internet inclus\\n\\n⚡ Chauffage et électricité non inclus\\n\\n🍽 5 électroménagers inclus\\n(À noter : les 3 ½ n’incluent pas de lave-vaisselle)\\n\\n🚗 Stationnement extérieur inclus\\n\\n🌿 Balcons extérieurs\\n\\n🏗 Construction neuve avec finitions modernes\\n\\n📋 Enquête de crédit obligatoire | Bail minimum de 12 mois\\n\\n✨ Un projet tourné vers l’avenir, parfait pour les professionnels, couples ou familles recherchant la tranquillité, le confort moderne et la prévisibilité d’un loyer tout inclus.\\n\\n📞 Intéressé(e)?\\nContactez Halfred dès maintenant pour plus d’informations ou pour réserver votre unité.\\nLes disponibilités sont limitées — ne laissez pas passer cette opportunité.\",{\"_23\":24,\"_25\":619,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":620,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_176\":401,\"_402\":403,\"_404\":405,\"_140\":406,\"_196\":407,\"_408\":53,\"_173\":409,\"_171\":410,\"_411\":51,\"_412\":53,\"_413\":414,\"_415\":416},\"defaultView\",\"count\",\"filters\",{},\"configs\",{\"_298\":299,\"_300\":301,\"_302\":303,\"_304\":305,\"_306\":299,\"_307\":308,\"_309\":310},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[387],\"analysisProductsPrice\",{\"_387\":388,\"_389\":390,\"_391\":392,\"_393\":394,\"_395\":392,\"_396\":392,\"_397\":398,\"_399\":400},\"notifications\",{\"_369\":370},\"form\",{\"_362\":53,\"_363\":51,\"_364\":53,\"_365\":53,\"_366\":51,\"_367\":51,\"_368\":51},\"enabledSkus\",\"submissions\",{\"_312\":313,\"_314\":315,\"_316\":317,\"_318\":319,\"_27\":320,\"_321\":-5},\"agent\",{\"_311\":51},\"hideAgentNewSubmissionBtn\",\"all\",[348,349,350,351,352,353,354,358,359,360,361],\"steps\",[348,349,350,351,352,353,354],\"badges\",[338,339,340,341,342,343],\"statuses\",[332,322,324,326,328,330,333,334,335,336,337],{\"_322\":323,\"_324\":325,\"_326\":327,\"_328\":329,\"_330\":331},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_344\":322,\"_346\":323},{\"_344\":324,\"_346\":325},{\"_344\":326,\"_346\":327},{\"_344\":328,\"_346\":329},{\"_344\":330,\"_346\":331},{\"_344\":345,\"_346\":347},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_344\":332,\"_346\":-5,\"_355\":51},{\"_344\":322,\"_346\":323,\"_355\":53,\"_356\":51,\"_357\":51},{\"_344\":324,\"_346\":325,\"_355\":53,\"_356\":51,\"_357\":51},{\"_344\":326,\"_346\":327,\"_355\":53,\"_356\":51,\"_357\":51},{\"_344\":328,\"_346\":329,\"_355\":53,\"_356\":51,\"_357\":51},{\"_344\":330,\"_346\":331,\"_355\":53,\"_356\":51,\"_357\":51},{\"_344\":333,\"_346\":-5,\"_355\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_344\":334,\"_346\":-5,\"_355\":51},{\"_344\":335,\"_346\":-5,\"_355\":51},{\"_344\":336,\"_346\":-5,\"_355\":51},{\"_344\":337,\"_346\":-5,\"_355\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_309\":371,\"_372\":373,\"_17\":374,\"_375\":376},[384,385,386],\"manager\",[],[378,379,380,381,382,383],\"admin\",[377],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,[118,618],\"pricePerMonth\",[118,618],\"pricePerSqft\",[120,120],[120,617],[616,437],\"hasFloor\",[120,182],[120,615],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493],\"availableNeighborhoods\",[417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434],{\"_435\":459,\"_290\":118},{\"_435\":458,\"_290\":118},{\"_435\":457,\"_290\":118},{\"_435\":455,\"_290\":456},{\"_435\":454,\"_290\":118},{\"_435\":453,\"_290\":182},{\"_435\":451,\"_290\":452},{\"_435\":96,\"_290\":450},{\"_435\":448,\"_290\":449},{\"_435\":447,\"_290\":182},{\"_435\":446,\"_290\":118},{\"_435\":444,\"_290\":445},{\"_435\":443,\"_290\":118},{\"_435\":441,\"_290\":442},{\"_435\":440,\"_290\":182},{\"_435\":439,\"_290\":118},{\"_435\":191,\"_290\":438},{\"_435\":436,\"_290\":437},\"name\",\"Touraine\",6,14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",5,\"Plateau \",\"Plateau\",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"2\",\"1\",{\"_43\":613,\"_435\":614,\"_38\":268},{\"_43\":608,\"_435\":609,\"_38\":610},{\"_43\":606,\"_435\":607,\"_38\":238},{\"_43\":604,\"_435\":605,\"_38\":254},{\"_43\":599,\"_435\":600,\"_38\":601},{\"_43\":597,\"_435\":598,\"_38\":238},{\"_43\":592,\"_435\":593,\"_38\":594},{\"_43\":588,\"_435\":589,\"_38\":547},{\"_43\":584,\"_435\":585,\"_38\":254},{\"_43\":579,\"_435\":580,\"_38\":581},{\"_43\":577,\"_435\":578,\"_38\":250},{\"_43\":573,\"_435\":574,\"_38\":238},{\"_43\":571,\"_435\":572,\"_38\":261},{\"_43\":569,\"_435\":570,\"_38\":246},{\"_43\":567,\"_435\":568,\"_38\":242},{\"_43\":563,\"_435\":564,\"_38\":246},{\"_43\":561,\"_435\":562,\"_38\":233},{\"_43\":559,\"_435\":560,\"_38\":272},{\"_43\":554,\"_435\":555,\"_38\":556},{\"_43\":550,\"_435\":551,\"_38\":547},{\"_43\":545,\"_435\":546,\"_38\":547},{\"_43\":541,\"_435\":542,\"_38\":261},{\"_43\":537,\"_435\":538,\"_38\":539},{\"_43\":535,\"_435\":536,\"_38\":261},{\"_43\":531,\"_435\":532,\"_38\":250},{\"_43\":527,\"_435\":528,\"_38\":268},{\"_43\":523,\"_435\":524,\"_38\":272},{\"_43\":519,\"_435\":520,\"_38\":246},{\"_43\":514,\"_435\":515,\"_38\":516},{\"_43\":510,\"_435\":511,\"_38\":268},{\"_43\":506,\"_435\":507,\"_38\":254},{\"_43\":502,\"_435\":503,\"_38\":504},{\"_43\":498,\"_435\":499,\"_38\":250},{\"_43\":494,\"_435\":495,\"_38\":238},\"counter-type\",{\"_234\":496,\"_20\":497},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_234\":500,\"_20\":501},\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_234\":505,\"_20\":505},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_234\":508,\"_20\":509},\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_234\":512,\"_20\":513},\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_234\":517,\"_20\":518},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_234\":521,\"_20\":522},\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_234\":525,\"_20\":526},\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_234\":529,\"_20\":530},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_234\":533,\"_20\":534},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_234\":265,\"_20\":266},\"gym\",{\"_234\":540,\"_20\":540},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_234\":543,\"_20\":544},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_234\":548,\"_20\":549},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_234\":552,\"_20\":553},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_234\":557,\"_20\":558},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_234\":273,\"_20\":274},\"refrigerator\",{\"_234\":235,\"_20\":236},\"cable\",{\"_234\":565,\"_20\":566},\"Cable\",\"Câble\",\"stove\",{\"_234\":243,\"_20\":244},\"fiber-internet\",{\"_234\":247,\"_20\":248},\"washer\",{\"_234\":262,\"_20\":263},\"elevator\",{\"_234\":575,\"_20\":576},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_234\":251,\"_20\":252},\"electricity\",{\"_234\":582,\"_20\":583},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"electric-heating\",{\"_234\":586,\"_20\":587},\"Electric Heating\",\"Chauffage Électrique\",\"cats-allowed\",{\"_234\":590,\"_20\":591},\"Cats Allowed\",\"Chats autorisés\",\"blinds\",{\"_234\":595,\"_20\":596},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_234\":239,\"_20\":240},\"washer-dryer-outlet\",{\"_234\":602,\"_20\":603},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"central-air-conditioning\",{\"_234\":255,\"_20\":256},\"dishwasher\",{\"_234\":258,\"_20\":259},\"water\",{\"_234\":611,\"_20\":612},\"lucide:droplet\",\"Water\",\"Eau\",\"parking\",{\"_234\":269,\"_20\":270},4,-1,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_344\":647,\"_43\":44,\"_648\":649,\"_48\":49,\"_33\":34,\"_27\":28,\"_650\":651,\"_23\":24,\"_29\":30,\"_300\":652,\"_653\":654,\"_655\":656,\"_657\":658,\"_40\":41,\"_659\":660,\"_661\":662,\"_42\":-5,\"_663\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_664\":-5,\"_665\":-5,\"_293\":294,\"_666\":667,\"_668\":669,\"_670\":671,\"_38\":39,\"_672\":673,\"_35\":-7,\"_674\":675,\"_36\":676,\"_677\":678,\"_679\":680,\"_25\":681,\"_298\":682,\"_683\":684,\"_685\":686},\"toast\",\"user\",{\"_633\":51,\"_634\":-5,\"_635\":-5,\"_636\":-5,\"_637\":-5,\"_638\":-5,\"_639\":-5,\"_640\":-5,\"_641\":-5,\"_642\":-5,\"_62\":-5,\"_64\":-5,\"_643\":-5,\"_138\":51,\"_644\":51,\"_645\":-5,\"_646\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":770},\"social\",{\"_767\":768,\"_769\":72},{\"_387\":388,\"_389\":390,\"_391\":392,\"_393\":394,\"_395\":392,\"_396\":392,\"_397\":398,\"_399\":400},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_764\":726,\"_330\":53,\"_765\":51,\"_766\":721},\"plan\",{\"_435\":745,\"_746\":72,\"_747\":748,\"_749\":750,\"_751\":752,\"_753\":754,\"_755\":120,\"_756\":757,\"_758\":120,\"_759\":760,\"_761\":450,\"_762\":763},\"metadata\",{\"_25\":681},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_738\":739,\"_653\":654,\"_740\":741,\"_40\":41,\"_742\":743,\"_67\":744},\"bucket\",{\"_735\":44,\"_736\":737},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_626\":732,\"_733\":734},\"tosHistory\",[721],{\"_695\":53,\"_696\":-7,\"_52\":53,\"_697\":51,\"_698\":51,\"_699\":53,\"_700\":53,\"_701\":51,\"_702\":51,\"_703\":-7,\"_704\":51,\"_705\":51,\"_706\":51,\"_707\":708,\"_709\":51,\"_311\":51,\"_710\":-7,\"_711\":-7,\"_712\":-7,\"_713\":51,\"_50\":51,\"_714\":51,\"_54\":51,\"_715\":716,\"_717\":53,\"_718\":51,\"_719\":51,\"_720\":51},\"disabledModules\",[],\"banner\",{\"_234\":693,\"_20\":694},{\"_103\":104,\"_691\":692,\"_101\":102,\"_105\":106},[387],\"payments\",{\"_687\":53,\"_688\":53,\"_689\":51,\"_690\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_722\":723,\"_724\":725,\"_685\":726,\"_330\":53,\"_328\":727,\"_728\":729,\"_730\":731},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_771\":772},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/73bd9b4420a06bfef000.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/dc96f2d4-d6db-4b5f-bb2e-83452313f430/0__dc96f2d4-d6db-4b5f-bb2e-83452313f430.webp?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/dc96f2d4-d6db-4b5f-bb2e-83452313f430/0__dc96f2d4-d6db-4b5f-bb2e-83452313f430.webp?width=1200&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 30 Rue De La Fabrique, Gatineau</title><meta description="Default listing..."/><meta property="og:title" content="Halfred | Apartment rentals | Appartement à louer 30 Rue De La Fabrique, Gatineau"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content="Default listing..."/><meta property="og:image" content="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/dc96f2d4-d6db-4b5f-bb2e-83452313f430/0__dc96f2d4-d6db-4b5f-bb2e-83452313f430.webp?version=2102e3c7-79c7-4e4d-91b7-5bc1445b4603"/><meta property="og:url" content="www.halfred.ca/listings/30-rue-de-la-fabrique/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/listing-detail.page-D34BzzZ7.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="889430d95bae94ebd7d8a8090fe46307-42a168b3a6a2e15e-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=889430d95bae94ebd7d8a8090fe46307,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.14453244080633643,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/30-rue-de-la-fabrique/details/gallery?index=0" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/dc96f2d4-d6db-4b5f-bb2e-83452313f430/0__dc96f2d4-d6db-4b5f-bb2e-83452313f430.webp?width=800&amp;height=600&amp;quality=80" alt="Location à Gatineau: appartement de 0 chambres à louer, Halfred | Apartment rentals immobilier" class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->1</div></div></div><div class="hidden sm:block"><div class="relative overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-96" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/30-rue-de-la-fabrique/details/gallery?index=0" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/dc96f2d4-d6db-4b5f-bb2e-83452313f430/0__dc96f2d4-d6db-4b5f-bb2e-83452313f430.webp?width=1200&amp;height=600&amp;quality=80" alt="Location à Gatineau: appartement de 0 chambres à louer, Halfred | Apartment rentals immobilier" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">30 Rue De La Fabrique</h1><p class="text-sm text-foreground-600">Gatineau (Aylmer)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="mb-4 flex items-center justify-center gap-2 rounded-lg bg-default-100 p-3 text-sm"><span></span><p>Non disponible</p></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description de l&#x27;annonce</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>Annonce par défaut</p></div></div></div></div><div class="border-b-[1px] pt-8 pb-8"><div class="space-y-3" data-sentry-component="UnitsSection" data-sentry-source-file="units-section.tsx"></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">30 Rue De La Fabrique</h1><p class="text-sm text-foreground-600">Gatineau (Aylmer)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="mb-4 flex items-center justify-center gap-2 rounded-lg bg-default-100 p-3 text-sm"><span></span><p>Non disponible</p></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/listing-detail.page-D34BzzZ7.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicListingDetailPage": {
338 − "id": "PublicListingDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/:slug/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/listing-detail.page-D34BzzZ7.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/index-C5vezUBD.js",
354 − "/assets/seo.helpers-DUWcGrSj.js",
355 − "/assets/should-revalidate-for-modal-CqioTNup.js",
356 − "/assets/listing-card-vLpuwroq.js",
357 − "/assets/types-BlrrbiGM.js",
358 − "/assets/use-tenant-BWWCVgWC.js",
359 − "/assets/index-DoORTE4j.js",
360 − "/assets/icon-ChitaFhd.js",
361 − "/assets/chunk-T45N425O-C34bNx0L.js",
362 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
363 − "/assets/preload-helper-Djj1Qpxo.js",
364 − "/assets/index-yaZ7Ke31.js",
365 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
366 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
367 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
368 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
369 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
370 − "/assets/settings.types-DE5bLdHg.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicListingDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_547\":-5,\"_548\":-7,\"_549\":550,\"_551\":552,\"_19\":20,\"_17\":553,\"_554\":-5,\"_555\":556,\"_184\":185,\"_557\":-5,\"_558\":-5},\"PublicListingsLayoutPage\",{\"_17\":174,\"_175\":176,\"_177\":178,\"_179\":53,\"_180\":181,\"_182\":183,\"_184\":185,\"_186\":51,\"_187\":51,\"_188\":51},\"PublicListingDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":147,\"_148\":-5,\"_89\":149,\"_150\":72,\"_77\":96,\"_151\":152,\"_153\":-5,\"_108\":154,\"_111\":155,\"_109\":156,\"_33\":157,\"_158\":159,\"_160\":161,\"_162\":-5,\"_163\":-5,\"_164\":165,\"_166\":51,\"_167\":168,\"_169\":-5},\"auth\",{\"_145\":53,\"_146\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136,\"_137\":138,\"_139\":140},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/30-rue-de-la-fabrique/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",52,\"Somewhat Walkable\",\"updated\",\"2026-02-21 19:16:02.306166\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/30Rue-De-La-Fabrique/lat=45.409807/lng=-75.85807/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.4095,\"snapped_lon\",-75.858,\"transit\",{\"_33\":-5,\"_144\":-5,\"_142\":-5},\"bike\",{\"_33\":141,\"_142\":143},\"Very Bikeable\",\"score\",72,\"summary\",\"loggedIn\",\"isStaff\",\"30-rue-de-la-fabrique\",\"area\",\"30 Rue De La Fabrique\",\"name\",\"buildingId\",\"dc96f2d4-d6db-4b5f-bb2e-83452313f430\",\"availabilty\",\"Aylmer\",-75.85807,45.409807,{\"_171\":172,\"_20\":173},\"images\",[170],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[],\"listed\",\"units\",[],\"cardData\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/dc96f2d4-d6db-4b5f-bb2e-83452313f430/0__dc96f2d4-d6db-4b5f-bb2e-83452313f430.webp?version=2102e3c7-79c7-4e4d-91b7-5bc1445b4603\",\"en\",\"Default listing\",\"Annonce par défaut\",{\"_23\":24,\"_25\":545,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":546,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_292\":293,\"_294\":295,\"_296\":297,\"_148\":298,\"_299\":300,\"_301\":53,\"_302\":303,\"_304\":305,\"_306\":51,\"_307\":53,\"_308\":309,\"_310\":311},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_189\":190,\"_191\":192,\"_193\":194,\"_195\":196,\"_197\":190,\"_198\":199,\"_200\":201},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[278],\"analysisProductsPrice\",{\"_278\":279,\"_280\":281,\"_282\":283,\"_284\":285,\"_286\":283,\"_287\":283,\"_288\":289,\"_290\":291},\"notifications\",{\"_260\":261},\"form\",{\"_253\":53,\"_254\":51,\"_255\":53,\"_256\":53,\"_257\":51,\"_258\":51,\"_259\":51},\"enabledSkus\",\"submissions\",{\"_203\":204,\"_205\":206,\"_207\":208,\"_209\":210,\"_27\":211,\"_212\":-5},\"agent\",{\"_202\":51},\"hideAgentNewSubmissionBtn\",\"all\",[239,240,241,242,243,244,245,249,250,251,252],\"steps\",[239,240,241,242,243,244,245],\"badges\",[229,230,231,232,233,234],\"statuses\",[223,213,215,217,219,221,224,225,226,227,228],{\"_213\":214,\"_215\":216,\"_217\":218,\"_219\":220,\"_221\":222},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_235\":213,\"_237\":214},{\"_235\":215,\"_237\":216},{\"_235\":217,\"_237\":218},{\"_235\":219,\"_237\":220},{\"_235\":221,\"_237\":222},{\"_235\":236,\"_237\":238},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_235\":223,\"_237\":-5,\"_246\":51},{\"_235\":213,\"_237\":214,\"_246\":53,\"_247\":51,\"_248\":51},{\"_235\":215,\"_237\":216,\"_246\":53,\"_247\":51,\"_248\":51},{\"_235\":217,\"_237\":218,\"_246\":53,\"_247\":51,\"_248\":51},{\"_235\":219,\"_237\":220,\"_246\":53,\"_247\":51,\"_248\":51},{\"_235\":221,\"_237\":222,\"_246\":53,\"_247\":51,\"_248\":51},{\"_235\":224,\"_237\":-5,\"_246\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_235\":225,\"_237\":-5,\"_246\":51},{\"_235\":226,\"_237\":-5,\"_246\":51},{\"_235\":227,\"_237\":-5,\"_246\":51},{\"_235\":228,\"_237\":-5,\"_246\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_200\":262,\"_263\":264,\"_17\":265,\"_266\":267},[275,276,277],\"manager\",[],[269,270,271,272,273,274],\"admin\",[268],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,\"price\",[118,544],\"pricePerMonth\",[118,544],\"pricePerSqft\",[181,181],[181,543],\"floor\",[542,331],\"hasFloor\",\"bathrooms\",[181,336],\"bedrooms\",[181,541],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388],\"availableNeighborhoods\",[312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329],{\"_150\":354,\"_180\":118},{\"_150\":353,\"_180\":118},{\"_150\":352,\"_180\":118},{\"_150\":154,\"_180\":351},{\"_150\":350,\"_180\":118},{\"_150\":349,\"_180\":336},{\"_150\":347,\"_180\":348},{\"_150\":96,\"_180\":346},{\"_150\":344,\"_180\":345},{\"_150\":343,\"_180\":336},{\"_150\":342,\"_180\":118},{\"_150\":340,\"_180\":341},{\"_150\":339,\"_180\":118},{\"_150\":337,\"_180\":338},{\"_150\":335,\"_180\":336},{\"_150\":334,\"_180\":118},{\"_150\":332,\"_180\":333},{\"_150\":330,\"_180\":331},\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",2,\"Pointe-Gatineau\",5,\"Plateau \",\"Plateau\",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",18,\"angers\",\"2\",\"1\",{\"_43\":537,\"_150\":538,\"_38\":410},{\"_43\":532,\"_150\":533,\"_38\":534},{\"_43\":528,\"_150\":529,\"_38\":391},{\"_43\":524,\"_150\":525,\"_38\":405},{\"_43\":519,\"_150\":520,\"_38\":521},{\"_43\":515,\"_150\":516,\"_38\":391},{\"_43\":510,\"_150\":511,\"_38\":512},{\"_43\":506,\"_150\":507,\"_38\":451},{\"_43\":502,\"_150\":503,\"_38\":405},{\"_43\":497,\"_150\":498,\"_38\":499},{\"_43\":493,\"_150\":494,\"_38\":396},{\"_43\":489,\"_150\":490,\"_38\":391},{\"_43\":485,\"_150\":486,\"_38\":438},{\"_43\":481,\"_150\":482,\"_38\":420},{\"_43\":476,\"_150\":477,\"_38\":478},{\"_43\":472,\"_150\":473,\"_38\":420},{\"_43\":467,\"_150\":468,\"_38\":469},{\"_43\":463,\"_150\":464,\"_38\":425},{\"_43\":458,\"_150\":459,\"_38\":460},{\"_43\":454,\"_150\":455,\"_38\":451},{\"_43\":449,\"_150\":450,\"_38\":451},{\"_43\":445,\"_150\":446,\"_38\":438},{\"_43\":441,\"_150\":442,\"_38\":443},{\"_43\":436,\"_150\":437,\"_38\":438},{\"_43\":432,\"_150\":433,\"_38\":396},{\"_43\":428,\"_150\":429,\"_38\":410},{\"_43\":423,\"_150\":424,\"_38\":425},{\"_43\":418,\"_150\":419,\"_38\":420},{\"_43\":413,\"_150\":414,\"_38\":415},{\"_43\":408,\"_150\":409,\"_38\":410},{\"_43\":403,\"_150\":404,\"_38\":405},{\"_43\":399,\"_150\":400,\"_38\":401},{\"_43\":394,\"_150\":395,\"_38\":396},{\"_43\":389,\"_150\":390,\"_38\":391},\"counter-type\",{\"_171\":392,\"_20\":393},\"lucide:check\",\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_171\":397,\"_20\":398},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_171\":402,\"_20\":402},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_171\":406,\"_20\":407},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_171\":411,\"_20\":412},\"lucide:car\",\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_171\":416,\"_20\":417},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_171\":421,\"_20\":422},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_171\":426,\"_20\":427},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_171\":430,\"_20\":431},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_171\":434,\"_20\":435},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_171\":439,\"_20\":440},\"lucide:washing-machine\",\"Dryer\",\"Sèche-linge\",\"gym\",{\"_171\":444,\"_20\":444},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_171\":447,\"_20\":448},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_171\":452,\"_20\":453},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_171\":456,\"_20\":457},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_171\":461,\"_20\":462},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_171\":465,\"_20\":466},\"Oven\",\"Four\",\"refrigerator\",{\"_171\":470,\"_20\":471},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_171\":474,\"_20\":475},\"Cable\",\"Câble\",\"stove\",{\"_171\":479,\"_20\":480},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_171\":483,\"_20\":484},\"Fiber Internet\",\"Internet fibre\",\"washer\",{\"_171\":487,\"_20\":488},\"Washer\",\"Laveuse\",\"elevator\",{\"_171\":491,\"_20\":492},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_171\":495,\"_20\":496},\"Balcony\",\"Balcon\",\"electricity\",{\"_171\":500,\"_20\":501},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"electric-heating\",{\"_171\":504,\"_20\":505},\"Electric Heating\",\"Chauffage Électrique\",\"cats-allowed\",{\"_171\":508,\"_20\":509},\"Cats Allowed\",\"Chats autorisés\",\"blinds\",{\"_171\":513,\"_20\":514},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_171\":517,\"_20\":518},\"Water Tank\",\"Réservoir d'eau\",\"washer-dryer-outlet\",{\"_171\":522,\"_20\":523},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"central-air-conditioning\",{\"_171\":526,\"_20\":527},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_171\":530,\"_20\":531},\"Dishwasher\",\"Lave-vaisselle\",\"water\",{\"_171\":535,\"_20\":536},\"lucide:droplet\",\"Water\",\"Eau\",\"parking\",{\"_171\":539,\"_20\":540},\"Parking\",\"Stationnement\",4,-1,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_235\":573,\"_43\":44,\"_574\":575,\"_48\":49,\"_33\":34,\"_27\":28,\"_576\":577,\"_23\":24,\"_29\":30,\"_191\":578,\"_579\":580,\"_581\":582,\"_583\":584,\"_40\":41,\"_585\":586,\"_587\":588,\"_42\":-5,\"_589\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_590\":-5,\"_591\":-5,\"_184\":185,\"_592\":593,\"_594\":595,\"_596\":597,\"_38\":39,\"_598\":599,\"_35\":-7,\"_600\":601,\"_36\":602,\"_603\":604,\"_605\":606,\"_25\":607,\"_189\":608,\"_609\":610,\"_611\":612},\"toast\",\"user\",{\"_559\":51,\"_560\":-5,\"_561\":-5,\"_562\":-5,\"_563\":-5,\"_564\":-5,\"_565\":-5,\"_566\":-5,\"_567\":-5,\"_568\":-5,\"_62\":-5,\"_64\":-5,\"_569\":-5,\"_146\":51,\"_570\":51,\"_571\":-5,\"_572\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":696},\"social\",{\"_693\":694,\"_695\":72},{\"_278\":279,\"_280\":281,\"_282\":283,\"_284\":285,\"_286\":283,\"_287\":283,\"_288\":289,\"_290\":291},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_690\":652,\"_221\":53,\"_691\":51,\"_692\":647},\"plan\",{\"_150\":671,\"_672\":72,\"_673\":674,\"_675\":676,\"_677\":678,\"_679\":680,\"_681\":181,\"_682\":683,\"_684\":181,\"_685\":686,\"_687\":346,\"_688\":689},\"metadata\",{\"_25\":607},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_664\":665,\"_579\":580,\"_666\":667,\"_40\":41,\"_668\":669,\"_67\":670},\"bucket\",{\"_661\":44,\"_662\":663},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_552\":658,\"_659\":660},\"tosHistory\",[647],{\"_621\":53,\"_622\":-7,\"_52\":53,\"_623\":51,\"_624\":51,\"_625\":53,\"_626\":53,\"_627\":51,\"_628\":51,\"_629\":-7,\"_630\":51,\"_631\":51,\"_632\":51,\"_633\":634,\"_635\":51,\"_202\":51,\"_636\":-7,\"_637\":-7,\"_638\":-7,\"_639\":51,\"_50\":51,\"_640\":51,\"_54\":51,\"_641\":642,\"_643\":53,\"_644\":51,\"_645\":51,\"_646\":51},\"disabledModules\",[],\"banner\",{\"_171\":619,\"_20\":620},{\"_103\":104,\"_617\":618,\"_101\":102,\"_105\":106},[278],\"payments\",{\"_613\":53,\"_614\":53,\"_615\":51,\"_616\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_648\":649,\"_650\":651,\"_611\":652,\"_221\":53,\"_219\":653,\"_654\":655,\"_656\":657},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_697\":698},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
added tests/fixtures/halfred/788fe222bb5cd03d7bf2.html +1047 −0
@@ -0,0 +1,1047 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=1024&amp;height=1280&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/cac2a87b-0041-4a9b-b934-bcee459364aa/chatgpt-image-13-mai-2026-145743.png?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-038-2.jpg?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/26f1bc76-d9d7-4874-96aa-d5db0874ab14/Capture_d_ecran_2025-12-22_121959.png?width=192&amp;height=144&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | Desrosiers, Gatineau</title><meta name="description" content="Halfred est fier de vous présenter le projet Desrosiers, un immeuble locatif neuf et moderne, conçu pour répondre aux besoins d’aujourd’hui et de demain. Un ..."/><meta property="og:title" content="Halfred | Apartment rentals | Desrosiers, Gatineau"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="Halfred est fier de vous présenter le projet Desrosiers, un immeuble locatif neuf et moderne, conçu pour répondre aux besoins d’aujourd’hui et de demain. Un ..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg"/><meta property="og:url" content="https://www.halfred.ca/fr/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/project-detail.page-BFNjsI3w.js"/><link rel="modulepreload" href="/assets/detail-error-boundary-C3TWahqB.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="67a5a40bbea36f1e7cdacd4ba9f148d7-34512fbe5650f6bc-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=67a5a40bbea36f1e7cdacd4ba9f148d7,sentry-org_id=476518,sentry-transaction=GET%20%2Fproject%2F%3Aid%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.016375519849592735,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="max-lg:hidden order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex"><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Retour à la liste</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="px-3.5" data-sentry-component="EditorialProjectDetailsPage" data-sentry-source-file="project-details.tsx"><main class="mx-auto max-w-[1320px] px-1 pb-10 pt-3 sm:px-[clamp(20px,4.5vw,64px)] sm:pb-[clamp(48px,5.5vw,84px)] sm:pt-[clamp(24px,3.2vw,44px)]"><div class="flex flex-wrap items-start gap-x-[clamp(40px,5vw,72px)] gap-y-7 sm:gap-y-14 lg:flex-nowrap"><div class="order-2 min-w-0 max-w-[660px] flex-[1_1_440px] lg:order-1"><div data-ed-rise="true" class="ed-kicker mb-2 sm:mb-3">Gatineau</div><h1 class="ed-serif m-0 mb-5 overflow-hidden pb-[0.05em] text-[length:var(--ed-text-h1)] font-medium leading-[1.12] tracking-[-0.012em] text-[var(--ed-ink)] sm:mb-6"><span data-ed-mask="true" class="block">Desrosiers</span></h1><div data-ed-rise="4" class="mb-8 sm:mb-10" id="details-cta"><div data-sentry-component="ConversionRail" data-sentry-source-file="conversion-rail.tsx"><div class="flex flex-col items-stretch gap-2.5 sm:flex-row sm:flex-wrap sm:items-center sm:gap-3"><button type="button" class="inline-flex w-full min-h-12 items-center justify-center gap-2.5 rounded-full bg-[var(--ed-ink)] px-7 py-1 shadow-[0_8px_20px_rgba(26,26,23,0.16)] transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto"><span class="text-[14px] font-semibold leading-snug text-white">Je suis intéressé par cette propriété</span><span></span></button></div></div></div><div data-ed-rise="5"><div data-sentry-component="HomeTypeRows" data-sentry-source-file="home-types.tsx"><div class="ed-kicker mb-2 text-[10.5px] tracking-[0.13em]">Logements disponibles</div><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">2 chambres</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">2 disponibles</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,559<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a></div></div><div data-ed-rise="9" class="mt-8 sm:mt-10"><div class="text-[length:var(--ed-text-copy)] leading-[var(--ed-copy-leading)] text-[var(--ed-body)] [&amp;_p:empty]:hidden [&amp;_p:has(&gt;br:only-child)]:hidden line-clamp-4"><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>Halfred is proud to introduce the Desrosiers Project, a brand-new, modern rental building designed for today’s lifestyle—clean lines, smart layouts, and comfort built for the future.</p><p>🔑 General Features</p><p>❄️ Air conditioning included</p><p>🌐 Internet included</p><p>⚡ Heating and electricity not included</p><p>🍽 5 appliances included</p><p>(Note: 3½ units do not include a dishwasher)</p><p>🚗 Outdoor parking included</p><p>🌿 Private outdoor balconies</p><p>🏗 New construction with modern finishes</p><p>📋 Credit check required | Minimum 12-month lease</p><p>✨ A forward-looking project, perfect for professionals, couples, and families seeking modern comfort, convenience, and predictable all-inclusive living.</p><p>📞 Interested?</p><p>Contact Halfred today for more information or to reserve your unit.</p><p>Availability is limited — secure your new home now.</p></div></div></div></div></div><!--$?--><template id="B:0"></template><!--/$--><div data-ed-rise="9" class="mt-6 sm:mt-8"><div data-sentry-component="ContactPanel" data-sentry-source-file="conversion-rail.tsx"><div class="rounded-[18px] border border-[var(--ed-hairline)] bg-[var(--ed-card-alt)] p-4 sm:p-5" data-sentry-component="ContactActions" data-sentry-source-file="conversion-rail.tsx"><div class="mb-4 flex items-center gap-3"><span class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-chip)] text-[13px] font-semibold tracking-[0.02em] text-[var(--ed-strong)]">H|</span><span class="min-w-0"><span class="block truncate text-[15px] font-semibold text-[var(--ed-ink)]">Halfred | Apartment rentals</span><span class="block text-[12.5px] text-[var(--ed-secondary)]">Gestionnaire immobilier</span></span></div><div class="flex flex-wrap gap-2"><a href="mailto:info@halfred.ca" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full bg-[var(--ed-ink)] px-4 text-[13.5px] font-medium text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto sm:flex-1"><span></span>Message</a><a href="tel:(819) 593-3304" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[13.5px] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)] sm:w-auto sm:flex-1"><span></span><span class="truncate">Appeler (819) 593-3304</span></a></div><form class="mt-2.5 flex items-center gap-2" data-sentry-component="QuickQuestion" data-sentry-source-file="conversion-rail.tsx"><input type="text" placeholder="Or ask a quick question…" class="h-10 min-w-0 flex-1 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[16px] text-[var(--ed-ink)] outline-none transition-colors placeholder:text-[var(--ed-tertiary)] focus:border-[var(--ed-ink)] sm:text-[13.5px]" value=""/><button type="submit" aria-label="Send your question" class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form></div></div></div></div><div class="order-1 min-w-0 flex-[1.15_1_480px] lg:sticky lg:top-[92px] lg:order-2 lg:self-start" data-sentry-component="GalleryCollage" data-sentry-source-file="gallery-collage.tsx"><div class="-mx-[1.125rem] flex snap-x snap-mandatory gap-3 overflow-x-auto px-[1.125rem] pb-1 sm:hidden"><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-full" href="/fr/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=800&amp;height=520&amp;quality=80" alt="Desrosiers" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="hidden sm:block"><a data-ed-img="true" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[20px]" style="aspect-ratio:4/5" data-sentry-element="RemixLink" data-sentry-source-file="gallery-collage.tsx" href="/fr/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg?width=1024&amp;height=1280&amp;quality=80" alt="Desrosiers" data-ed-imgzoom="true" class="absolute inset-0 h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/><div class="absolute bottom-3.5 right-3.5 flex items-center gap-2 rounded-full bg-[rgba(26,26,23,0.78)] px-3.5 py-2"><span></span><span class="text-[13px] font-semibold text-white">1 photo</span></div></a></div></div></div><div id="units" class="scroll-mt-[calc(var(--ed-header-h,0px)+16px)] mt-[var(--ed-section-gap)]"><h2 tabindex="-1" data-ed-reveal="true" class="ed-serif m-0 mb-3 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] outline-none sm:mb-4">Bâtiments et unités</h2><div class="mb-5 text-[length:var(--ed-text-lede)] text-[var(--ed-secondary)] sm:mb-7">Choisissez un bâtiment, puis ouvrez un logement pour tous les détails.</div><div class="mb-5 flex flex-col gap-2 sm:mb-6 sm:flex-row sm:flex-wrap sm:items-center sm:gap-x-4 sm:gap-y-2"><div class="flex flex-col gap-2 sm:flex-row sm:flex-wrap sm:items-center" data-sentry-component="UnitsToolbar" data-sentry-source-file="units-toolbar.tsx"><label class="flex h-10 w-full items-center gap-2 rounded-full border border-[var(--ed-border)] bg-white pl-3.5 pr-3 transition-colors focus-within:border-[var(--ed-ink)] sm:h-9 sm:w-auto sm:min-w-[190px] sm:max-w-[260px] sm:flex-none"><span></span><input type="search" placeholder="Search homes" class="w-full min-w-0 bg-transparent text-[16px] text-[var(--ed-ink)] outline-none placeholder:text-[var(--ed-tertiary)] sm:text-[13.5px]" value=""/></label><div class="ed-scroll-rail -mx-[1.125rem] flex items-center gap-2 overflow-x-auto px-[1.125rem] sm:contents"><button type="button" data-type-chip="all" aria-pressed="true" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-transparent bg-[var(--ed-ink)] font-medium text-white">Tous les types</button><button type="button" data-type-chip="bed-2" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">2 chambres<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">2</span></button><button type="button" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Disponible maintenant</button><span class="inline-flex shrink-0 items-center gap-1.5" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Dates d&#x27;emménagement</button></span></div></div></div><div class="flex flex-col gap-4"><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[#d8d3ca] bg-[var(--ed-surface)] shadow-[0_12px_34px_rgba(26,26,23,0.07)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="true" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/cac2a87b-0041-4a9b-b934-bcee459364aa/chatgpt-image-13-mai-2026-145743.png?width=192&amp;height=144&amp;quality=80" alt="86 Rue De Britannia" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">86 Rue De Britannia</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">1 sur 1 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">86 Rue De Britannia · Aylmer</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,562<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform rotate-180 bg-[var(--ed-ink)]"><span></span></span></div></button><div class="border-t border-[var(--ed-hairline-soft)] px-3 pb-4 pt-3 sm:px-[22px] sm:pb-5 sm:pt-4"><div class="mb-4 flex flex-wrap items-center gap-2 px-1 sm:mb-5 sm:px-0"><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Parking</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Water</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Central Air Conditioning</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Cats Allowed</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Dishwasher</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Washer/Dryer Outlet</span><button type="button" class="text-[12.5px] text-[var(--ed-ink)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink-hover)]">+1 plus</button></div><div class="flex flex-col gap-5" data-sentry-component="UnitGroupsSection" data-sentry-source-file="unit-groups.tsx"><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2"><span class="ed-serif text-[var(--ed-ink)] text-[18px] sm:text-[22px]">2 chambres</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details/gallery?unit=b072bb53-46fb-4d61-8afd-641393322d0e" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-038-2.jpg?width=232&amp;height=168&amp;quality=80" alt="1" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">14 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">1</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>1,260 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 7 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->4</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,703</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,562</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div></div></div></div></div></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/26f1bc76-d9d7-4874-96aa-d5db0874ab14/Capture_d_ecran_2025-12-22_121959.png?width=192&amp;height=144&amp;quality=80" alt="Desrosiers" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">Desrosiers</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">1 sur 1 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">24 Rue Larabie · Templeton</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,559<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div></div></div><div id="location" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,78px)+24px)] border-t border-[var(--ed-hairline)] pt-[var(--ed-section-pad)]"><h2 data-ed-reveal="true" class="ed-serif m-0 mb-6 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] sm:mb-8">Emplacement</h2><div class="flex flex-wrap items-stretch gap-6 sm:gap-9"><!--$?--><template id="B:1"></template><!--/$--><div data-ed-reveal="true" class="relative min-h-[260px] flex-1 basis-[420px] overflow-hidden rounded-[18px] border border-[var(--ed-hairline)] bg-[#efede6] sm:min-h-[320px]" data-sentry-component="EditorialMap" data-sentry-source-file="location.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div aria-hidden="true" class="absolute left-1/2 top-[48%] -translate-x-1/2 -translate-y-full"><svg width="40" height="40" viewBox="0 0 24 24" fill="#1A1A17" stroke="#fff" stroke-width="1.4" role="presentation" data-sentry-element="svg" data-sentry-component="InkPin" data-sentry-source-file="location.tsx"><path d="M12 22s-7-7.2-7-12a7 7 0 1 1 14 0c0 4.8-7 12-7 12z" data-sentry-element="path" data-sentry-source-file="location.tsx"></path><circle cx="12" cy="10" r="2.4" fill="#fff" stroke="none" data-sentry-element="circle" data-sentry-source-file="location.tsx"></circle></svg></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div class="ed-caption ed-caption-on-map pointer-events-none absolute bottom-3.5 left-4 rounded-full bg-white/85 px-3 py-1.5 backdrop-blur-[2px]">GATINEAU</div></div></div><a href="https://www.google.com/maps/dir/?api=1&amp;destination=45.492742,-75.610248" target="_blank" rel="noopener noreferrer" class="mt-2.5 inline-block py-2.5 text-[14.5px] text-[var(--ed-secondary)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink)] sm:mt-5 sm:py-0" data-sentry-component="EditorialDirectionsLink" data-sentry-source-file="location.tsx">Obtenir l&#x27;itinéraire<!-- --> ↗</a></div></main><div aria-hidden="true" class="sticky bottom-[calc(var(--footer-height)+env(safe-area-inset-bottom))] z-40 -mx-3.5 border-t border-[var(--ed-band-line)] bg-white px-3.5 transition-[transform,visibility] duration-300 lg:bottom-0 pointer-events-none invisible translate-y-[110%]" data-sentry-component="DetailsActionBar" data-sentry-source-file="action-bar.tsx"><div class="mx-auto flex h-[var(--ed-action-bar-height)] max-w-[1320px] items-center justify-between gap-3 px-1 sm:gap-4 sm:px-[clamp(20px,4.5vw,64px)]"><div class="min-w-0 overflow-hidden"><div class="truncate"><span class="text-[16px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[18px] lg:text-[19px]">À partir de $1,559</span><span class="hidden text-[13px] text-[var(--ed-secondary)] sm:inline"> <!-- -->/ mois</span></div></div><div class="flex shrink-0 items-center gap-5"><button type="button" class="inline-flex h-11 shrink-0 items-center gap-2 whitespace-nowrap rounded-full bg-[var(--ed-ink)] px-4 text-[14px] font-semibold text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:gap-2.5 sm:px-6 sm:text-[14.5px]"><span class="sm:hidden">Contactez-nous</span><span class="hidden sm:inline">Je suis intéressé par cette propriété</span><span></span></button></div></div></div><div aria-hidden="true" data-testid="units-spotlight-scrim" class="fixed inset-0 z-[45] bg-[rgba(26,26,23,0.35)] transition-opacity duration-300 motion-reduce:transition-none pointer-events-none opacity-0" data-sentry-component="UnitsSpotlightScrim" data-sentry-source-file="units-spotlight.tsx"></div></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/project-detail.page-BFNjsI3w.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",
323 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
324 + "/assets/index-DGzYOEP8.js",
325 + "/assets/Item-DuavYi1u.js",
326 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
327 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
328 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
329 + "/assets/useControlledState-C6ovzWeF.js",
330 + "/assets/useField-CBKMx-DQ.js",
331 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
332 + "/assets/chunk-M3MASYO7-COH9P04M.js",
333 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
334 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
335 + "/assets/useToggleState-DY8z2i0t.js",
336 + "/assets/index-BzZ-MzUq.js",
337 + "/assets/useToggle-QKKEqo_x.js",
338 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
339 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
340 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
341 + "/assets/use-tenant-wE0zDJ1a.js",
342 + "/assets/use-debounce-D23YJQRM.js",
343 + "/assets/use-debounced-callback-Do1iUmMt.js",
344 + "/assets/locale-switcher-kD-MOI9x.js",
345 + "/assets/use-show-profile-modal-Cgfts1ut.js",
346 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
347 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
348 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
349 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
350 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
351 + "/assets/getItemCount-BQolBIkZ.js",
352 + "/assets/useSelectableItem-Ds0Ihirs.js",
353 + "/assets/useDescription-DF6TDnVi.js",
354 + "/assets/index-D8QbWu84.js",
355 + "/assets/useMenuTriggerState-CHKcWOlC.js",
356 + "/assets/useMenuTrigger-DKFjnCNZ.js",
357 + "/assets/show-BOEsnqQk.js",
358 + "/assets/index-BxwHZyk5.js",
359 + "/assets/use-screenshot-mode-RoZeXH-d.js",
360 + "/assets/storage-image-BRiFwsnF.js",
361 + "/assets/debug-build-VZlf1Aof.js",
362 + "/assets/empty-image-DeSmMdF3.js",
363 + "/assets/storage-JzkTKPy4.js",
364 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
365 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
366 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
367 + "/assets/use-auth-D_t8q_v4.js",
368 + "/assets/OtpInput-CJhAm1Gc.js",
369 + "/assets/roles-Cde3N6LE.js",
370 + "/assets/chunk-T45N425O-CCF24x8B.js",
371 + "/assets/index-CwlnhZHs.js",
372 + "/assets/tooltip-_QqyKTfK.js",
373 + "/assets/eversa-logo-DmkjJgjq.js",
374 + "/assets/exports-mapbox-Dy-MMXYe.js",
375 + "/assets/client-CpT78rmL.js",
376 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
377 + "/assets/useProgressBar-DhWwJb16.js",
378 + "/assets/index-Cy2bmlj7.js",
379 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
380 + "/assets/std-cron-C0Hf3jWh.js",
381 + "/assets/legacy-date-D-X4tG6T.js",
382 + "/assets/use-is-iframe-DIKEri2l.js",
383 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
384 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
385 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
386 + "/assets/link-CrZmIZC6.js",
387 + "/assets/rich-text-display--Qas76Hg.js",
388 + "/assets/utils-D0p-v41w.js",
389 + "/assets/signature-block-8SMePIUg.js",
390 + "/assets/index-DqzG1Q9x.js",
391 + "/assets/client-only-BGvaz0Jn.js",
392 + "/assets/use-hydrated-nn_6IPIK.js",
393 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
394 + "/assets/settings.types-CTRD0B_j.js",
395 + "/assets/input-CkQmsiJb.js",
396 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
397 + "/assets/extends-BSSSaanF.js",
398 + "/assets/user-menu-BuoWMPG0.js",
399 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
400 + "/assets/index-CRabYQb-.js",
401 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
402 + "/assets/Section-CaP3oBph.js",
403 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
404 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
405 + "/assets/LiveAnnouncer-CnNJa9NI.js",
406 + "/assets/useUpdateEffect-DsCDOPa2.js",
407 + "/assets/index-BT5H2sjL.js",
408 + "/assets/features-animation-BCPmlPPs.js",
409 + "/assets/index-8boKsGvQ.js",
410 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
411 + "/assets/use-server-command-DJ0CxbuT.js",
412 + "/assets/create-rpc-stub-SmqOCk37.js",
413 + "/assets/index-BoeY4VQ9.js",
414 + "/assets/app-form-CRPZmLNY.js",
415 + "/assets/button-KaTnxiWj.js",
416 + "/assets/spinner-DDyy7LQF.js",
417 + "/assets/zod-CmeTJI5u.js",
418 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
419 + "/assets/form-hidden-input-DI5aJPYE.js",
420 + "/assets/form-input-C6s4itpV.js",
421 + "/assets/system-preferences-DL4TO29S.js",
422 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
423 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
424 + "/assets/use-in-view-BNnh4L6M.js",
425 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js",
426 + "/assets/should-revalidate-for-modal-BjoLrI2F.js"
427 + ],
428 + "css": [
429 + "/assets/rich-text-editor-D9Rskyfk.css#",
430 + "/assets/listing-card-CI-uxcFh.css"
431 + ]
432 + },
433 + "PublicProjectDetailPage": {
434 + "id": "PublicProjectDetailPage",
435 + "parentId": "PublicListingsLayoutPage",
436 + "path": "project/:id/details",
437 + "hasAction": false,
438 + "hasLoader": true,
439 + "hasClientAction": false,
440 + "hasClientLoader": false,
441 + "hasClientMiddleware": false,
442 + "hasDefaultExport": true,
443 + "hasErrorBoundary": true,
444 + "module": "/assets/project-detail.page-BFNjsI3w.js",
445 + "imports": [
446 + "/assets/chunk-QUQL4437-m7Whu12z.js",
447 + "/assets/jsx-runtime-umhk6iWe.js",
448 + "/assets/runtime-MtUT-9pW.js",
449 + "/assets/instance-Dwq5XJYG.js",
450 + "/assets/locale-rlhQ6FjN.js",
451 + "/assets/i18n-CTdcZBaW.js",
452 + "/assets/use-localized-path-BMxKZwMg.js",
453 + "/assets/detail-error-boundary-C3TWahqB.js",
454 + "/assets/seo.helpers-rKbdQkhM.js",
455 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
456 + "/assets/listing-card-Cg3TPyWe.js",
457 + "/assets/types-BKXG3Vd5.js",
458 + "/assets/date-C7fQmg2U.js",
459 + "/assets/format-BKStloXP.js",
460 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
461 + "/assets/formatDistanceToNow-BvwR-I5H.js",
462 + "/assets/paths-CiQnXl4X.js",
463 + "/assets/use-tenant-wE0zDJ1a.js",
464 + "/assets/icon-D77RBjQx.js",
465 + "/assets/index-blsAimsU.js",
466 + "/assets/chunk-T45N425O-CCF24x8B.js",
467 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
468 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
469 + "/assets/preload-helper-Cer9inx8.js",
470 + "/assets/index-DmhvH8SD.js",
471 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
472 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
473 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
474 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
475 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
476 + "/assets/runtime-TD3m583z.js",
477 + "/assets/exports-mapbox-Dy-MMXYe.js",
478 + "/assets/index-DJnVLKJF.js",
479 + "/assets/use-locale-BnwvbFV-.js",
480 + "/assets/show-BOEsnqQk.js",
481 + "/assets/client-CpT78rmL.js",
482 + "/assets/index-CXP4lC37.js",
483 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
484 + "/assets/useProgressBar-DhWwJb16.js",
485 + "/assets/number-lhSI2oqU.js",
486 + "/assets/useLabel-FzyH2LZi.js",
487 + "/assets/useLabels-BL4rQGMb.js",
488 + "/assets/useNumberFormatter-DG2VO0C1.js",
489 + "/assets/context-C7uvIu_A.js",
490 + "/assets/NumberFormatter-BWU_gJyt.js",
491 + "/assets/index-Cy2bmlj7.js",
492 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
493 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
494 + "/assets/mergeRefs-C8xtGVp3.js",
495 + "/assets/useControlledState-Dl_rDvO0.js",
496 + "/assets/FocusScope-CWuTxhav.js",
497 + "/assets/useField-CBKMx-DQ.js",
498 + "/assets/useFormValidation-BlL8vXtt.js",
499 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
500 + "/assets/std-cron-C0Hf3jWh.js",
501 + "/assets/legacy-date-D-X4tG6T.js",
502 + "/assets/listingTypes-CkyCgPCr.js",
503 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
504 + "/assets/useButton-DZK-beuH.js",
505 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
506 + "/assets/useOverlayTriggerState-woQJgDxB.js",
507 + "/assets/index-B915wqUE.js",
508 + "/assets/accelerated-values-ClBEnI7v.js",
509 + "/assets/useTreeState-Dx1W0YuM.js",
510 + "/assets/SelectionManager-BmJrKgY4.js",
511 + "/assets/scrollIntoView-BWAA50rI.js",
512 + "/assets/isScrollable-Dnxj3NSq.js",
513 + "/assets/useSelectableList-BOP0KhmN.js",
514 + "/assets/DOMLayoutDelegate-Brany3qe.js",
515 + "/assets/useCollator-CbJkpXG2.js",
516 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
517 + "/assets/index-DGzYOEP8.js",
518 + "/assets/Item-DuavYi1u.js",
519 + "/assets/use-is-iframe-DIKEri2l.js",
520 + "/assets/floor-label-CGeBlKR2.js",
521 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
522 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
523 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
524 + "/assets/storage-image-BRiFwsnF.js",
525 + "/assets/debug-build-VZlf1Aof.js",
526 + "/assets/empty-image-DeSmMdF3.js",
527 + "/assets/storage-JzkTKPy4.js",
528 + "/assets/link-CrZmIZC6.js",
529 + "/assets/modal-BG3X61k6.js",
530 + "/assets/modal-root-haL454LR.js",
531 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
532 + "/assets/useDialog-Bh9KG6MB.js",
533 + "/assets/VisuallyHidden-D-Q2SU4O.js",
534 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
535 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
536 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
537 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
538 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
539 + "/assets/proxy-BlmPTkqy.js",
540 + "/assets/create-visual-element-Cc1-iv7S.js",
541 + "/assets/layout-CqatgvGE.js",
542 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
543 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
544 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
545 + "/assets/index-DuhTrrt1.js",
546 + "/assets/useModal-C3khzgYn.js",
547 + "/assets/index-BxwHZyk5.js",
548 + "/assets/rich-text-display--Qas76Hg.js",
549 + "/assets/utils-D0p-v41w.js",
550 + "/assets/signature-block-8SMePIUg.js",
551 + "/assets/index-DqzG1Q9x.js",
552 + "/assets/client-only-BGvaz0Jn.js",
553 + "/assets/use-hydrated-nn_6IPIK.js",
554 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
555 + "/assets/chunk-M3MASYO7-COH9P04M.js",
556 + "/assets/settings.types-CTRD0B_j.js",
557 + "/assets/use-show-profile-modal-Cgfts1ut.js",
558 + "/assets/input-CkQmsiJb.js",
559 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
560 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
561 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
562 + "/assets/useControlledState-C6ovzWeF.js",
563 + "/assets/extends-BSSSaanF.js",
564 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
565 + "/assets/use-debounce-D23YJQRM.js",
566 + "/assets/use-debounced-callback-Do1iUmMt.js",
567 + "/assets/use-auth-D_t8q_v4.js",
568 + "/assets/OtpInput-CJhAm1Gc.js",
569 + "/assets/roles-Cde3N6LE.js",
570 + "/assets/index-CwlnhZHs.js",
571 + "/assets/index-BzZ-MzUq.js",
572 + "/assets/powered-by-eversa-BF980dJS.js",
573 + "/assets/tooltip-_QqyKTfK.js",
574 + "/assets/eversa-logo-DmkjJgjq.js",
575 + "/assets/use-screenshot-mode-RoZeXH-d.js",
576 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
577 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
578 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
579 + "/assets/getItemCount-BQolBIkZ.js",
580 + "/assets/useSelectableItem-Ds0Ihirs.js",
581 + "/assets/useDescription-DF6TDnVi.js",
582 + "/assets/index-D8QbWu84.js",
583 + "/assets/useMenuTriggerState-CHKcWOlC.js",
584 + "/assets/useMenuTrigger-DKFjnCNZ.js",
585 + "/assets/user-menu-BuoWMPG0.js",
586 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
587 + "/assets/index-CRabYQb-.js",
588 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
589 + "/assets/Section-CaP3oBph.js",
590 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
591 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
592 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
593 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
594 + "/assets/LiveAnnouncer-CnNJa9NI.js",
595 + "/assets/useUpdateEffect-DsCDOPa2.js",
596 + "/assets/index-BT5H2sjL.js",
597 + "/assets/features-animation-BCPmlPPs.js",
598 + "/assets/index-8boKsGvQ.js",
599 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
600 + "/assets/use-server-command-DJ0CxbuT.js",
601 + "/assets/create-rpc-stub-SmqOCk37.js",
602 + "/assets/index-BoeY4VQ9.js",
603 + "/assets/app-form-CRPZmLNY.js",
604 + "/assets/button-KaTnxiWj.js",
605 + "/assets/spinner-DDyy7LQF.js",
606 + "/assets/zod-CmeTJI5u.js",
607 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
608 + "/assets/form-hidden-input-DI5aJPYE.js",
609 + "/assets/form-input-C6s4itpV.js",
610 + "/assets/system-preferences-DL4TO29S.js",
611 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
612 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
613 + "/assets/use-in-view-BNnh4L6M.js",
614 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
615 + ],
616 + "css": [
617 + "/assets/rich-text-editor-D9Rskyfk.css#",
618 + "/assets/listing-card-CI-uxcFh.css"
619 + ]
620 + },
621 + "PublicHomePage": {
622 + "id": "PublicHomePage",
623 + "parentId": "public-language",
624 + "path": "",
625 + "hasAction": false,
626 + "hasLoader": true,
627 + "hasClientAction": false,
628 + "hasClientLoader": false,
629 + "hasClientMiddleware": false,
630 + "hasDefaultExport": true,
631 + "hasErrorBoundary": false,
632 + "module": "/assets/home.page-CEey5s8m.js",
633 + "imports": [
634 + "/assets/chunk-QUQL4437-m7Whu12z.js",
635 + "/assets/jsx-runtime-umhk6iWe.js",
636 + "/assets/runtime-MtUT-9pW.js",
637 + "/assets/facebook-pixel-B5MxbSaJ.js",
638 + "/assets/google-analytics-D-bO2gMa.js",
639 + "/assets/lead-capture-config.helpers-DpZ6az3C.js",
640 + "/assets/global-progress-CjDASA7T.js",
641 + "/assets/header-BBMyfPB0.js",
642 + "/assets/footer-Byz07yjl.js",
643 + "/assets/listing-card-Cg3TPyWe.js",
644 + "/assets/seo.helpers-rKbdQkhM.js",
645 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
646 + "/assets/types-BKXG3Vd5.js",
647 + "/assets/index-CXP4lC37.js",
648 + "/assets/use-locale-BnwvbFV-.js",
649 + "/assets/instance-Dwq5XJYG.js",
650 + "/assets/locale-rlhQ6FjN.js",
651 + "/assets/lead-capture-layout-D9cSW77z.js",
652 + "/assets/locale-switcher-kD-MOI9x.js",
653 + "/assets/use-show-profile-modal-Cgfts1ut.js",
654 + "/assets/i18n-CTdcZBaW.js",
655 + "/assets/date-C7fQmg2U.js",
656 + "/assets/format-BKStloXP.js",
657 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
658 + "/assets/formatDistanceToNow-BvwR-I5H.js",
659 + "/assets/paths-CiQnXl4X.js",
660 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
661 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
662 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
663 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
664 + "/assets/preload-helper-Cer9inx8.js",
665 + "/assets/index-DmhvH8SD.js",
666 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
667 + "/assets/Item-DuavYi1u.js",
668 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
669 + "/assets/useDialog-Bh9KG6MB.js",
670 + "/assets/VisuallyHidden-D-Q2SU4O.js",
671 + "/assets/isScrollable-Dnxj3NSq.js",
672 + "/assets/useLabels-BL4rQGMb.js",
673 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
674 + "/assets/context-C7uvIu_A.js",
675 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
676 + "/assets/FocusScope-CWuTxhav.js",
677 + "/assets/index-DJnVLKJF.js",
678 + "/assets/useOverlayTriggerState-woQJgDxB.js",
679 + "/assets/useControlledState-Dl_rDvO0.js",
680 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
681 + "/assets/number-lhSI2oqU.js",
682 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
683 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
684 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
685 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
686 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
687 + "/assets/index-DuhTrrt1.js",
688 + "/assets/mergeRefs-C8xtGVp3.js",
689 + "/assets/getItemCount-BQolBIkZ.js",
690 + "/assets/SelectionManager-BmJrKgY4.js",
691 + "/assets/scrollIntoView-BWAA50rI.js",
692 + "/assets/useSelectableItem-Ds0Ihirs.js",
693 + "/assets/useDescription-DF6TDnVi.js",
694 + "/assets/index-D8QbWu84.js",
695 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
696 + "/assets/useSelectableList-BOP0KhmN.js",
697 + "/assets/DOMLayoutDelegate-Brany3qe.js",
698 + "/assets/useCollator-CbJkpXG2.js",
699 + "/assets/useTreeState-Dx1W0YuM.js",
700 + "/assets/useMenuTriggerState-CHKcWOlC.js",
701 + "/assets/useMenuTrigger-DKFjnCNZ.js",
702 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
703 + "/assets/index-blsAimsU.js",
704 + "/assets/storage-image-BRiFwsnF.js",
705 + "/assets/icon-D77RBjQx.js",
706 + "/assets/debug-build-VZlf1Aof.js",
707 + "/assets/empty-image-DeSmMdF3.js",
708 + "/assets/storage-JzkTKPy4.js",
709 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
710 + "/assets/use-tenant-wE0zDJ1a.js",
711 + "/assets/use-localized-path-BMxKZwMg.js",
712 + "/assets/modal-BG3X61k6.js",
713 + "/assets/runtime-TD3m583z.js",
714 + "/assets/modal-root-haL454LR.js",
715 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
716 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
717 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
718 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
719 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
720 + "/assets/proxy-BlmPTkqy.js",
721 + "/assets/create-visual-element-Cc1-iv7S.js",
722 + "/assets/accelerated-values-ClBEnI7v.js",
723 + "/assets/layout-CqatgvGE.js",
724 + "/assets/listingTypes-CkyCgPCr.js",
725 + "/assets/floor-label-CGeBlKR2.js",
726 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
727 + "/assets/useFormValidation-BlL8vXtt.js",
728 + "/assets/useLabel-FzyH2LZi.js",
729 + "/assets/useNumberFormatter-DG2VO0C1.js",
730 + "/assets/NumberFormatter-BWU_gJyt.js",
731 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
732 + "/assets/useModal-C3khzgYn.js",
733 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
734 + "/assets/useButton-DZK-beuH.js",
735 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
736 + "/assets/index-B915wqUE.js",
737 + "/assets/index-DGzYOEP8.js",
738 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
739 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
740 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
741 + "/assets/useControlledState-C6ovzWeF.js",
742 + "/assets/useField-CBKMx-DQ.js",
743 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
744 + "/assets/chunk-M3MASYO7-COH9P04M.js",
745 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
746 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
747 + "/assets/useToggleState-DY8z2i0t.js",
748 + "/assets/index-BzZ-MzUq.js",
749 + "/assets/useToggle-QKKEqo_x.js",
750 + "/assets/use-debounce-D23YJQRM.js",
751 + "/assets/use-debounced-callback-Do1iUmMt.js",
752 + "/assets/show-BOEsnqQk.js",
753 + "/assets/index-BxwHZyk5.js",
754 + "/assets/use-screenshot-mode-RoZeXH-d.js",
755 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
756 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
757 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
758 + "/assets/powered-by-eversa-BF980dJS.js",
759 + "/assets/tooltip-_QqyKTfK.js",
760 + "/assets/eversa-logo-DmkjJgjq.js",
761 + "/assets/use-auth-D_t8q_v4.js",
762 + "/assets/OtpInput-CJhAm1Gc.js",
763 + "/assets/roles-Cde3N6LE.js",
764 + "/assets/chunk-T45N425O-CCF24x8B.js",
765 + "/assets/index-CwlnhZHs.js",
766 + "/assets/exports-mapbox-Dy-MMXYe.js",
767 + "/assets/client-CpT78rmL.js",
768 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
769 + "/assets/useProgressBar-DhWwJb16.js",
770 + "/assets/index-Cy2bmlj7.js",
771 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
772 + "/assets/std-cron-C0Hf3jWh.js",
773 + "/assets/legacy-date-D-X4tG6T.js",
774 + "/assets/use-is-iframe-DIKEri2l.js",
775 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
776 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
777 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
778 + "/assets/link-CrZmIZC6.js",
779 + "/assets/rich-text-display--Qas76Hg.js",
780 + "/assets/utils-D0p-v41w.js",
781 + "/assets/signature-block-8SMePIUg.js",
782 + "/assets/index-DqzG1Q9x.js",
783 + "/assets/client-only-BGvaz0Jn.js",
784 + "/assets/use-hydrated-nn_6IPIK.js",
785 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
786 + "/assets/settings.types-CTRD0B_j.js",
787 + "/assets/input-CkQmsiJb.js",
788 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
789 + "/assets/extends-BSSSaanF.js",
790 + "/assets/user-menu-BuoWMPG0.js",
791 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
792 + "/assets/index-CRabYQb-.js",
793 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
794 + "/assets/Section-CaP3oBph.js",
795 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
796 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
797 + "/assets/LiveAnnouncer-CnNJa9NI.js",
798 + "/assets/useUpdateEffect-DsCDOPa2.js",
799 + "/assets/index-BT5H2sjL.js",
800 + "/assets/features-animation-BCPmlPPs.js",
801 + "/assets/index-8boKsGvQ.js",
802 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
803 + "/assets/use-server-command-DJ0CxbuT.js",
804 + "/assets/create-rpc-stub-SmqOCk37.js",
805 + "/assets/index-BoeY4VQ9.js",
806 + "/assets/app-form-CRPZmLNY.js",
807 + "/assets/button-KaTnxiWj.js",
808 + "/assets/spinner-DDyy7LQF.js",
809 + "/assets/zod-CmeTJI5u.js",
810 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
811 + "/assets/form-hidden-input-DI5aJPYE.js",
812 + "/assets/form-input-C6s4itpV.js",
813 + "/assets/system-preferences-DL4TO29S.js",
814 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
815 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
816 + "/assets/use-in-view-BNnh4L6M.js",
817 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
818 + ],
819 + "css": [
820 + "/assets/rich-text-editor-D9Rskyfk.css#",
821 + "/assets/listing-card-CI-uxcFh.css"
822 + ]
823 + },
824 + "root.not-found": {
825 + "id": "root.not-found",
826 + "parentId": "root",
827 + "path": "*",
828 + "hasAction": false,
829 + "hasLoader": false,
830 + "hasClientAction": false,
831 + "hasClientLoader": false,
832 + "hasClientMiddleware": false,
833 + "hasDefaultExport": true,
834 + "hasErrorBoundary": false,
835 + "module": "/assets/root.not-found-D01c4GbZ.js",
836 + "imports": [
837 + "/assets/root.not-found-DP5tZm2i.js",
838 + "/assets/chunk-QUQL4437-m7Whu12z.js",
839 + "/assets/jsx-runtime-umhk6iWe.js",
840 + "/assets/icon-D77RBjQx.js",
841 + "/assets/index-blsAimsU.js",
842 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
843 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
844 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
845 + "/assets/preload-helper-Cer9inx8.js",
846 + "/assets/index-DmhvH8SD.js",
847 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
848 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
849 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
850 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
851 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js"
852 + ],
853 + "css": []
854 + },
855 + "PublicListingsIndexPage": {
856 + "id": "PublicListingsIndexPage",
857 + "parentId": "PublicListingsLayoutPage",
858 + "path": "",
859 + "hasAction": false,
860 + "hasLoader": false,
861 + "hasClientAction": false,
862 + "hasClientLoader": false,
863 + "hasClientMiddleware": false,
864 + "hasDefaultExport": true,
865 + "hasErrorBoundary": false,
866 + "module": "/assets/listings-index.page-DjplF3AX.js",
867 + "imports": [
868 + "/assets/chunk-QUQL4437-m7Whu12z.js",
869 + "/assets/jsx-runtime-umhk6iWe.js",
870 + "/assets/runtime-MtUT-9pW.js",
871 + "/assets/instance-Dwq5XJYG.js",
872 + "/assets/locale-rlhQ6FjN.js",
873 + "/assets/use-localized-path-BMxKZwMg.js",
874 + "/assets/listing-card-Cg3TPyWe.js",
875 + "/assets/types-BKXG3Vd5.js",
876 + "/assets/i18n-CTdcZBaW.js",
877 + "/assets/date-C7fQmg2U.js",
878 + "/assets/format-BKStloXP.js",
879 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
880 + "/assets/formatDistanceToNow-BvwR-I5H.js",
881 + "/assets/paths-CiQnXl4X.js",
882 + "/assets/use-tenant-wE0zDJ1a.js",
883 + "/assets/runtime-TD3m583z.js",
884 + "/assets/exports-mapbox-Dy-MMXYe.js",
885 + "/assets/index-DJnVLKJF.js",
886 + "/assets/use-locale-BnwvbFV-.js",
887 + "/assets/icon-D77RBjQx.js",
888 + "/assets/show-BOEsnqQk.js",
889 + "/assets/client-CpT78rmL.js",
890 + "/assets/index-CXP4lC37.js",
891 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
892 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
893 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
894 + "/assets/useProgressBar-DhWwJb16.js",
895 + "/assets/preload-helper-Cer9inx8.js",
896 + "/assets/index-DmhvH8SD.js",
897 + "/assets/number-lhSI2oqU.js",
898 + "/assets/useLabel-FzyH2LZi.js",
899 + "/assets/useLabels-BL4rQGMb.js",
900 + "/assets/useNumberFormatter-DG2VO0C1.js",
901 + "/assets/context-C7uvIu_A.js",
902 + "/assets/NumberFormatter-BWU_gJyt.js",
903 + "/assets/index-Cy2bmlj7.js",
904 + "/assets/index-blsAimsU.js",
905 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
906 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
907 + "/assets/mergeRefs-C8xtGVp3.js",
908 + "/assets/useControlledState-Dl_rDvO0.js",
909 + "/assets/FocusScope-CWuTxhav.js",
910 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
911 + "/assets/useField-CBKMx-DQ.js",
912 + "/assets/useFormValidation-BlL8vXtt.js",
913 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
914 + "/assets/std-cron-C0Hf3jWh.js",
915 + "/assets/legacy-date-D-X4tG6T.js",
916 + "/assets/listingTypes-CkyCgPCr.js",
917 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
918 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
919 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
920 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
921 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
922 + "/assets/useButton-DZK-beuH.js",
923 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
924 + "/assets/useOverlayTriggerState-woQJgDxB.js",
925 + "/assets/index-B915wqUE.js",
926 + "/assets/accelerated-values-ClBEnI7v.js",
927 + "/assets/useTreeState-Dx1W0YuM.js",
928 + "/assets/SelectionManager-BmJrKgY4.js",
929 + "/assets/scrollIntoView-BWAA50rI.js",
930 + "/assets/isScrollable-Dnxj3NSq.js",
931 + "/assets/useSelectableList-BOP0KhmN.js",
932 + "/assets/DOMLayoutDelegate-Brany3qe.js",
933 + "/assets/useCollator-CbJkpXG2.js",
934 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
935 + "/assets/index-DGzYOEP8.js",
936 + "/assets/Item-DuavYi1u.js",
937 + "/assets/use-is-iframe-DIKEri2l.js",
938 + "/assets/floor-label-CGeBlKR2.js",
939 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
940 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
941 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
942 + "/assets/storage-image-BRiFwsnF.js",
943 + "/assets/debug-build-VZlf1Aof.js",
944 + "/assets/empty-image-DeSmMdF3.js",
945 + "/assets/storage-JzkTKPy4.js",
946 + "/assets/link-CrZmIZC6.js",
947 + "/assets/chunk-T45N425O-CCF24x8B.js",
948 + "/assets/modal-BG3X61k6.js",
949 + "/assets/modal-root-haL454LR.js",
950 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
951 + "/assets/useDialog-Bh9KG6MB.js",
952 + "/assets/VisuallyHidden-D-Q2SU4O.js",
953 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
954 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
955 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
956 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
957 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
958 + "/assets/proxy-BlmPTkqy.js",
959 + "/assets/create-visual-element-Cc1-iv7S.js",
960 + "/assets/layout-CqatgvGE.js",
961 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
962 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
963 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
964 + "/assets/index-DuhTrrt1.js",
965 + "/assets/useModal-C3khzgYn.js",
966 + "/assets/index-BxwHZyk5.js",
967 + "/assets/rich-text-display--Qas76Hg.js",
968 + "/assets/utils-D0p-v41w.js",
969 + "/assets/signature-block-8SMePIUg.js",
970 + "/assets/index-DqzG1Q9x.js",
971 + "/assets/client-only-BGvaz0Jn.js",
972 + "/assets/use-hydrated-nn_6IPIK.js",
973 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
974 + "/assets/chunk-M3MASYO7-COH9P04M.js",
975 + "/assets/settings.types-CTRD0B_j.js",
976 + "/assets/use-show-profile-modal-Cgfts1ut.js",
977 + "/assets/input-CkQmsiJb.js",
978 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
979 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
980 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
981 + "/assets/useControlledState-C6ovzWeF.js",
982 + "/assets/extends-BSSSaanF.js",
983 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
984 + "/assets/use-debounce-D23YJQRM.js",
985 + "/assets/use-debounced-callback-Do1iUmMt.js",
986 + "/assets/use-auth-D_t8q_v4.js",
987 + "/assets/OtpInput-CJhAm1Gc.js",
988 + "/assets/roles-Cde3N6LE.js",
989 + "/assets/index-CwlnhZHs.js",
990 + "/assets/index-BzZ-MzUq.js",
991 + "/assets/powered-by-eversa-BF980dJS.js",
992 + "/assets/tooltip-_QqyKTfK.js",
993 + "/assets/eversa-logo-DmkjJgjq.js",
994 + "/assets/use-screenshot-mode-RoZeXH-d.js",
995 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
996 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
997 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
998 + "/assets/getItemCount-BQolBIkZ.js",
999 + "/assets/useSelectableItem-Ds0Ihirs.js",
1000 + "/assets/useDescription-DF6TDnVi.js",
1001 + "/assets/index-D8QbWu84.js",
1002 + "/assets/useMenuTriggerState-CHKcWOlC.js",
1003 + "/assets/useMenuTrigger-DKFjnCNZ.js",
1004 + "/assets/user-menu-BuoWMPG0.js",
1005 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
1006 + "/assets/index-CRabYQb-.js",
1007 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
1008 + "/assets/Section-CaP3oBph.js",
1009 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
1010 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
1011 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
1012 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
1013 + "/assets/LiveAnnouncer-CnNJa9NI.js",
1014 + "/assets/useUpdateEffect-DsCDOPa2.js",
1015 + "/assets/index-BT5H2sjL.js",
1016 + "/assets/features-animation-BCPmlPPs.js",
1017 + "/assets/index-8boKsGvQ.js",
1018 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
1019 + "/assets/use-server-command-DJ0CxbuT.js",
1020 + "/assets/create-rpc-stub-SmqOCk37.js",
1021 + "/assets/index-BoeY4VQ9.js",
1022 + "/assets/app-form-CRPZmLNY.js",
1023 + "/assets/button-KaTnxiWj.js",
1024 + "/assets/spinner-DDyy7LQF.js",
1025 + "/assets/zod-CmeTJI5u.js",
1026 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
1027 + "/assets/form-hidden-input-DI5aJPYE.js",
1028 + "/assets/form-input-C6s4itpV.js",
1029 + "/assets/system-preferences-DL4TO29S.js",
1030 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
1031 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
1032 + "/assets/use-in-view-BNnh4L6M.js",
1033 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
1034 + ],
1035 + "css": [
1036 + "/assets/rich-text-editor-D9Rskyfk.css#",
1037 + "/assets/listing-card-CI-uxcFh.css"
1038 + ]
1039 + }
1040 + },
1041 + "url": "/assets/manifest-2b2cda1e.js",
1042 + "version": "2b2cda1e"
1043 +};
1044 + window.__reactRouterRouteModules = {"root":route0,"public-language":route1,"PublicListingsLayoutPage":route2,"PublicProjectDetailPage":route3};
1045 +
1046 +import("/assets/entry.client-BIJa3TY3.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":-5,\"_8\":9,\"_10\":11},\"actionData\",\"errors\",\"root\",{\"_672\":-5,\"_673\":-7,\"_674\":675,\"_676\":677,\"_20\":21,\"_18\":678,\"_679\":-5,\"_680\":681,\"_341\":342,\"_682\":-5,\"_683\":-5},\"public-language\",\"PublicListingsLayoutPage\",{\"_18\":328,\"_329\":330,\"_331\":332,\"_333\":25,\"_334\":335,\"_336\":60,\"_337\":338,\"_339\":340,\"_341\":342,\"_343\":25,\"_344\":25,\"_345\":25},\"PublicProjectDetailPage\",{\"_12\":13,\"_14\":15,\"_16\":17,\"_18\":19,\"_20\":21,\"_22\":23,\"_24\":25},\"listing\",{\"_46\":126,\"_127\":128,\"_129\":130,\"_96\":131,\"_132\":133,\"_84\":103,\"_134\":135,\"_115\":79,\"_118\":136,\"_116\":137,\"_36\":138,\"_139\":140,\"_141\":131,\"_142\":143,\"_144\":60,\"_145\":146,\"_147\":-5,\"_148\":-5,\"_149\":25,\"_150\":151,\"_152\":153,\"_154\":155},\"auth\",{\"_124\":60,\"_125\":25},\"walkScore\",[\"P\",17],\"tenant\",{\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":40,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"lang\",\"fr\",\"pageUrl\",\"https://www.halfred.ca/fr/listings/project/f8af9520-39ba-4c35-a08d-ae7ae53b71fb/details\",\"noindex\",false,\"address\",{\"_96\":114,\"_84\":103,\"_115\":79,\"_116\":117,\"_118\":119,\"_120\":101,\"_121\":87,\"_90\":98,\"_122\":123},\"analytics\",{\"_108\":109,\"_110\":111,\"_112\":113},\"colors\",{\"_104\":105,\"_106\":107},\"contact\",{\"_69\":70,\"_71\":72,\"_26\":73},\"customDomains\",[62,63],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_58\":25,\"_59\":60,\"_61\":25},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{\"_54\":55,\"_56\":57},\"templateId\",\"editorial\",\"title\",\"Halfred | Apartment rentals\",\"showcase\",{},\"listingSortOrder\",\"smart\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_64\":68},{\"_64\":65,\"_66\":67},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_74\":75,\"_76\":77,\"_78\":79,\"_80\":81,\"_82\":83,\"_84\":85,\"_86\":87,\"_88\":89,\"_90\":91,\"_92\":93,\"_94\":95,\"_96\":79},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_97\":103,\"_99\":103},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_97\":101,\"_99\":102},\"country\",{\"_97\":98,\"_99\":100},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"loggedIn\",\"isStaff\",\"f8af9520-39ba-4c35-a08d-ae7ae53b71fb\",\"area\",1260,\"availabilty\",[\"D\",1782864000000],\"Desrosiers\",\"buildingStreet\",\"26 Rue Larabie\",\"buildingId\",\"957a55a7-9b5a-41ae-a069-f42dcade21f3\",-75.610248,45.492742,{\"_220\":326,\"_21\":327},\"images\",[325],\"projectName\",\"buildingFeatures\",[],\"listed\",\"automatedApplyMode\",\"lead_form\",\"leadFormConfig\",\"featureSiteSubdomain\",\"featureSiteEnabled\",\"units\",[315,316],\"buildings\",[173,174],\"cardData\",{\"_46\":126,\"_96\":131,\"_84\":103,\"_115\":79,\"_116\":137,\"_118\":136,\"_156\":-5,\"_157\":158,\"_159\":160,\"_127\":161,\"_162\":163,\"_164\":165},\"unitId\",\"bedrooms\",[172],\"bathrooms\",[171],[170,128],\"price\",[168,169],\"availability\",[166,167],[\"D\",1782864000000],[\"D\",1793491200000],1700,1703,644,1,2,{\"_134\":262,\"_176\":263,\"_177\":264,\"_132\":263,\"_180\":103,\"_181\":265,\"_183\":-5,\"_39\":266,\"_150\":267},{\"_134\":175,\"_176\":131,\"_177\":178,\"_132\":179,\"_180\":103,\"_181\":182,\"_183\":-5,\"_39\":184,\"_150\":185},\"26f1bc76-d9d7-4874-96aa-d5db0874ab14\",\"buildingName\",\"buildingImages\",[261],\"24 Rue Larabie\",\"buildingCity\",\"buildingNeighborhood\",\"Templeton\",\"buildingAutomatedApplyMode\",[207,208,209,210,211,212,213,214,215,216,217],[186],{\"_46\":187,\"_127\":170,\"_188\":171,\"_162\":168,\"_157\":172,\"_159\":171,\"_189\":190,\"_139\":191,\"_164\":192,\"_144\":60,\"_193\":175,\"_194\":-5,\"_195\":-5,\"_196\":197,\"_198\":199,\"_39\":200},\"eca23f47-ba17-45e9-bd85-c4667ad2ea13\",\"floor\",\"alias\",\"2\",[203,204,205,206],[\"D\",1793491200000],\"building_id\",\"floor_plan_name\",\"floor_plan_image_path\",\"listing_type\",\"Unit\",\"promotion\",{\"_162\":201,\"_36\":202},[],1559,\"***Promotion sur les 12 premiers mois ***\",\"/storage/v1/object/public/halfred/units/eca23f47-ba17-45e9-bd85-c4667ad2ea13/Capture_d_cran_2025-12-22_122451.png\",\"/storage/v1/object/public/halfred/units/eca23f47-ba17-45e9-bd85-c4667ad2ea13/Capture_d_cran_2025-12-22_122504.png\",\"/storage/v1/object/public/halfred/units/eca23f47-ba17-45e9-bd85-c4667ad2ea13/Capture_d_cran_2025-12-22_122525.png\",\"/storage/v1/object/public/halfred/units/eca23f47-ba17-45e9-bd85-c4667ad2ea13/Capture_d_cran_2025-12-22_123502.png\",{\"_97\":257,\"_41\":258},{\"_97\":253,\"_41\":254},{\"_97\":250,\"_41\":247},{\"_97\":246,\"_41\":247},{\"_97\":243,\"_41\":224},{\"_97\":239,\"_41\":240},{\"_97\":235,\"_41\":236},{\"_97\":231,\"_41\":232},{\"_97\":227,\"_41\":228},{\"_97\":223,\"_41\":224},{\"_97\":218,\"_41\":219},{\"_220\":221,\"_21\":222},\"lucide:refrigerator\",\"en\",\"Refrigerator\",\"Réfrigérateur\",{\"_220\":225,\"_21\":226},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_220\":229,\"_21\":230},\"lucide:soup\",\"Stove\",\"Cuisinière\",{\"_220\":233,\"_21\":234},\"lucide:wifi\",\"Fiber Internet\",\"Internet fibre\",{\"_220\":237,\"_21\":238},\"lucide:fence\",\"Balcony\",\"Balcon\",{\"_220\":241,\"_21\":242},\"lucide:thermometer-sun\",\"Central Air Conditioning\",\"Climatisation centrale\",{\"_220\":244,\"_21\":245},\"Dishwasher\",\"Lave-vaisselle\",{\"_220\":248,\"_21\":249},\"lucide:washing-machine\",\"Washer\",\"Laveuse\",{\"_220\":251,\"_21\":252},\"Dryer\",\"Sèche-linge\",{\"_220\":255,\"_21\":256},\"lucide:car\",\"Parking\",\"Stationnement\",{\"_220\":259,\"_21\":260},\"lucide:microwave\",\"Oven\",\"Four\",\"/storage/v1/object/public/halfred/buildings/26f1bc76-d9d7-4874-96aa-d5db0874ab14/Capture_d_ecran_2025-12-22_121959.png\",\"cac2a87b-0041-4a9b-b934-bcee459364aa\",\"86 Rue De Britannia\",[314],\"Aylmer\",[291,292,293,294,295,296,297],[268],{\"_46\":269,\"_127\":128,\"_188\":-5,\"_162\":169,\"_157\":172,\"_159\":171,\"_189\":270,\"_139\":271,\"_164\":272,\"_144\":60,\"_193\":262,\"_194\":-5,\"_195\":-5,\"_196\":197,\"_198\":273,\"_39\":274},\"b072bb53-46fb-4d61-8afd-641393322d0e\",\"1\",[277,278,279,280,281,282,283,284,285,286,287,288,289,290],[\"D\",1782864000000],{\"_162\":275,\"_36\":276},[],1562,\"*** Promotion pour un bail de 12 mois **\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-038-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-035-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-030-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-004-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-031-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-005-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-006-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-025-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-026-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-027-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-032-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-034-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-042-2.jpg\",\"/storage/v1/object/public/halfred/units/b072bb53-46fb-4d61-8afd-641393322d0e/kp-363mcconnell-dlm-20190531-024-2.jpg\",{\"_97\":313,\"_41\":254},{\"_97\":309,\"_41\":310},{\"_97\":308,\"_41\":240},{\"_97\":304,\"_41\":305},{\"_97\":303,\"_41\":224},{\"_97\":299,\"_41\":300},{\"_97\":298,\"_41\":224},{\"_220\":225,\"_21\":226},{\"_220\":301,\"_21\":302},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_220\":244,\"_21\":245},{\"_220\":306,\"_21\":307},\"lucide:paw-print\",\"Cats Allowed\",\"Chats autorisés\",{\"_220\":241,\"_21\":242},{\"_220\":311,\"_21\":312},\"lucide:droplet\",\"Water\",\"Eau\",{\"_220\":255,\"_21\":256},\"/storage/v1/object/public/halfred/buildings/cac2a87b-0041-4a9b-b934-bcee459364aa/chatgpt-image-13-mai-2026-145743.png\",{\"_46\":269,\"_127\":128,\"_188\":-5,\"_162\":169,\"_157\":172,\"_159\":171,\"_189\":270,\"_139\":321,\"_164\":322,\"_144\":60,\"_193\":262,\"_194\":-5,\"_195\":-5,\"_196\":197,\"_198\":323,\"_39\":324},{\"_46\":187,\"_127\":170,\"_188\":171,\"_162\":168,\"_157\":172,\"_159\":171,\"_189\":190,\"_139\":317,\"_164\":318,\"_144\":60,\"_193\":175,\"_194\":-5,\"_195\":-5,\"_196\":197,\"_198\":319,\"_39\":320},[203,204,205,206],[\"D\",1793491200000],{\"_162\":201,\"_36\":202},[],[277,278,279,280,281,282,283,284,285,286,287,288,289,290],[\"D\",1782864000000],{\"_162\":275,\"_36\":276},[],\"/storage/v1/object/public/halfred/buildings/957a55a7-9b5a-41ae-a069-f42dcade21f3/perspectivedevanture-page-00001.jpg\",\"Halfred is proud to introduce the Desrosiers Project, a brand-new, modern rental building designed for today’s lifestyle—clean lines, smart layouts, and comfort built for the future.\\n\\n🔑 General Features\\n\\n❄️ Air conditioning included\\n\\n🌐 Internet included\\n\\n⚡ Heating and electricity not included\\n\\n🍽 5 appliances included\\n(Note: 3½ units do not include a dishwasher)\\n\\n🚗 Outdoor parking included\\n\\n🌿 Private outdoor balconies\\n\\n🏗 New construction with modern finishes\\n\\n📋 Credit check required | Minimum 12-month lease\\n\\n✨ A forward-looking project, perfect for professionals, couples, and families seeking modern comfort, convenience, and predictable all-inclusive living.\\n\\n📞 Interested?\\nContact Halfred today for more information or to reserve your unit.\\nAvailability is limited — secure your new home now.\",\"Halfred est fier de vous présenter le projet Desrosiers, un immeuble locatif neuf et moderne, conçu pour répondre aux besoins d’aujourd’hui et de demain. Un cadre de vie pratique, confortable et bien pensé.\\n\\n🔑 Caractéristiques générales\\n\\n❄️ Climatisation incluse\\n\\n🌐 Internet inclus\\n\\n⚡ Chauffage et électricité non inclus\\n\\n🍽 5 électroménagers inclus\\n(À noter : les 3 ½ n’incluent pas de lave-vaisselle)\\n\\n🚗 Stationnement extérieur inclus\\n\\n🌿 Balcons extérieurs\\n\\n🏗 Construction neuve avec finitions modernes\\n\\n📋 Enquête de crédit obligatoire | Bail minimum de 12 mois\\n\\n✨ Un projet tourné vers l’avenir, parfait pour les professionnels, couples ou familles recherchant la tranquillité, le confort moderne et la prévisibilité d’un loyer tout inclus.\\n\\n📞 Intéressé(e)?\\nContactez Halfred dès maintenant pour plus d’informations ou pour réserver votre unité.\\nLes disponibilités sont limitées — ne laissez pas passer cette opportunité.\",{\"_26\":27,\"_28\":670,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":671,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"listings\",[],\"listingsByView\",{\"_665\":330,\"_666\":667,\"_668\":669},\"explodeProjects\",\"initialFilters\",{\"_162\":459,\"_460\":461,\"_462\":463,\"_127\":464,\"_188\":465,\"_466\":60,\"_159\":467,\"_157\":468,\"_469\":25,\"_470\":60,\"_471\":472,\"_473\":474},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_346\":347,\"_348\":349,\"_350\":351,\"_352\":353,\"_354\":347,\"_355\":356,\"_357\":358},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[440],\"analysisProductsPrice\",{\"_440\":441,\"_442\":443,\"_444\":445,\"_446\":447,\"_448\":449,\"_450\":451,\"_452\":453,\"_454\":453,\"_455\":456,\"_457\":451,\"_458\":449},\"notifications\",{\"_417\":418},\"form\",{\"_410\":60,\"_411\":25,\"_412\":60,\"_413\":60,\"_414\":25,\"_415\":25,\"_416\":25},\"enabledSkus\",\"submissions\",{\"_360\":361,\"_362\":363,\"_364\":365,\"_366\":367,\"_30\":368,\"_369\":-5},\"agent\",{\"_359\":25},\"hideAgentNewSubmissionBtn\",\"all\",[396,397,398,399,400,401,402,406,407,408,409],\"steps\",[396,397,398,399,400,401,402],\"badges\",[386,387,388,389,390,391],\"statuses\",[380,370,372,374,376,378,381,382,383,384,385],{\"_370\":371,\"_372\":373,\"_374\":375,\"_376\":377,\"_378\":379},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_392\":370,\"_394\":371},{\"_392\":372,\"_394\":373},{\"_392\":374,\"_394\":375},{\"_392\":376,\"_394\":377},{\"_392\":378,\"_394\":379},{\"_392\":393,\"_394\":395},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_392\":380,\"_394\":-5,\"_403\":25},{\"_392\":370,\"_394\":371,\"_403\":60,\"_404\":25,\"_405\":25},{\"_392\":372,\"_394\":373,\"_403\":60,\"_404\":25,\"_405\":25},{\"_392\":374,\"_394\":375,\"_403\":60,\"_404\":25,\"_405\":25},{\"_392\":376,\"_394\":377,\"_403\":60,\"_404\":25,\"_405\":25},{\"_392\":378,\"_394\":379,\"_403\":60,\"_404\":25,\"_405\":25},{\"_392\":381,\"_394\":-5,\"_403\":60},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_392\":382,\"_394\":-5,\"_403\":25},{\"_392\":383,\"_394\":-5,\"_403\":25},{\"_392\":384,\"_394\":-5,\"_403\":25},{\"_392\":385,\"_394\":-5,\"_403\":25},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_357\":419,\"_420\":421,\"_18\":422,\"_423\":424},[432,433,434,435,436,437,427,428,438,439],\"manager\",[],[426,427,428,429,430,431],\"admin\",[425],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"agent-submission-snoozed\",\"agent-submission-snoozed-reminder\",\"agent-submission-snoozed-expired\",\"application-deadline-reminder\",\"application-deadline-expired\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1299,\"qc_citizen_criminal_plumitif_municipal_check\",699,\"qc_citizen_rental_board_check\",799,\"on_citizen_rental_board_check\",999,\"ca_citizen_workplace_reference_verification\",1499,\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",\"qc_citizen_rental_board_extended_check\",[171,664],\"pricePerMonth\",[171,664],\"pricePerSqft\",[338,338],[338,663],[661,662],\"hasFloor\",[338,172],[338,510],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548],\"availableNeighborhoods\",[475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491],{\"_492\":514,\"_337\":171},{\"_492\":265,\"_337\":513},{\"_492\":512,\"_337\":172},{\"_492\":511,\"_337\":172},{\"_492\":509,\"_337\":510},{\"_492\":103,\"_337\":508},{\"_492\":506,\"_337\":507},{\"_492\":505,\"_337\":171},{\"_492\":504,\"_337\":172},{\"_492\":503,\"_337\":171},{\"_492\":501,\"_337\":502},{\"_492\":500,\"_337\":171},{\"_492\":498,\"_337\":499},{\"_492\":497,\"_337\":172},{\"_492\":496,\"_337\":171},{\"_492\":182,\"_337\":495},{\"_492\":493,\"_337\":494},\"name\",\"Touraine\",7,14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",8,\"Plateau \",\"Plateau\",30,\"plateau\",\"Old Gatineau\",\"Masson\",\"Hull\",21,37,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",20,\"angers\",{\"_46\":659,\"_492\":660,\"_41\":254},{\"_46\":654,\"_492\":655,\"_41\":656},{\"_46\":650,\"_492\":651,\"_41\":224},{\"_46\":648,\"_492\":649,\"_41\":247},{\"_46\":646,\"_492\":647,\"_41\":224},{\"_46\":644,\"_492\":645,\"_41\":240},{\"_46\":642,\"_492\":643,\"_41\":232},{\"_46\":640,\"_492\":641,\"_41\":228},{\"_46\":636,\"_492\":637,\"_41\":232},{\"_46\":634,\"_492\":635,\"_41\":219},{\"_46\":629,\"_492\":630,\"_41\":631},{\"_46\":627,\"_492\":628,\"_41\":258},{\"_46\":625,\"_492\":626,\"_41\":236},{\"_46\":621,\"_492\":622,\"_41\":240},{\"_46\":617,\"_492\":618,\"_41\":619},{\"_46\":615,\"_492\":616,\"_41\":305},{\"_46\":613,\"_492\":614,\"_41\":247},{\"_46\":609,\"_492\":610,\"_41\":236},{\"_46\":607,\"_492\":608,\"_41\":310},{\"_46\":602,\"_492\":603,\"_41\":604},{\"_46\":598,\"_492\":599,\"_41\":258},{\"_46\":596,\"_492\":597,\"_41\":224},{\"_46\":592,\"_492\":593,\"_41\":254},{\"_46\":588,\"_492\":589,\"_41\":247},{\"_46\":584,\"_492\":585,\"_41\":232},{\"_46\":582,\"_492\":583,\"_41\":300},{\"_46\":578,\"_492\":579,\"_41\":305},{\"_46\":574,\"_492\":575,\"_41\":305},{\"_46\":570,\"_492\":571,\"_41\":254},{\"_46\":566,\"_492\":567,\"_41\":240},{\"_46\":561,\"_492\":562,\"_41\":563},{\"_46\":557,\"_492\":558,\"_41\":559},{\"_46\":553,\"_492\":554,\"_41\":236},{\"_46\":549,\"_492\":550,\"_41\":224},\"counter-type\",{\"_220\":551,\"_21\":552},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_220\":555,\"_21\":556},\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_220\":560,\"_21\":560},\"lucide:armchair\",\"Commodes\",\"disabled-access\",{\"_220\":564,\"_21\":565},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"gas-heating\",{\"_220\":568,\"_21\":569},\"Gas Heating\",\"Chauffage au gaz\",\"underground-garage\",{\"_220\":572,\"_21\":573},\"Underground Garage\",\"Garage souterrain\",\"small-dogs-allowed\",{\"_220\":576,\"_21\":577},\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_220\":580,\"_21\":581},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"washer-dryer-outlet\",{\"_220\":301,\"_21\":302},\"cable-internet\",{\"_220\":586,\"_21\":587},\"Cable Internet\",\"Internet par câble\",\"laundry-room\",{\"_220\":590,\"_21\":591},\"Laundry Room\",\"Buanderie\",\"garage-parking\",{\"_220\":594,\"_21\":595},\"Garage Parking\",\"Parking garage\",\"water-tank\",{\"_220\":225,\"_21\":226},\"microwave\",{\"_220\":600,\"_21\":601},\"Microwave\",\"Micro-ondes\",\"blinds\",{\"_220\":605,\"_21\":606},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water\",{\"_220\":311,\"_21\":312},\"building-terrace\",{\"_220\":611,\"_21\":612},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_220\":251,\"_21\":252},\"cats-allowed\",{\"_220\":306,\"_21\":307},\"gym\",{\"_220\":620,\"_21\":620},\"lucide:dumbbell\",\"Gym\",\"electric-heating\",{\"_220\":623,\"_21\":624},\"Electric Heating\",\"Chauffage Électrique\",\"balcony\",{\"_220\":237,\"_21\":238},\"oven\",{\"_220\":259,\"_21\":260},\"electricity\",{\"_220\":632,\"_21\":633},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"refrigerator\",{\"_220\":221,\"_21\":222},\"cable\",{\"_220\":638,\"_21\":639},\"Cable\",\"Câble\",\"stove\",{\"_220\":229,\"_21\":230},\"fiber-internet\",{\"_220\":233,\"_21\":234},\"central-air-conditioning\",{\"_220\":241,\"_21\":242},\"dishwasher\",{\"_220\":244,\"_21\":245},\"washer\",{\"_220\":248,\"_21\":249},\"elevator\",{\"_220\":652,\"_21\":653},\"Elevator\",\"Ascenseur\",\"locker-storage-space\",{\"_220\":657,\"_21\":658},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"parking\",{\"_220\":255,\"_21\":256},-1,6,2063,3050,\"list\",\"map\",[],\"explode\",[],{\"_108\":109,\"_110\":111,\"_112\":113},{\"_58\":25,\"_59\":60,\"_61\":25},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_392\":698,\"_46\":47,\"_699\":700,\"_52\":53,\"_36\":37,\"_30\":31,\"_701\":702,\"_26\":27,\"_32\":33,\"_348\":703,\"_704\":705,\"_706\":707,\"_708\":709,\"_43\":44,\"_710\":711,\"_712\":713,\"_45\":-5,\"_714\":-5,\"_715\":-5,\"_716\":-5,\"_50\":51,\"_48\":49,\"_34\":35,\"_717\":-5,\"_718\":-5,\"_341\":342,\"_719\":720,\"_721\":722,\"_723\":724,\"_41\":42,\"_725\":726,\"_38\":-7,\"_727\":728,\"_39\":729,\"_730\":731,\"_732\":-7,\"_733\":734,\"_28\":735,\"_346\":736,\"_737\":738,\"_739\":740},\"toast\",\"user\",{\"_684\":25,\"_685\":-5,\"_686\":-5,\"_687\":-5,\"_688\":-5,\"_689\":-5,\"_690\":-5,\"_691\":-5,\"_692\":-5,\"_693\":-5,\"_69\":-5,\"_71\":-5,\"_694\":-5,\"_125\":25,\"_695\":25,\"_696\":-5,\"_697\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_41\":828},\"social\",{\"_825\":826,\"_827\":79},{\"_440\":441,\"_442\":443,\"_444\":445,\"_446\":447,\"_448\":449,\"_450\":451,\"_452\":453,\"_454\":453,\"_455\":456,\"_457\":451,\"_458\":449},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_822\":-5,\"_378\":60,\"_823\":25,\"_824\":778},\"plan\",{\"_492\":802,\"_803\":79,\"_804\":805,\"_806\":807,\"_808\":809,\"_810\":811,\"_812\":338,\"_813\":814,\"_815\":338,\"_816\":817,\"_818\":819,\"_820\":821},\"metadata\",{\"_28\":735},\"consentConditionsText\",\"consentConditionsEn\",\"consentConditionsFr\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_795\":796,\"_704\":705,\"_797\":798,\"_43\":44,\"_799\":800,\"_74\":801},\"bucket\",{\"_792\":47,\"_793\":794},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_677\":789,\"_790\":791},\"tosHistory\",[778],{\"_749\":60,\"_750\":-7,\"_59\":60,\"_751\":25,\"_752\":25,\"_753\":60,\"_754\":60,\"_755\":25,\"_756\":-7,\"_757\":25,\"_758\":-7,\"_759\":25,\"_760\":25,\"_761\":25,\"_762\":763,\"_764\":25,\"_359\":25,\"_765\":-7,\"_766\":-7,\"_767\":-7,\"_768\":25,\"_58\":25,\"_769\":25,\"_61\":25,\"_770\":771,\"_772\":60,\"_773\":25,\"_774\":25,\"_775\":25,\"_776\":25,\"_777\":25},\"disabledModules\",[],\"rolePermissions\",\"banner\",{\"_220\":747,\"_21\":748},{\"_110\":111,\"_745\":746,\"_108\":109,\"_112\":113},[440],\"payments\",{\"_741\":60,\"_742\":60,\"_743\":25,\"_744\":25},\"version\",\"prod-20260917-9ad1803\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"hasAddressVariants\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"hopemIntegrationEnabled\",\"voltixIntegrationEnabled\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_779\":780,\"_781\":782,\"_739\":783,\"_378\":60,\"_376\":784,\"_785\":786,\"_787\":788},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",39,\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_829\":830},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("P17:[{\"_832\":171,\"_833\":819,\"_36\":834,\"_835\":836,\"_837\":838,\"_839\":840,\"_841\":842,\"_843\":844,\"_845\":842,\"_846\":847,\"_848\":849,\"_850\":851,\"_852\":853},\"status\",\"walkscore\",\"Car-Dependent\",\"updated\",\"2026-06-29 20:01:06.350813\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/26Rue-Larabie/lat=45.492742/lng=-75.610248/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.492,\"snapped_lon\",-75.6105,\"transit\",{\"_36\":-5,\"_856\":-5,\"_855\":-5},\"bike\",{\"_36\":854,\"_855\":819},\"Somewhat Bikeable\",\"score\",\"summary\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--><!--/$--><script id="_R_">requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Walk Score®<!-- --> <!-- -->39</a><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Bike Score®<!-- --> <!-- -->39</a></div></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
1047 +$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><div hidden id="S:1"><div class="flex min-w-[240px] flex-1 basis-[280px] flex-col gap-4 sm:gap-6" data-sentry-component="EditorialScores" data-sentry-source-file="location.tsx"><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Walk Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">39</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:39%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Car-Dependent</div></div><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Bike Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">39</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:39%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Somewhat Bikeable</div></div></div></div><script>$RC("B:1","S:1")</script></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/7c7f15b73fcebf207842.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg?width=1200&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/4be75758-8c6b-4978-bd5b-913caf5ca0f4/image8-2.jpg?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/9c5fb794-e558-40b0-8659-2e4d6da3e249/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0002-001-002.jpg?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0018-003-001.jpg?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0018-003-001.jpg?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/0fbbbc72-52d2-42f3-ab77-bc505e253b99/chatgpt-image-20-avr-2026-160256.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/21ab2a1a-fac3-4d71-8d06-9a8408edbd73/1-entree.png?width=96&amp;height=80&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/e52cdeb1-8752-44e2-8b7d-4993902469ea/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0018-003-001.jpg?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0018-003-001.jpg?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0025-004-001.jpg?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0002-001-002.jpg?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/41713e57-a8b4-4e01-8ff9-99ac1ad5142a/chatgpt-image-20-avr-2026-160256.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/29c613cb-e9da-464f-8678-52a3c0176351/image_8_2.jpg?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/14793141-89fd-4bd3-8048-e1889960754c/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/0b7c1726-304f-4040-a652-ee937a57f061/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/47dbaf85-aa85-49cf-acb8-4d0d5bf38395/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/69580c95-854e-4926-9cfd-712267b2a8d4/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/d34bda71-aebb-4f25-a38f-b15a3ec89028/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/a798ba01-9b05-47d2-b09c-e97910228d65/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/28ce71d0-107b-40e3-b4f1-6145f38d33d4/image_8_2%20(1).jpg?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/675d6096-8806-43e9-aa11-095a5f20ab27/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/4aedcfb8-7986-4ccf-af8e-0563b7befdb8/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/79d48005-c3eb-4edd-90c3-20a7c143c2dc/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/a13291c2-1058-4de4-823f-0a9229cbc252/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/2798b6d6-5180-4769-a77a-088a2024d1d9/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/6be7b657-944b-482c-b740-49afe1b38a08/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/3a1e626a-fa89-4597-9078-1882aaf77986/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/3560acad-ddd2-4991-8323-cebd1ce31bb5/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/ffaa598c-749a-4241-aaf2-b855e53874c3/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/3defb0d4-e7ce-47a4-ad97-9f1c97637a66/image_8_2.jpg?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/d9ca5ba7-6c70-4050-b44a-97cd825d86e6/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/7b9781f8-dc7b-4cf3-95d3-d3d70fb52767/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/589f5de2-809e-45c6-80d9-40709be41b8e/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/4892bec1-0e3f-408c-889b-7fbc5b4fc77d/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/9274a4fc-554f-47ec-82d2-9714e42580df/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/eef11aa2-fc16-42e2-95b8-19dbca373d9e/1-entree.png?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><title>Halfred | Apartment rentals | Chelsea Creek Multi , Chelsea</title><meta description=" 🏡 NEW RENTAL PROJECT IN CHELSEA – ALL INCLUSIVE Discover brand-new apartments among the most spacious in Chelsea , featuring oversized..."/><meta property="og:title" content="Halfred | Apartment rentals | Project Chelsea Creek Multi , Chelsea"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content=" 🏡 NEW RENTAL PROJECT IN CHELSEA – ALL INCLUSIVE Discover brand-new apartments among the most spacious in Chelsea , featuring oversized..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg"/><meta property="og:url" content="www.halfred.ca/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/project-detail.page-2Kwf5ze5.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="46f2ce308ec67b8f210ac1d270fb6dbe-512f4ed40f8af5bc-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=46f2ce308ec67b8f210ac1d270fb6dbe,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2Fproject%2F%3Aid%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.9961106399725838,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg?width=800&amp;height=600&amp;quality=80" alt="Halfred | Apartment rentals: logement de 2 chambres à louer à Chelsea, Chelsea Creek Multi " class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->1</div></div></div><div class="hidden sm:block"><div class="relative overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-96" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg?width=1200&amp;height=600&amp;quality=80" alt="Halfred | Apartment rentals: logement de 2 chambres à louer à Chelsea, Chelsea Creek Multi " class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">Chelsea Creek Multi </h1><p class="text-sm text-foreground-600">Chelsea</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>2150$</b> à <b>2400$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>1<!-- --> <!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>953<!-- --> <!-- --> - <!-- -->1098<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 avril</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-message-circle" aria-hidden="true" focusable="false" tabindex="-1"></span>Je suis intéressé par cette propriété</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description du projet</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p></p><hr><p>🏡 <strong>NOUVEAU PROJET LOCATIF À CHELSEA – TOUT INCLUS</strong></p><p>Découvrez des <strong>logements neufs parmi les plus spacieux de Chelsea</strong>, avec <strong>balcons surdimensionnés</strong>, dans un environnement unique alliant <strong>nature, confort et modernité</strong>.</p><p>À seulement quelques minutes de Gatineau et d’Ottawa, profitez d’un mode de vie recherché, où <strong>tranquillité et accessibilité</strong> se rencontrent.</p><hr><p>✨ <strong>Des unités pensées pour vous impressionner :</strong><br>• Construction neuve de qualité supérieure<br>• <strong>Tout inclus</strong> : chauffage, électricité, eau chaude et internet<br>• Électroménagers complets inclus<br>• Espaces lumineux avec grandes fenêtres<br>• Finitions modernes et haut de gamme<br>• Balcon privé surdimensionné<br>• Climatisation pour un confort optimal</p><hr><p>🚗 <strong>Stationnement :</strong><br>• Extérieur : 75$/mois<br>• Intérieur (garage) avec rangement intégré : 150$/mois</p><hr><p>🌳 <strong>Un emplacement exceptionnel :</strong><br>Situé au cœur de Chelsea, profitez d’un cadre paisible entouré de nature, à proximité des <strong>sentiers, pistes cyclables, commerces locaux et services essentiels</strong>.<br>Un parfait équilibre entre <strong>plein air et vie urbaine</strong>.</p><hr><p>📞 <strong>Ne manquez pas cette opportunité unique!</strong><br>Les unités sont en forte demande. Contactez-nous dès maintenant pour planifier votre visite.</p></div></div></div></div><div class="pt-8 pb-8"><div class="space-y-6" data-sentry-component="BuildingsSection" data-sentry-source-file="buildings-inventory.tsx"><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?building=4be75758-8c6b-4978-bd5b-913caf5ca0f4" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/4be75758-8c6b-4978-bd5b-913caf5ca0f4/image8-2.jpg?width=500&amp;height=250&amp;quality=80" alt="146 hemin jean-Paul lemieux" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">146 hemin jean-Paul lemieux</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">146 Chemin Jean-Paul Lemieux<!-- -->, Chelsea</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">12 unités</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Ascenseur</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Laveuse</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Lave-vaisselle</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Climatisation centrale</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Internet fibre</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Cuisinière</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Câble</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Réfrigérateur</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Électricité</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->2<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=9c5fb794-e558-40b0-8659-2e4d6da3e249" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/9c5fb794-e558-40b0-8659-2e4d6da3e249/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="101" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">5 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->101</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>Rez-de-chaussée</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2300<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/9c5fb794-e558-40b0-8659-2e4d6da3e249/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=37587cb0-c714-4535-8af7-3bcf0a9df310" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0002-001-002.jpg?width=96&amp;height=80&amp;quality=80" alt="102" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">10 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->102</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 10 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>Rez-de-chaussée</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2300<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/37587cb0-c714-4535-8af7-3bcf0a9df310/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=5b25fc02-b3ee-4f37-b8dc-0b955d19c62b" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0018-003-001.jpg?width=96&amp;height=80&amp;quality=80" alt="104" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">8 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->104</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>Rez-de-chaussée</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2400<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=98a8827e-f14d-429f-af88-65d6f7cde3b9" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0018-003-001.jpg?width=96&amp;height=80&amp;quality=80" alt="105" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">8 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->105</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2400<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/98a8827e-f14d-429f-af88-65d6f7cde3b9/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=0fbbbc72-52d2-42f3-ab77-bc505e253b99" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/0fbbbc72-52d2-42f3-ab77-bc505e253b99/chatgpt-image-20-avr-2026-160256.png?width=96&amp;height=80&amp;quality=80" alt="106" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->106</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>953<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2150<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/0fbbbc72-52d2-42f3-ab77-bc505e253b99/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=21ab2a1a-fac3-4d71-8d06-9a8408edbd73" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/21ab2a1a-fac3-4d71-8d06-9a8408edbd73/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="201" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">5 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->201</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2300<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/21ab2a1a-fac3-4d71-8d06-9a8408edbd73/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=e52cdeb1-8752-44e2-8b7d-4993902469ea" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/e52cdeb1-8752-44e2-8b7d-4993902469ea/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="202" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">5 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->202</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2300<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/e52cdeb1-8752-44e2-8b7d-4993902469ea/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=e29f5750-77b1-4caa-9e50-e5ed6d54c6af" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0018-003-001.jpg?width=96&amp;height=80&amp;quality=80" alt="204" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">8 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->204</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2400<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=7ac1e8b9-c13a-4011-8744-ec32f8f34f83" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0018-003-001.jpg?width=96&amp;height=80&amp;quality=80" alt="205" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">8 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->205</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2400<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=e843b093-40b8-416f-b227-200f43cd9797" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0025-004-001.jpg?width=96&amp;height=80&amp;quality=80" alt="206" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">11 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->206</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>953<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2150<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/e843b093-40b8-416f-b227-200f43cd9797/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=3be325ef-a03b-4d67-81e5-28d0710030f6" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0002-001-002.jpg?width=96&amp;height=80&amp;quality=80" alt="302" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">10 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->302</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>2e étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2300<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/3be325ef-a03b-4d67-81e5-28d0710030f6/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=41713e57-a8b4-4e01-8ff9-99ac1ad5142a" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/41713e57-a8b4-4e01-8ff9-99ac1ad5142a/chatgpt-image-20-avr-2026-160256.png?width=96&amp;height=80&amp;quality=80" alt="306" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->306</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>953<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>2e étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2150<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/41713e57-a8b4-4e01-8ff9-99ac1ad5142a/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?building=29c613cb-e9da-464f-8678-52a3c0176351" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/29c613cb-e9da-464f-8678-52a3c0176351/image_8_2.jpg?width=500&amp;height=250&amp;quality=80" alt="95 Chemin Old Chelsea" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">95 Chemin Old Chelsea</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">95 Chemin Old Chelsea<!-- -->, Chelsea</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">7 unités</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Ascenseur</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Laveuse</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Lave-vaisselle</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Climatisation centrale</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Internet fibre</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Cuisinière</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Câble</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Réfrigérateur</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Électricité</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->2<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=14793141-89fd-4bd3-8048-e1889960754c" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/14793141-89fd-4bd3-8048-e1889960754c/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="102" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->102</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2109<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2300<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/14793141-89fd-4bd3-8048-e1889960754c/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="104" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->104</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2200<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2400<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=0b7c1726-304f-4040-a652-ee937a57f061" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/0b7c1726-304f-4040-a652-ee937a57f061/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="105" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->105</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2200<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2400<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/0b7c1726-304f-4040-a652-ee937a57f061/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=47dbaf85-aa85-49cf-acb8-4d0d5bf38395" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/47dbaf85-aa85-49cf-acb8-4d0d5bf38395/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80" alt="106" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->106</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>953<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1971<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2150<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/47dbaf85-aa85-49cf-acb8-4d0d5bf38395/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=69580c95-854e-4926-9cfd-712267b2a8d4" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/69580c95-854e-4926-9cfd-712267b2a8d4/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="205" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->205</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2200<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2400<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/69580c95-854e-4926-9cfd-712267b2a8d4/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=d34bda71-aebb-4f25-a38f-b15a3ec89028" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/d34bda71-aebb-4f25-a38f-b15a3ec89028/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80" alt="206" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">7 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->206</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>953<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1971<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2150<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/d34bda71-aebb-4f25-a38f-b15a3ec89028/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=a798ba01-9b05-47d2-b09c-e97910228d65" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/a798ba01-9b05-47d2-b09c-e97910228d65/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="305" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->305</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2400<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/a798ba01-9b05-47d2-b09c-e97910228d65/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?building=28ce71d0-107b-40e3-b4f1-6145f38d33d4" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/28ce71d0-107b-40e3-b4f1-6145f38d33d4/image_8_2%20(1).jpg?width=500&amp;height=250&amp;quality=80" alt="101, chemin Old Chelsea" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">101, chemin Old Chelsea</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">101 Chemin Old Chelsea<!-- -->, Chelsea</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">9 unités</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Laveuse</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Ascenseur</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Lave-vaisselle</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Climatisation centrale</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Balcon</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Internet fibre</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Câble</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Cuisinière</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Électricité</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->2<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=675d6096-8806-43e9-aa11-095a5f20ab27" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/675d6096-8806-43e9-aa11-095a5f20ab27/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="101" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->101</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2190<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2300<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/675d6096-8806-43e9-aa11-095a5f20ab27/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=4aedcfb8-7986-4ccf-af8e-0563b7befdb8" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/4aedcfb8-7986-4ccf-af8e-0563b7befdb8/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="102" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->102</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2109<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2300<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/4aedcfb8-7986-4ccf-af8e-0563b7befdb8/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=79d48005-c3eb-4edd-90c3-20a7c143c2dc" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/79d48005-c3eb-4edd-90c3-20a7c143c2dc/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="104" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->104</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2200<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2400<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/79d48005-c3eb-4edd-90c3-20a7c143c2dc/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=a13291c2-1058-4de4-823f-0a9229cbc252" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/a13291c2-1058-4de4-823f-0a9229cbc252/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="105" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->105</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2200<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2400<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/a13291c2-1058-4de4-823f-0a9229cbc252/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=2798b6d6-5180-4769-a77a-088a2024d1d9" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/2798b6d6-5180-4769-a77a-088a2024d1d9/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80" alt="106" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->106</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>953<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1971<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2150<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/2798b6d6-5180-4769-a77a-088a2024d1d9/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=6be7b657-944b-482c-b740-49afe1b38a08" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/6be7b657-944b-482c-b740-49afe1b38a08/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="202" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">5 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->202</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2109<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2300<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/6be7b657-944b-482c-b740-49afe1b38a08/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=3a1e626a-fa89-4597-9078-1882aaf77986" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/3a1e626a-fa89-4597-9078-1882aaf77986/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="204" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->204</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2200<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2400<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/3a1e626a-fa89-4597-9078-1882aaf77986/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=3560acad-ddd2-4991-8323-cebd1ce31bb5" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/3560acad-ddd2-4991-8323-cebd1ce31bb5/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="205" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->205</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">2200<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2400<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/3560acad-ddd2-4991-8323-cebd1ce31bb5/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=ffaa598c-749a-4241-aaf2-b855e53874c3" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/ffaa598c-749a-4241-aaf2-b855e53874c3/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80" alt="206" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">7 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->206</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>953<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1971<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2150<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/ffaa598c-749a-4241-aaf2-b855e53874c3/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?building=3defb0d4-e7ce-47a4-ad97-9f1c97637a66" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/3defb0d4-e7ce-47a4-ad97-9f1c97637a66/image_8_2.jpg?width=500&amp;height=250&amp;quality=80" alt="150 chemin jean-Paul lemieux" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">150 chemin jean-Paul lemieux</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">150 chemin jean-Paul lemieux<!-- -->, chelsea</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">8 unités</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Ascenseur</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Laveuse</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Lave-vaisselle</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Climatisation centrale</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Internet fibre</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Cuisinière</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Câble</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Réfrigérateur</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Électricité</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->2<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=d9ca5ba7-6c70-4050-b44a-97cd825d86e6" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/d9ca5ba7-6c70-4050-b44a-97cd825d86e6/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="101" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->101</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2300<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/d9ca5ba7-6c70-4050-b44a-97cd825d86e6/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=7b9781f8-dc7b-4cf3-95d3-d3d70fb52767" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/7b9781f8-dc7b-4cf3-95d3-d3d70fb52767/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="102" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->102</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2300<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/7b9781f8-dc7b-4cf3-95d3-d3d70fb52767/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="104" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->104</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2400<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=589f5de2-809e-45c6-80d9-40709be41b8e" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/589f5de2-809e-45c6-80d9-40709be41b8e/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="105" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->105</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2400<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/589f5de2-809e-45c6-80d9-40709be41b8e/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6/chatgpt-image-20-avr-2026-161550.png?width=96&amp;height=80&amp;quality=80" alt="106" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->106</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>953<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2150<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=4892bec1-0e3f-408c-889b-7fbc5b4fc77d" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/4892bec1-0e3f-408c-889b-7fbc5b4fc77d/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="201" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->201</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1018<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2300<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/4892bec1-0e3f-408c-889b-7fbc5b4fc77d/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=9274a4fc-554f-47ec-82d2-9714e42580df" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/9274a4fc-554f-47ec-82d2-9714e42580df/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="204" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->204</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2400<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/9274a4fc-554f-47ec-82d2-9714e42580df/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details/gallery?unit=eef11aa2-fc16-42e2-95b8-19dbca373d9e" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/eef11aa2-fc16-42e2-95b8-19dbca373d9e/1-entree.png?width=96&amp;height=80&amp;quality=80" alt="205" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->205</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1098<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->9</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2400<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/eef11aa2-fc16-42e2-95b8-19dbca373d9e/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="pr-8"><div class="flex justify-center space-x-8 pb-4 lg:justify-start" data-sentry-component="WalkScore" data-sentry-source-file="walk-score.tsx"><div class="flex flex-col items-center space-y-2 "><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de mobilité</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3b8uitij5_" aria-label="Walk score of 0" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" aria-valuetext="0" role="progressbar" data-sentry-element="CircularProgress" data-sentry-source-file="walk-score.tsx"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-danger w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">0</span></div></div></div></div></div><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="project-details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">Chelsea Creek Multi </h1><p class="text-sm text-foreground-600">Chelsea</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>2150$</b> à <b>2400$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>1<!-- --> <!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>953<!-- --> <!-- --> - <!-- -->1098<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 avril</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-message-circle" aria-hidden="true" focusable="false" tabindex="-1"></span>Je suis intéressé par cette propriété</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/project-detail.page-2Kwf5ze5.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicProjectDetailPage": {
338 − "id": "PublicProjectDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/project/:id/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/project-detail.page-2Kwf5ze5.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/seo.helpers-DUWcGrSj.js",
354 − "/assets/should-revalidate-for-modal-CqioTNup.js",
355 − "/assets/listing-card-vLpuwroq.js",
356 − "/assets/types-BlrrbiGM.js",
357 − "/assets/use-tenant-BWWCVgWC.js",
358 − "/assets/index-DoORTE4j.js",
359 − "/assets/icon-ChitaFhd.js",
360 − "/assets/chunk-T45N425O-C34bNx0L.js",
361 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
362 − "/assets/preload-helper-Djj1Qpxo.js",
363 − "/assets/index-yaZ7Ke31.js",
364 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
365 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
366 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
367 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
368 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
369 − "/assets/settings.types-DE5bLdHg.js",
370 − "/assets/index-C5vezUBD.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicProjectDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_1325\":-5,\"_1326\":-7,\"_1327\":1328,\"_1329\":1330,\"_19\":20,\"_17\":1331,\"_1332\":-5,\"_1333\":1334,\"_998\":999,\"_1335\":-5,\"_1336\":-5},\"PublicListingsLayoutPage\",{\"_17\":989,\"_990\":991,\"_992\":993,\"_994\":53,\"_995\":120,\"_996\":997,\"_998\":999,\"_1000\":51,\"_1001\":51,\"_1002\":51},\"PublicProjectDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":139,\"_140\":141,\"_142\":143,\"_89\":144,\"_145\":146,\"_77\":147,\"_148\":149,\"_108\":72,\"_111\":150,\"_109\":151,\"_33\":152,\"_153\":154,\"_155\":144,\"_156\":157,\"_158\":53,\"_159\":160,\"_161\":162,\"_163\":60,\"_164\":51,\"_165\":166,\"_167\":168,\"_169\":170},\"auth\",{\"_137\":53,\"_138\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/project/c7e9f007-7df4-4df2-8965-4fbdba74df07/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",0,\"Car-Dependent\",\"updated\",\"2026-07-06 15:11:42.375700\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/95Chemin-Old-Chelsea/lat=-75.796062/lng=45.503356/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",-75.7965,\"snapped_lon\",45.504,\"loggedIn\",\"isStaff\",\"c7e9f007-7df4-4df2-8965-4fbdba74df07\",\"area\",1018,\"availabilty\",[\"D\",1793491200000],\"Chelsea Creek Multi \",\"buildingStreet\",\"95 Chemin Old Chelsea\",\"Chelsea\",\"buildingId\",\"2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e\",45.503356,-75.796062,{\"_322\":987,\"_20\":988},\"images\",[986],\"projectName\",\"buildingFeatures\",[],\"listed\",\"automatedApplyMode\",\"lead_form\",\"leadFormConfig\",{\"_969\":970,\"_971\":972},\"featureSiteSubdomain\",\"featureSiteEnabled\",\"units\",[810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845],\"buildings\",[188,189,190,191],\"cardData\",{\"_43\":139,\"_89\":144,\"_77\":147,\"_108\":72,\"_109\":151,\"_111\":150,\"_171\":-5,\"_172\":173,\"_174\":175,\"_140\":176,\"_177\":178,\"_179\":180},\"unitId\",\"bedrooms\",[118,187],\"bathrooms\",[118],[185,186],\"price\",[183,184],\"availability\",[181,182],[\"D\",1775001600000],[\"D\",1794268800000],2150,2400,953,1098,2,{\"_148\":627,\"_193\":628,\"_195\":629,\"_145\":630,\"_197\":147,\"_199\":72,\"_200\":-5,\"_36\":631,\"_165\":632},{\"_148\":513,\"_193\":146,\"_195\":514,\"_145\":146,\"_197\":147,\"_199\":72,\"_200\":-5,\"_36\":515,\"_165\":516},{\"_148\":367,\"_193\":368,\"_195\":369,\"_145\":370,\"_197\":147,\"_199\":72,\"_200\":-5,\"_36\":371,\"_165\":372},{\"_148\":192,\"_193\":194,\"_195\":196,\"_145\":194,\"_197\":198,\"_199\":72,\"_200\":-5,\"_36\":201,\"_165\":202},\"3defb0d4-e7ce-47a4-ad97-9f1c97637a66\",\"buildingName\",\"150 chemin jean-Paul lemieux\",\"buildingImages\",[366],\"buildingCity\",\"chelsea\",\"buildingNeighborhood\",\"buildingAutomatedApplyMode\",[308,309,310,311,312,313,314,315,316,317,318,319],[203,204,205,206,207,208,209,210],{\"_43\":297,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":298,\"_153\":299,\"_179\":300,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":301},{\"_43\":286,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":287,\"_153\":288,\"_179\":289,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":290},{\"_43\":275,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":276,\"_153\":277,\"_179\":278,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":279},{\"_43\":264,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":265,\"_153\":266,\"_179\":267,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":268},{\"_43\":253,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":254,\"_153\":255,\"_179\":256,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":257},{\"_43\":241,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":243,\"_153\":244,\"_179\":245,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":246},{\"_43\":230,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":231,\"_153\":232,\"_179\":233,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":234},{\"_43\":211,\"_140\":186,\"_212\":118,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":214,\"_153\":215,\"_179\":216,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":223},\"eef11aa2-fc16-42e2-95b8-19dbca373d9e\",\"floor\",\"alias\",\"205\",[224,225,226,227,228,229],[\"D\",1785542400000],\"building_id\",\"floor_plan_name\",\"floor_plan_image_path\",\"listing_type\",\"Unit\",\"promotion\",[],\"/storage/v1/object/public/halfred/units/eef11aa2-fc16-42e2-95b8-19dbca373d9e/1-entree.png\",\"/storage/v1/object/public/halfred/units/eef11aa2-fc16-42e2-95b8-19dbca373d9e/cuisine.png\",\"/storage/v1/object/public/halfred/units/eef11aa2-fc16-42e2-95b8-19dbca373d9e/2-salon.png\",\"/storage/v1/object/public/halfred/units/eef11aa2-fc16-42e2-95b8-19dbca373d9e/3-chambre.png\",\"/storage/v1/object/public/halfred/units/eef11aa2-fc16-42e2-95b8-19dbca373d9e/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/eef11aa2-fc16-42e2-95b8-19dbca373d9e/Plancher_Type_C.jpg\",\"9274a4fc-554f-47ec-82d2-9714e42580df\",\"204\",[235,236,237,238,239,240],[\"D\",1782864000000],[],\"/storage/v1/object/public/halfred/units/9274a4fc-554f-47ec-82d2-9714e42580df/1-entree.png\",\"/storage/v1/object/public/halfred/units/9274a4fc-554f-47ec-82d2-9714e42580df/cuisine.png\",\"/storage/v1/object/public/halfred/units/9274a4fc-554f-47ec-82d2-9714e42580df/2-salon.png\",\"/storage/v1/object/public/halfred/units/9274a4fc-554f-47ec-82d2-9714e42580df/3-chambre.png\",\"/storage/v1/object/public/halfred/units/9274a4fc-554f-47ec-82d2-9714e42580df/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/9274a4fc-554f-47ec-82d2-9714e42580df/Plancher_Type_C.jpg\",\"4892bec1-0e3f-408c-889b-7fbc5b4fc77d\",2300,\"201\",[247,248,249,250,251,252],[\"D\",1782864000000],[],\"/storage/v1/object/public/halfred/units/4892bec1-0e3f-408c-889b-7fbc5b4fc77d/1-entree.png\",\"/storage/v1/object/public/halfred/units/4892bec1-0e3f-408c-889b-7fbc5b4fc77d/cuisine.png\",\"/storage/v1/object/public/halfred/units/4892bec1-0e3f-408c-889b-7fbc5b4fc77d/2-salon.png\",\"/storage/v1/object/public/halfred/units/4892bec1-0e3f-408c-889b-7fbc5b4fc77d/3-chambre.png\",\"/storage/v1/object/public/halfred/units/4892bec1-0e3f-408c-889b-7fbc5b4fc77d/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/4892bec1-0e3f-408c-889b-7fbc5b4fc77d/Plancher_Type_A.jpg\",\"9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6\",\"106\",[258,259,260,261,262,263],[\"D\",1775001600000],[],\"/storage/v1/object/public/halfred/units/9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6/chatgpt-image-20-avr-2026-161550.png\",\"/storage/v1/object/public/halfred/units/9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6/chatgpt-image-20-avr-2026-161109.png\",\"/storage/v1/object/public/halfred/units/9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6/chatgpt-image-20-avr-2026-161309.png\",\"/storage/v1/object/public/halfred/units/9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6/chatgpt-image-20-avr-2026-161221.png\",\"/storage/v1/object/public/halfred/units/9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6/chatgpt-image-20-avr-2026-161435.png\",\"/storage/v1/object/public/halfred/units/9fbeb0be-14a2-4d3c-9d42-bf1bec124fb6/Plancher_Type_D.jpg\",\"589f5de2-809e-45c6-80d9-40709be41b8e\",\"105\",[269,270,271,272,273,274],[\"D\",1782864000000],[],\"/storage/v1/object/public/halfred/units/589f5de2-809e-45c6-80d9-40709be41b8e/1-entree.png\",\"/storage/v1/object/public/halfred/units/589f5de2-809e-45c6-80d9-40709be41b8e/cuisine.png\",\"/storage/v1/object/public/halfred/units/589f5de2-809e-45c6-80d9-40709be41b8e/2-salon.png\",\"/storage/v1/object/public/halfred/units/589f5de2-809e-45c6-80d9-40709be41b8e/3-chambre.png\",\"/storage/v1/object/public/halfred/units/589f5de2-809e-45c6-80d9-40709be41b8e/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/589f5de2-809e-45c6-80d9-40709be41b8e/Plancher_Type_C.jpg\",\"8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8\",\"104\",[280,281,282,283,284,285],[\"D\",1782864000000],[],\"/storage/v1/object/public/halfred/units/8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8/1-entree.png\",\"/storage/v1/object/public/halfred/units/8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8/cuisine.png\",\"/storage/v1/object/public/halfred/units/8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8/2-salon.png\",\"/storage/v1/object/public/halfred/units/8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8/3-chambre.png\",\"/storage/v1/object/public/halfred/units/8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/8f0d27f8-b9d7-4c4c-a436-97cddd89e3f8/Plancher_Type_C.jpg\",\"7b9781f8-dc7b-4cf3-95d3-d3d70fb52767\",\"102\",[291,292,293,294,295,296],[\"D\",1782864000000],[],\"/storage/v1/object/public/halfred/units/7b9781f8-dc7b-4cf3-95d3-d3d70fb52767/1-entree.png\",\"/storage/v1/object/public/halfred/units/7b9781f8-dc7b-4cf3-95d3-d3d70fb52767/cuisine.png\",\"/storage/v1/object/public/halfred/units/7b9781f8-dc7b-4cf3-95d3-d3d70fb52767/2-salon.png\",\"/storage/v1/object/public/halfred/units/7b9781f8-dc7b-4cf3-95d3-d3d70fb52767/3-chambre.png\",\"/storage/v1/object/public/halfred/units/7b9781f8-dc7b-4cf3-95d3-d3d70fb52767/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/7b9781f8-dc7b-4cf3-95d3-d3d70fb52767/Plancher_Type_A.jpg\",\"d9ca5ba7-6c70-4050-b44a-97cd825d86e6\",\"101\",[302,303,304,305,306,307],[\"D\",1782864000000],[],\"/storage/v1/object/public/halfred/units/d9ca5ba7-6c70-4050-b44a-97cd825d86e6/1-entree.png\",\"/storage/v1/object/public/halfred/units/d9ca5ba7-6c70-4050-b44a-97cd825d86e6/cuisine.png\",\"/storage/v1/object/public/halfred/units/d9ca5ba7-6c70-4050-b44a-97cd825d86e6/2-salon.png\",\"/storage/v1/object/public/halfred/units/d9ca5ba7-6c70-4050-b44a-97cd825d86e6/3-chambre.png\",\"/storage/v1/object/public/halfred/units/d9ca5ba7-6c70-4050-b44a-97cd825d86e6/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/d9ca5ba7-6c70-4050-b44a-97cd825d86e6/Plancher_Type_A.jpg\",{\"_90\":363,\"_38\":356},{\"_90\":359,\"_38\":360},{\"_90\":355,\"_38\":356},{\"_90\":352,\"_38\":321},{\"_90\":349,\"_38\":342},{\"_90\":345,\"_38\":346},{\"_90\":341,\"_38\":342},{\"_90\":337,\"_38\":338},{\"_90\":333,\"_38\":334},{\"_90\":329,\"_38\":330},{\"_90\":325,\"_38\":326},{\"_90\":320,\"_38\":321},{\"_322\":323,\"_20\":324},\"lucide:thermometer-sun\",\"en\",\"Electric Heating\",\"Chauffage Électrique\",{\"_322\":327,\"_20\":328},\"lucide:fence\",\"Balcony\",\"Balcon\",{\"_322\":331,\"_20\":332},\"lucide:microwave\",\"Oven\",\"Four\",{\"_322\":335,\"_20\":336},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",{\"_322\":339,\"_20\":340},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",{\"_322\":343,\"_20\":344},\"lucide:wifi\",\"Cable\",\"Câble\",{\"_322\":347,\"_20\":348},\"lucide:soup\",\"Stove\",\"Cuisinière\",{\"_322\":350,\"_20\":351},\"Fiber Internet\",\"Internet fibre\",{\"_322\":353,\"_20\":354},\"Central Air Conditioning\",\"Climatisation centrale\",{\"_322\":357,\"_20\":358},\"lucide:check\",\"Dishwasher\",\"Lave-vaisselle\",{\"_322\":361,\"_20\":362},\"lucide:washing-machine\",\"Washer\",\"Laveuse\",{\"_322\":364,\"_20\":365},\"Elevator\",\"Ascenseur\",\"/storage/v1/object/public/halfred/buildings/3defb0d4-e7ce-47a4-ad97-9f1c97637a66/image_8_2.jpg\",\"28ce71d0-107b-40e3-b4f1-6145f38d33d4\",\"101, chemin Old Chelsea\",[512],\"101 Chemin Old Chelsea\",[488,489,490,491,492,493,494,495,496,497,498,499],[373,374,375,376,377,378,379,380,381],{\"_43\":476,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":298,\"_153\":477,\"_179\":478,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":479,\"_36\":480},{\"_43\":465,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":287,\"_153\":466,\"_179\":467,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":468,\"_36\":469},{\"_43\":454,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":276,\"_153\":455,\"_179\":456,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":457,\"_36\":458},{\"_43\":443,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":265,\"_153\":444,\"_179\":445,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":446,\"_36\":447},{\"_43\":432,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":254,\"_153\":433,\"_179\":434,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":435,\"_36\":436},{\"_43\":420,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":421,\"_153\":422,\"_179\":423,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":424,\"_36\":425},{\"_43\":409,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":231,\"_153\":410,\"_179\":411,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":412,\"_36\":413},{\"_43\":397,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":214,\"_153\":398,\"_179\":399,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":400,\"_36\":401},{\"_43\":382,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":383,\"_153\":384,\"_179\":385,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":386,\"_36\":387},\"ffaa598c-749a-4241-aaf2-b855e53874c3\",\"206\",[390,391,392,393,394,395,396],[\"D\",1775001600000],{\"_177\":388,\"_33\":389},[],1971,\"*** Prox promotionnelle pour un bail de 12 mois *** \",\"/storage/v1/object/public/halfred/units/ffaa598c-749a-4241-aaf2-b855e53874c3/chatgpt-image-20-avr-2026-161550.png\",\"/storage/v1/object/public/halfred/units/ffaa598c-749a-4241-aaf2-b855e53874c3/chatgpt-image-20-avr-2026-160256.png\",\"/storage/v1/object/public/halfred/units/ffaa598c-749a-4241-aaf2-b855e53874c3/chatgpt-image-20-avr-2026-161109.png\",\"/storage/v1/object/public/halfred/units/ffaa598c-749a-4241-aaf2-b855e53874c3/chatgpt-image-20-avr-2026-161221.png\",\"/storage/v1/object/public/halfred/units/ffaa598c-749a-4241-aaf2-b855e53874c3/chatgpt-image-20-avr-2026-161309.png\",\"/storage/v1/object/public/halfred/units/ffaa598c-749a-4241-aaf2-b855e53874c3/chatgpt-image-20-avr-2026-161435.png\",\"/storage/v1/object/public/halfred/units/ffaa598c-749a-4241-aaf2-b855e53874c3/Plancher_Type_D.jpg\",\"3560acad-ddd2-4991-8323-cebd1ce31bb5\",[403,404,405,406,407,408],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],2200,\"/storage/v1/object/public/halfred/units/3560acad-ddd2-4991-8323-cebd1ce31bb5/1-entree.png\",\"/storage/v1/object/public/halfred/units/3560acad-ddd2-4991-8323-cebd1ce31bb5/cuisine.png\",\"/storage/v1/object/public/halfred/units/3560acad-ddd2-4991-8323-cebd1ce31bb5/2-salon.png\",\"/storage/v1/object/public/halfred/units/3560acad-ddd2-4991-8323-cebd1ce31bb5/3-chambre.png\",\"/storage/v1/object/public/halfred/units/3560acad-ddd2-4991-8323-cebd1ce31bb5/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/3560acad-ddd2-4991-8323-cebd1ce31bb5/Plancher_Type_C.jpg\",\"3a1e626a-fa89-4597-9078-1882aaf77986\",[414,415,416,417,418,419],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/3a1e626a-fa89-4597-9078-1882aaf77986/1-entree.png\",\"/storage/v1/object/public/halfred/units/3a1e626a-fa89-4597-9078-1882aaf77986/cuisine.png\",\"/storage/v1/object/public/halfred/units/3a1e626a-fa89-4597-9078-1882aaf77986/2-salon.png\",\"/storage/v1/object/public/halfred/units/3a1e626a-fa89-4597-9078-1882aaf77986/3-chambre.png\",\"/storage/v1/object/public/halfred/units/3a1e626a-fa89-4597-9078-1882aaf77986/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/3a1e626a-fa89-4597-9078-1882aaf77986/Plancher_Type_C.jpg\",\"6be7b657-944b-482c-b740-49afe1b38a08\",\"202\",[427,428,429,430,431],[\"D\",1775001600000],{\"_177\":426,\"_33\":389},[],2109,\"/storage/v1/object/public/halfred/units/6be7b657-944b-482c-b740-49afe1b38a08/1-entree.png\",\"/storage/v1/object/public/halfred/units/6be7b657-944b-482c-b740-49afe1b38a08/cuisine.png\",\"/storage/v1/object/public/halfred/units/6be7b657-944b-482c-b740-49afe1b38a08/2-salon.png\",\"/storage/v1/object/public/halfred/units/6be7b657-944b-482c-b740-49afe1b38a08/3-chambre.png\",\"/storage/v1/object/public/halfred/units/6be7b657-944b-482c-b740-49afe1b38a08/4-salle-de-bain.png\",\"2798b6d6-5180-4769-a77a-088a2024d1d9\",[437,438,439,440,441,442],[\"D\",1777593600000],{\"_177\":388,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/2798b6d6-5180-4769-a77a-088a2024d1d9/chatgpt-image-20-avr-2026-161550.png\",\"/storage/v1/object/public/halfred/units/2798b6d6-5180-4769-a77a-088a2024d1d9/chatgpt-image-20-avr-2026-161109.png\",\"/storage/v1/object/public/halfred/units/2798b6d6-5180-4769-a77a-088a2024d1d9/chatgpt-image-20-avr-2026-161309.png\",\"/storage/v1/object/public/halfred/units/2798b6d6-5180-4769-a77a-088a2024d1d9/chatgpt-image-20-avr-2026-161221.png\",\"/storage/v1/object/public/halfred/units/2798b6d6-5180-4769-a77a-088a2024d1d9/chatgpt-image-20-avr-2026-161435.png\",\"/storage/v1/object/public/halfred/units/2798b6d6-5180-4769-a77a-088a2024d1d9/Plancher_Type_D.jpg\",\"a13291c2-1058-4de4-823f-0a9229cbc252\",[448,449,450,451,452,453],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/a13291c2-1058-4de4-823f-0a9229cbc252/1-entree.png\",\"/storage/v1/object/public/halfred/units/a13291c2-1058-4de4-823f-0a9229cbc252/cuisine.png\",\"/storage/v1/object/public/halfred/units/a13291c2-1058-4de4-823f-0a9229cbc252/2-salon.png\",\"/storage/v1/object/public/halfred/units/a13291c2-1058-4de4-823f-0a9229cbc252/3-chambre.png\",\"/storage/v1/object/public/halfred/units/a13291c2-1058-4de4-823f-0a9229cbc252/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/a13291c2-1058-4de4-823f-0a9229cbc252/Plancher_Type_C.jpg\",\"79d48005-c3eb-4edd-90c3-20a7c143c2dc\",[459,460,461,462,463,464],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/79d48005-c3eb-4edd-90c3-20a7c143c2dc/1-entree.png\",\"/storage/v1/object/public/halfred/units/79d48005-c3eb-4edd-90c3-20a7c143c2dc/cuisine.png\",\"/storage/v1/object/public/halfred/units/79d48005-c3eb-4edd-90c3-20a7c143c2dc/2-salon.png\",\"/storage/v1/object/public/halfred/units/79d48005-c3eb-4edd-90c3-20a7c143c2dc/3-chambre.png\",\"/storage/v1/object/public/halfred/units/79d48005-c3eb-4edd-90c3-20a7c143c2dc/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/79d48005-c3eb-4edd-90c3-20a7c143c2dc/Plancher_Type_C.jpg\",\"4aedcfb8-7986-4ccf-af8e-0563b7befdb8\",[470,471,472,473,474,475],[\"D\",1775001600000],{\"_177\":426,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/4aedcfb8-7986-4ccf-af8e-0563b7befdb8/1-entree.png\",\"/storage/v1/object/public/halfred/units/4aedcfb8-7986-4ccf-af8e-0563b7befdb8/cuisine.png\",\"/storage/v1/object/public/halfred/units/4aedcfb8-7986-4ccf-af8e-0563b7befdb8/2-salon.png\",\"/storage/v1/object/public/halfred/units/4aedcfb8-7986-4ccf-af8e-0563b7befdb8/3-chambre.png\",\"/storage/v1/object/public/halfred/units/4aedcfb8-7986-4ccf-af8e-0563b7befdb8/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/4aedcfb8-7986-4ccf-af8e-0563b7befdb8/Plancher_Type_A.jpg\",\"675d6096-8806-43e9-aa11-095a5f20ab27\",[482,483,484,485,486,487],[\"D\",1775001600000],{\"_177\":481,\"_33\":389},[],2190,\"/storage/v1/object/public/halfred/units/675d6096-8806-43e9-aa11-095a5f20ab27/1-entree.png\",\"/storage/v1/object/public/halfred/units/675d6096-8806-43e9-aa11-095a5f20ab27/cuisine.png\",\"/storage/v1/object/public/halfred/units/675d6096-8806-43e9-aa11-095a5f20ab27/2-salon.png\",\"/storage/v1/object/public/halfred/units/675d6096-8806-43e9-aa11-095a5f20ab27/3-chambre.png\",\"/storage/v1/object/public/halfred/units/675d6096-8806-43e9-aa11-095a5f20ab27/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/675d6096-8806-43e9-aa11-095a5f20ab27/Plancher_Type_A.jpg\",{\"_90\":511,\"_38\":330},{\"_90\":510,\"_38\":360},{\"_90\":509,\"_38\":356},{\"_90\":508,\"_38\":356},{\"_90\":507,\"_38\":321},{\"_90\":506,\"_38\":326},{\"_90\":505,\"_38\":342},{\"_90\":504,\"_38\":342},{\"_90\":503,\"_38\":346},{\"_90\":502,\"_38\":334},{\"_90\":501,\"_38\":321},{\"_90\":500,\"_38\":338},{\"_322\":339,\"_20\":340},{\"_322\":323,\"_20\":324},{\"_322\":335,\"_20\":336},{\"_322\":347,\"_20\":348},{\"_322\":343,\"_20\":344},{\"_322\":350,\"_20\":351},{\"_322\":327,\"_20\":328},{\"_322\":353,\"_20\":354},{\"_322\":357,\"_20\":358},{\"_322\":364,\"_20\":365},{\"_322\":361,\"_20\":362},{\"_322\":331,\"_20\":332},\"/storage/v1/object/public/halfred/buildings/28ce71d0-107b-40e3-b4f1-6145f38d33d4/image_8_2 (1).jpg\",\"29c613cb-e9da-464f-8678-52a3c0176351\",[626],[602,603,604,605,606,607,608,609,610,611,612,613],[517,518,519,520,521,522,523],{\"_43\":591,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":287,\"_153\":592,\"_179\":593,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":594,\"_36\":595},{\"_43\":580,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":276,\"_153\":581,\"_179\":582,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":583,\"_36\":584},{\"_43\":569,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":265,\"_153\":570,\"_179\":571,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":572,\"_36\":573},{\"_43\":558,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":254,\"_153\":559,\"_179\":560,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":561,\"_36\":562},{\"_43\":547,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":214,\"_153\":548,\"_179\":549,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":550,\"_36\":551},{\"_43\":535,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":383,\"_153\":536,\"_179\":537,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":538,\"_36\":539},{\"_43\":524,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":525,\"_153\":526,\"_179\":527,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":528},\"a798ba01-9b05-47d2-b09c-e97910228d65\",\"305\",[529,530,531,532,533,534],[\"D\",1775001600000],[],\"/storage/v1/object/public/halfred/units/a798ba01-9b05-47d2-b09c-e97910228d65/1-entree.png\",\"/storage/v1/object/public/halfred/units/a798ba01-9b05-47d2-b09c-e97910228d65/cuisine.png\",\"/storage/v1/object/public/halfred/units/a798ba01-9b05-47d2-b09c-e97910228d65/2-salon.png\",\"/storage/v1/object/public/halfred/units/a798ba01-9b05-47d2-b09c-e97910228d65/3-chambre.png\",\"/storage/v1/object/public/halfred/units/a798ba01-9b05-47d2-b09c-e97910228d65/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/a798ba01-9b05-47d2-b09c-e97910228d65/Plancher_Type_C.jpg\",\"d34bda71-aebb-4f25-a38f-b15a3ec89028\",[540,541,542,543,544,545,546],[\"D\",1775001600000],{\"_177\":388,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/d34bda71-aebb-4f25-a38f-b15a3ec89028/chatgpt-image-20-avr-2026-161550.png\",\"/storage/v1/object/public/halfred/units/d34bda71-aebb-4f25-a38f-b15a3ec89028/chatgpt-image-20-avr-2026-160256.png\",\"/storage/v1/object/public/halfred/units/d34bda71-aebb-4f25-a38f-b15a3ec89028/chatgpt-image-20-avr-2026-161109.png\",\"/storage/v1/object/public/halfred/units/d34bda71-aebb-4f25-a38f-b15a3ec89028/chatgpt-image-20-avr-2026-161221.png\",\"/storage/v1/object/public/halfred/units/d34bda71-aebb-4f25-a38f-b15a3ec89028/chatgpt-image-20-avr-2026-161309.png\",\"/storage/v1/object/public/halfred/units/d34bda71-aebb-4f25-a38f-b15a3ec89028/chatgpt-image-20-avr-2026-161435.png\",\"/storage/v1/object/public/halfred/units/d34bda71-aebb-4f25-a38f-b15a3ec89028/Plancher_Type_D.jpg\",\"69580c95-854e-4926-9cfd-712267b2a8d4\",[552,553,554,555,556,557],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/69580c95-854e-4926-9cfd-712267b2a8d4/1-entree.png\",\"/storage/v1/object/public/halfred/units/69580c95-854e-4926-9cfd-712267b2a8d4/cuisine.png\",\"/storage/v1/object/public/halfred/units/69580c95-854e-4926-9cfd-712267b2a8d4/2-salon.png\",\"/storage/v1/object/public/halfred/units/69580c95-854e-4926-9cfd-712267b2a8d4/3-chambre.png\",\"/storage/v1/object/public/halfred/units/69580c95-854e-4926-9cfd-712267b2a8d4/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/69580c95-854e-4926-9cfd-712267b2a8d4/Plancher_Type_C.jpg\",\"47dbaf85-aa85-49cf-acb8-4d0d5bf38395\",[563,564,565,566,567,568],[\"D\",1775001600000],{\"_177\":388,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/47dbaf85-aa85-49cf-acb8-4d0d5bf38395/chatgpt-image-20-avr-2026-161550.png\",\"/storage/v1/object/public/halfred/units/47dbaf85-aa85-49cf-acb8-4d0d5bf38395/chatgpt-image-20-avr-2026-161109.png\",\"/storage/v1/object/public/halfred/units/47dbaf85-aa85-49cf-acb8-4d0d5bf38395/chatgpt-image-20-avr-2026-161309.png\",\"/storage/v1/object/public/halfred/units/47dbaf85-aa85-49cf-acb8-4d0d5bf38395/chatgpt-image-20-avr-2026-161221.png\",\"/storage/v1/object/public/halfred/units/47dbaf85-aa85-49cf-acb8-4d0d5bf38395/chatgpt-image-20-avr-2026-161435.png\",\"/storage/v1/object/public/halfred/units/47dbaf85-aa85-49cf-acb8-4d0d5bf38395/Plancher_Type_D.jpg\",\"0b7c1726-304f-4040-a652-ee937a57f061\",[574,575,576,577,578,579],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/0b7c1726-304f-4040-a652-ee937a57f061/1-entree.png\",\"/storage/v1/object/public/halfred/units/0b7c1726-304f-4040-a652-ee937a57f061/cuisine.png\",\"/storage/v1/object/public/halfred/units/0b7c1726-304f-4040-a652-ee937a57f061/2-salon.png\",\"/storage/v1/object/public/halfred/units/0b7c1726-304f-4040-a652-ee937a57f061/3-chambre.png\",\"/storage/v1/object/public/halfred/units/0b7c1726-304f-4040-a652-ee937a57f061/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/0b7c1726-304f-4040-a652-ee937a57f061/Plancher_Type_C.jpg\",\"6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1\",[585,586,587,588,589,590],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1/1-entree.png\",\"/storage/v1/object/public/halfred/units/6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1/cuisine.png\",\"/storage/v1/object/public/halfred/units/6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1/2-salon.png\",\"/storage/v1/object/public/halfred/units/6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1/3-chambre.png\",\"/storage/v1/object/public/halfred/units/6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/6d7ae615-40f6-4d0a-a5cb-f07f2998bbf1/Plancher_Type_C.jpg\",\"14793141-89fd-4bd3-8048-e1889960754c\",[596,597,598,599,600,601],[\"D\",1775001600000],{\"_177\":426,\"_33\":389},[],\"/storage/v1/object/public/halfred/units/14793141-89fd-4bd3-8048-e1889960754c/1-entree.png\",\"/storage/v1/object/public/halfred/units/14793141-89fd-4bd3-8048-e1889960754c/cuisine.png\",\"/storage/v1/object/public/halfred/units/14793141-89fd-4bd3-8048-e1889960754c/2-salon.png\",\"/storage/v1/object/public/halfred/units/14793141-89fd-4bd3-8048-e1889960754c/3-chambre.png\",\"/storage/v1/object/public/halfred/units/14793141-89fd-4bd3-8048-e1889960754c/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/14793141-89fd-4bd3-8048-e1889960754c/Plancher_Type_A.jpg\",{\"_90\":625,\"_38\":356},{\"_90\":624,\"_38\":360},{\"_90\":623,\"_38\":356},{\"_90\":622,\"_38\":321},{\"_90\":621,\"_38\":342},{\"_90\":620,\"_38\":346},{\"_90\":619,\"_38\":342},{\"_90\":618,\"_38\":338},{\"_90\":617,\"_38\":334},{\"_90\":616,\"_38\":330},{\"_90\":615,\"_38\":326},{\"_90\":614,\"_38\":321},{\"_322\":323,\"_20\":324},{\"_322\":327,\"_20\":328},{\"_322\":331,\"_20\":332},{\"_322\":335,\"_20\":336},{\"_322\":339,\"_20\":340},{\"_322\":343,\"_20\":344},{\"_322\":347,\"_20\":348},{\"_322\":350,\"_20\":351},{\"_322\":353,\"_20\":354},{\"_322\":357,\"_20\":358},{\"_322\":361,\"_20\":362},{\"_322\":364,\"_20\":365},\"/storage/v1/object/public/halfred/buildings/29c613cb-e9da-464f-8678-52a3c0176351/image_8_2.jpg\",\"4be75758-8c6b-4978-bd5b-913caf5ca0f4\",\"146 hemin jean-Paul lemieux\",[809],\"146 Chemin Jean-Paul Lemieux\",[785,786,787,788,789,790,791,792,793,794,795,796],[633,634,635,636,637,638,639,640,641,642,643,644],{\"_43\":776,\"_140\":141,\"_212\":120,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":298,\"_153\":777,\"_179\":778,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":779},{\"_43\":762,\"_140\":141,\"_212\":120,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":287,\"_153\":763,\"_179\":764,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":765},{\"_43\":750,\"_140\":186,\"_212\":120,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":276,\"_153\":751,\"_179\":752,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":753},{\"_43\":738,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":265,\"_153\":739,\"_179\":740,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":741},{\"_43\":728,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":254,\"_153\":729,\"_179\":730,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":731},{\"_43\":719,\"_140\":141,\"_212\":118,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":243,\"_153\":720,\"_179\":721,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":722},{\"_43\":710,\"_140\":141,\"_212\":118,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":421,\"_153\":711,\"_179\":712,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":713},{\"_43\":698,\"_140\":186,\"_212\":118,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":231,\"_153\":699,\"_179\":700,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":701},{\"_43\":686,\"_140\":186,\"_212\":118,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":214,\"_153\":687,\"_179\":688,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":689},{\"_43\":671,\"_140\":185,\"_212\":118,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":383,\"_153\":672,\"_179\":673,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":674},{\"_43\":656,\"_140\":141,\"_212\":187,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":657,\"_153\":658,\"_179\":659,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":660},{\"_43\":645,\"_140\":185,\"_212\":187,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":646,\"_153\":647,\"_179\":648,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":649},\"41713e57-a8b4-4e01-8ff9-99ac1ad5142a\",\"306\",[650,651,652,653,654,655],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/41713e57-a8b4-4e01-8ff9-99ac1ad5142a/chatgpt-image-20-avr-2026-160256.png\",\"/storage/v1/object/public/halfred/units/41713e57-a8b4-4e01-8ff9-99ac1ad5142a/chatgpt-image-20-avr-2026-161109.png\",\"/storage/v1/object/public/halfred/units/41713e57-a8b4-4e01-8ff9-99ac1ad5142a/chatgpt-image-20-avr-2026-161221.png\",\"/storage/v1/object/public/halfred/units/41713e57-a8b4-4e01-8ff9-99ac1ad5142a/chatgpt-image-20-avr-2026-161309.png\",\"/storage/v1/object/public/halfred/units/41713e57-a8b4-4e01-8ff9-99ac1ad5142a/chatgpt-image-20-avr-2026-161435.png\",\"/storage/v1/object/public/halfred/units/41713e57-a8b4-4e01-8ff9-99ac1ad5142a/chatgpt-image-20-avr-2026-161550.png\",\"3be325ef-a03b-4d67-81e5-28d0710030f6\",\"302\",[661,662,663,664,665,666,667,668,669,670],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0002-001-002.jpg\",\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0003-001-003.jpg\",\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0004-001-004.jpg\",\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0005-001-005.jpg\",\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0006-001-006.jpg\",\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0007-001-007.jpg\",\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0008-001-008.jpg\",\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0009-001-009.jpg\",\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0010-001-010.jpg\",\"/storage/v1/object/public/halfred/units/3be325ef-a03b-4d67-81e5-28d0710030f6/0011-001-011.jpg\",\"e843b093-40b8-416f-b227-200f43cd9797\",[675,676,677,678,679,680,681,682,683,684,685],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0025-004-001.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0026-004-002.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0027-004-003.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0028-004-004.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0029-004-005.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0030-004-006.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0031-004-007.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0032-004-008.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0033-004-009.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0034-004-010.jpg\",\"/storage/v1/object/public/halfred/units/e843b093-40b8-416f-b227-200f43cd9797/0035-004-011.jpg\",\"7ac1e8b9-c13a-4011-8744-ec32f8f34f83\",[690,691,692,693,694,695,696,697],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0018-003-001.jpg\",\"/storage/v1/object/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0019-003-002.jpg\",\"/storage/v1/object/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0020-003-003.jpg\",\"/storage/v1/object/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0021-003-004.jpg\",\"/storage/v1/object/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0022-003-005.jpg\",\"/storage/v1/object/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0023-003-006.jpg\",\"/storage/v1/object/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0024-003-007.jpg\",\"/storage/v1/object/public/halfred/units/7ac1e8b9-c13a-4011-8744-ec32f8f34f83/0025-001-010.jpg\",\"e29f5750-77b1-4caa-9e50-e5ed6d54c6af\",[702,703,704,705,706,707,708,709],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0018-003-001.jpg\",\"/storage/v1/object/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0019-003-002.jpg\",\"/storage/v1/object/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0020-003-003.jpg\",\"/storage/v1/object/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0021-003-004.jpg\",\"/storage/v1/object/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0022-003-005.jpg\",\"/storage/v1/object/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0023-003-006.jpg\",\"/storage/v1/object/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0024-003-007.jpg\",\"/storage/v1/object/public/halfred/units/e29f5750-77b1-4caa-9e50-e5ed6d54c6af/0025-001-010.jpg\",\"e52cdeb1-8752-44e2-8b7d-4993902469ea\",[714,715,716,717,718],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/e52cdeb1-8752-44e2-8b7d-4993902469ea/1-entree.png\",\"/storage/v1/object/public/halfred/units/e52cdeb1-8752-44e2-8b7d-4993902469ea/2-salon.png\",\"/storage/v1/object/public/halfred/units/e52cdeb1-8752-44e2-8b7d-4993902469ea/3-chambre.png\",\"/storage/v1/object/public/halfred/units/e52cdeb1-8752-44e2-8b7d-4993902469ea/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/e52cdeb1-8752-44e2-8b7d-4993902469ea/cuisine.png\",\"21ab2a1a-fac3-4d71-8d06-9a8408edbd73\",[723,724,725,726,727],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/21ab2a1a-fac3-4d71-8d06-9a8408edbd73/1-entree.png\",\"/storage/v1/object/public/halfred/units/21ab2a1a-fac3-4d71-8d06-9a8408edbd73/2-salon.png\",\"/storage/v1/object/public/halfred/units/21ab2a1a-fac3-4d71-8d06-9a8408edbd73/3-chambre.png\",\"/storage/v1/object/public/halfred/units/21ab2a1a-fac3-4d71-8d06-9a8408edbd73/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/21ab2a1a-fac3-4d71-8d06-9a8408edbd73/cuisine.png\",\"0fbbbc72-52d2-42f3-ab77-bc505e253b99\",[732,733,734,735,736,737],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/0fbbbc72-52d2-42f3-ab77-bc505e253b99/chatgpt-image-20-avr-2026-160256.png\",\"/storage/v1/object/public/halfred/units/0fbbbc72-52d2-42f3-ab77-bc505e253b99/chatgpt-image-20-avr-2026-161109.png\",\"/storage/v1/object/public/halfred/units/0fbbbc72-52d2-42f3-ab77-bc505e253b99/chatgpt-image-20-avr-2026-161221.png\",\"/storage/v1/object/public/halfred/units/0fbbbc72-52d2-42f3-ab77-bc505e253b99/chatgpt-image-20-avr-2026-161309.png\",\"/storage/v1/object/public/halfred/units/0fbbbc72-52d2-42f3-ab77-bc505e253b99/chatgpt-image-20-avr-2026-161435.png\",\"/storage/v1/object/public/halfred/units/0fbbbc72-52d2-42f3-ab77-bc505e253b99/chatgpt-image-20-avr-2026-161550.png\",\"98a8827e-f14d-429f-af88-65d6f7cde3b9\",[742,743,744,745,746,747,748,749],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0018-003-001.jpg\",\"/storage/v1/object/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0019-003-002.jpg\",\"/storage/v1/object/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0020-003-003.jpg\",\"/storage/v1/object/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0021-003-004.jpg\",\"/storage/v1/object/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0022-003-005.jpg\",\"/storage/v1/object/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0023-003-006.jpg\",\"/storage/v1/object/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0024-003-007.jpg\",\"/storage/v1/object/public/halfred/units/98a8827e-f14d-429f-af88-65d6f7cde3b9/0025-001-010.jpg\",\"5b25fc02-b3ee-4f37-b8dc-0b955d19c62b\",[754,755,756,757,758,759,760,761],[\"D\",1783641600000],[],\"/storage/v1/object/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0018-003-001.jpg\",\"/storage/v1/object/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0019-003-002.jpg\",\"/storage/v1/object/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0020-003-003.jpg\",\"/storage/v1/object/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0021-003-004.jpg\",\"/storage/v1/object/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0022-003-005.jpg\",\"/storage/v1/object/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0023-003-006.jpg\",\"/storage/v1/object/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0024-003-007.jpg\",\"/storage/v1/object/public/halfred/units/5b25fc02-b3ee-4f37-b8dc-0b955d19c62b/0025-001-010.jpg\",\"37587cb0-c714-4535-8af7-3bcf0a9df310\",[766,767,768,769,770,771,772,773,774,775],[\"D\",1794268800000],[],\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0002-001-002.jpg\",\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0003-001-003.jpg\",\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0004-001-004.jpg\",\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0005-001-005.jpg\",\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0006-001-006.jpg\",\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0007-001-007.jpg\",\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0008-001-008.jpg\",\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0009-001-009.jpg\",\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0010-001-010.jpg\",\"/storage/v1/object/public/halfred/units/37587cb0-c714-4535-8af7-3bcf0a9df310/0011-001-011.jpg\",\"9c5fb794-e558-40b0-8659-2e4d6da3e249\",[780,781,782,783,784],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/9c5fb794-e558-40b0-8659-2e4d6da3e249/1-entree.png\",\"/storage/v1/object/public/halfred/units/9c5fb794-e558-40b0-8659-2e4d6da3e249/2-salon.png\",\"/storage/v1/object/public/halfred/units/9c5fb794-e558-40b0-8659-2e4d6da3e249/3-chambre.png\",\"/storage/v1/object/public/halfred/units/9c5fb794-e558-40b0-8659-2e4d6da3e249/4-salle-de-bain.png\",\"/storage/v1/object/public/halfred/units/9c5fb794-e558-40b0-8659-2e4d6da3e249/cuisine.png\",{\"_90\":808,\"_38\":356},{\"_90\":807,\"_38\":360},{\"_90\":806,\"_38\":356},{\"_90\":805,\"_38\":321},{\"_90\":804,\"_38\":342},{\"_90\":803,\"_38\":346},{\"_90\":802,\"_38\":342},{\"_90\":801,\"_38\":338},{\"_90\":800,\"_38\":334},{\"_90\":799,\"_38\":330},{\"_90\":798,\"_38\":326},{\"_90\":797,\"_38\":321},{\"_322\":323,\"_20\":324},{\"_322\":327,\"_20\":328},{\"_322\":331,\"_20\":332},{\"_322\":335,\"_20\":336},{\"_322\":339,\"_20\":340},{\"_322\":343,\"_20\":344},{\"_322\":347,\"_20\":348},{\"_322\":350,\"_20\":351},{\"_322\":353,\"_20\":354},{\"_322\":357,\"_20\":358},{\"_322\":361,\"_20\":362},{\"_322\":364,\"_20\":365},\"/storage/v1/object/public/halfred/buildings/4be75758-8c6b-4978-bd5b-913caf5ca0f4/image8-2.jpg\",{\"_43\":776,\"_140\":141,\"_212\":120,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":298,\"_153\":966,\"_179\":967,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":968},{\"_43\":762,\"_140\":141,\"_212\":120,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":287,\"_153\":963,\"_179\":964,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":965},{\"_43\":750,\"_140\":186,\"_212\":120,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":276,\"_153\":960,\"_179\":961,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":962},{\"_43\":738,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":265,\"_153\":957,\"_179\":958,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":959},{\"_43\":728,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":254,\"_153\":954,\"_179\":955,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":956},{\"_43\":719,\"_140\":141,\"_212\":118,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":243,\"_153\":951,\"_179\":952,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":953},{\"_43\":710,\"_140\":141,\"_212\":118,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":421,\"_153\":948,\"_179\":949,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":950},{\"_43\":698,\"_140\":186,\"_212\":118,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":231,\"_153\":945,\"_179\":946,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":947},{\"_43\":686,\"_140\":186,\"_212\":118,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":214,\"_153\":942,\"_179\":943,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":944},{\"_43\":671,\"_140\":185,\"_212\":118,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":383,\"_153\":939,\"_179\":940,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":941},{\"_43\":656,\"_140\":141,\"_212\":187,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":657,\"_153\":936,\"_179\":937,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":938},{\"_43\":645,\"_140\":185,\"_212\":187,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":646,\"_153\":933,\"_179\":934,\"_158\":53,\"_217\":627,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":935},{\"_43\":591,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":287,\"_153\":929,\"_179\":930,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":931,\"_36\":932},{\"_43\":580,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":276,\"_153\":925,\"_179\":926,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":927,\"_36\":928},{\"_43\":569,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":265,\"_153\":921,\"_179\":922,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":923,\"_36\":924},{\"_43\":558,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":254,\"_153\":917,\"_179\":918,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":919,\"_36\":920},{\"_43\":547,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":214,\"_153\":913,\"_179\":914,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":915,\"_36\":916},{\"_43\":535,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":383,\"_153\":909,\"_179\":910,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":911,\"_36\":912},{\"_43\":524,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":525,\"_153\":906,\"_179\":907,\"_158\":53,\"_217\":513,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":908},{\"_43\":476,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":298,\"_153\":902,\"_179\":903,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":904,\"_36\":905},{\"_43\":465,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":287,\"_153\":898,\"_179\":899,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":900,\"_36\":901},{\"_43\":454,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":276,\"_153\":894,\"_179\":895,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":896,\"_36\":897},{\"_43\":443,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":265,\"_153\":890,\"_179\":891,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":892,\"_36\":893},{\"_43\":432,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":254,\"_153\":886,\"_179\":887,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":888,\"_36\":889},{\"_43\":420,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":421,\"_153\":882,\"_179\":883,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":884,\"_36\":885},{\"_43\":409,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":231,\"_153\":878,\"_179\":879,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":880,\"_36\":881},{\"_43\":397,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":214,\"_153\":874,\"_179\":875,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":876,\"_36\":877},{\"_43\":382,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":383,\"_153\":870,\"_179\":871,\"_158\":53,\"_217\":367,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":872,\"_36\":873},{\"_43\":297,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":298,\"_153\":867,\"_179\":868,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":869},{\"_43\":286,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":287,\"_153\":864,\"_179\":865,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":866},{\"_43\":275,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":276,\"_153\":861,\"_179\":862,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":863},{\"_43\":264,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":265,\"_153\":858,\"_179\":859,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":860},{\"_43\":253,\"_140\":185,\"_212\":-5,\"_177\":183,\"_172\":118,\"_174\":118,\"_213\":254,\"_153\":855,\"_179\":856,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":857},{\"_43\":241,\"_140\":141,\"_212\":-5,\"_177\":242,\"_172\":187,\"_174\":118,\"_213\":243,\"_153\":852,\"_179\":853,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":854},{\"_43\":230,\"_140\":186,\"_212\":-5,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":231,\"_153\":849,\"_179\":850,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":851},{\"_43\":211,\"_140\":186,\"_212\":118,\"_177\":184,\"_172\":187,\"_174\":118,\"_213\":214,\"_153\":846,\"_179\":847,\"_158\":53,\"_217\":192,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":848},[224,225,226,227,228,229],[\"D\",1785542400000],[],[235,236,237,238,239,240],[\"D\",1782864000000],[],[247,248,249,250,251,252],[\"D\",1782864000000],[],[258,259,260,261,262,263],[\"D\",1775001600000],[],[269,270,271,272,273,274],[\"D\",1782864000000],[],[280,281,282,283,284,285],[\"D\",1782864000000],[],[291,292,293,294,295,296],[\"D\",1782864000000],[],[302,303,304,305,306,307],[\"D\",1782864000000],[],[390,391,392,393,394,395,396],[\"D\",1775001600000],{\"_177\":388,\"_33\":389},[],[403,404,405,406,407,408],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],[414,415,416,417,418,419],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],[427,428,429,430,431],[\"D\",1775001600000],{\"_177\":426,\"_33\":389},[],[437,438,439,440,441,442],[\"D\",1777593600000],{\"_177\":388,\"_33\":389},[],[448,449,450,451,452,453],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],[459,460,461,462,463,464],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],[470,471,472,473,474,475],[\"D\",1775001600000],{\"_177\":426,\"_33\":389},[],[482,483,484,485,486,487],[\"D\",1775001600000],{\"_177\":481,\"_33\":389},[],[529,530,531,532,533,534],[\"D\",1775001600000],[],[540,541,542,543,544,545,546],[\"D\",1775001600000],{\"_177\":388,\"_33\":389},[],[552,553,554,555,556,557],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],[563,564,565,566,567,568],[\"D\",1775001600000],{\"_177\":388,\"_33\":389},[],[574,575,576,577,578,579],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],[585,586,587,588,589,590],[\"D\",1775001600000],{\"_177\":402,\"_33\":389},[],[596,597,598,599,600,601],[\"D\",1775001600000],{\"_177\":426,\"_33\":389},[],[650,651,652,653,654,655],[\"D\",1793491200000],[],[661,662,663,664,665,666,667,668,669,670],[\"D\",1793491200000],[],[675,676,677,678,679,680,681,682,683,684,685],[\"D\",1793491200000],[],[690,691,692,693,694,695,696,697],[\"D\",1793491200000],[],[702,703,704,705,706,707,708,709],[\"D\",1793491200000],[],[714,715,716,717,718],[\"D\",1793491200000],[],[723,724,725,726,727],[\"D\",1793491200000],[],[732,733,734,735,736,737],[\"D\",1793491200000],[],[742,743,744,745,746,747,748,749],[\"D\",1793491200000],[],[754,755,756,757,758,759,760,761],[\"D\",1783641600000],[],[766,767,768,769,770,771,772,773,774,775],[\"D\",1794268800000],[],[780,781,782,783,784],[\"D\",1793491200000],[],\"custom\",[],\"system\",{\"_973\":974,\"_975\":976,\"_977\":978,\"_979\":980,\"_981\":982,\"_983\":984},\"pets\",{\"_985\":53},\"budgetRange\",{\"_985\":53},\"parkingType\",{\"_985\":53},\"parkingCount\",{\"_985\":53},\"apartmentTypes\",{\"_985\":53},\"moveInTimeline\",{\"_985\":53},\"isEnabled\",\"/storage/v1/object/public/halfred/buildings/2d62bd54-52b0-4ead-b2ee-2c2f3c09e37e/image8-2.jpg\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null}},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"NEW RENTAL PROJECT IN CHELSEA – ALL INCLUSIVE\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"brand-new apartments among the most spacious in Chelsea\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", featuring \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"oversized balconies\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and designed for a lifestyle that blends \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"nature, comfort, and modern living\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Located just minutes from Gatineau and Ottawa, this is where \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"peaceful surroundings meet everyday convenience\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Units designed to impress:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• High-quality new construction\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"All-inclusive living\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\": heat, electricity, hot water \u0026 internet\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Full set of appliances included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Bright open spaces with large windows\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Modern, high-end finishes\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Oversized private balconies\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Air conditioning for year-round comfort\\\"}]},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Parking options:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Outdoor: $75/month\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Indoor garage with integrated storage: $150/month\\\"}]},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"An unbeatable location:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Set in the heart of Chelsea, enjoy a peaceful environment surrounded by nature, with easy access to \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"trails, bike paths, local shops, and essential services\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"The perfect balance between \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"outdoor living and city access\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Don’t miss this opportunity!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Units are in high demand—contact us today to schedule your visit.\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null}},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"NOUVEAU PROJET LOCATIF À CHELSEA – TOUT INCLUS\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez des \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"logements neufs parmi les plus spacieux de Chelsea\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", avec \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"balcons surdimensionnés\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", dans un environnement unique alliant \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"nature, confort et modernité\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"À seulement quelques minutes de Gatineau et d’Ottawa, profitez d’un mode de vie recherché, où \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"tranquillité et accessibilité\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" se rencontrent.\\\"}]},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Des unités pensées pour vous impressionner :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Construction neuve de qualité supérieure\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Tout inclus\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" : chauffage, électricité, eau chaude et internet\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Électroménagers complets inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Espaces lumineux avec grandes fenêtres\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Finitions modernes et haut de gamme\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Balcon privé surdimensionné\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Climatisation pour un confort optimal\\\"}]},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Stationnement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Extérieur : 75$/mois\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Intérieur (garage) avec rangement intégré : 150$/mois\\\"}]},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Un emplacement exceptionnel :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Situé au cœur de Chelsea, profitez d’un cadre paisible entouré de nature, à proximité des \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"sentiers, pistes cyclables, commerces locaux et services essentiels\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Un parfait équilibre entre \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"plein air et vie urbaine\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"horizontalRule\\\"},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ne manquez pas cette opportunité unique!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Les unités sont en forte demande. Contactez-nous dès maintenant pour planifier votre visite.\\\"}]}]}\",{\"_23\":24,\"_25\":1323,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":1324,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_177\":1106,\"_1107\":1108,\"_1109\":1110,\"_140\":1111,\"_212\":1112,\"_1113\":53,\"_174\":1114,\"_172\":1115,\"_1116\":51,\"_1117\":53,\"_1118\":1119,\"_1120\":1121},\"defaultView\",\"count\",\"filters\",{},\"configs\",{\"_1003\":1004,\"_1005\":1006,\"_1007\":1008,\"_1009\":1010,\"_1011\":1004,\"_1012\":1013,\"_1014\":1015},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[1092],\"analysisProductsPrice\",{\"_1092\":1093,\"_1094\":1095,\"_1096\":1097,\"_1098\":1099,\"_1100\":1097,\"_1101\":1097,\"_1102\":1103,\"_1104\":1105},\"notifications\",{\"_1074\":1075},\"form\",{\"_1067\":53,\"_1068\":51,\"_1069\":53,\"_1070\":53,\"_1071\":51,\"_1072\":51,\"_1073\":51},\"enabledSkus\",\"submissions\",{\"_1017\":1018,\"_1019\":1020,\"_1021\":1022,\"_1023\":1024,\"_27\":1025,\"_1026\":-5},\"agent\",{\"_1016\":51},\"hideAgentNewSubmissionBtn\",\"all\",[1053,1054,1055,1056,1057,1058,1059,1063,1064,1065,1066],\"steps\",[1053,1054,1055,1056,1057,1058,1059],\"badges\",[1043,1044,1045,1046,1047,1048],\"statuses\",[1037,1027,1029,1031,1033,1035,1038,1039,1040,1041,1042],{\"_1027\":1028,\"_1029\":1030,\"_1031\":1032,\"_1033\":1034,\"_1035\":1036},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_1049\":1027,\"_1051\":1028},{\"_1049\":1029,\"_1051\":1030},{\"_1049\":1031,\"_1051\":1032},{\"_1049\":1033,\"_1051\":1034},{\"_1049\":1035,\"_1051\":1036},{\"_1049\":1050,\"_1051\":1052},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_1049\":1037,\"_1051\":-5,\"_1060\":51},{\"_1049\":1027,\"_1051\":1028,\"_1060\":53,\"_1061\":51,\"_1062\":51},{\"_1049\":1029,\"_1051\":1030,\"_1060\":53,\"_1061\":51,\"_1062\":51},{\"_1049\":1031,\"_1051\":1032,\"_1060\":53,\"_1061\":51,\"_1062\":51},{\"_1049\":1033,\"_1051\":1034,\"_1060\":53,\"_1061\":51,\"_1062\":51},{\"_1049\":1035,\"_1051\":1036,\"_1060\":53,\"_1061\":51,\"_1062\":51},{\"_1049\":1038,\"_1051\":-5,\"_1060\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_1049\":1039,\"_1051\":-5,\"_1060\":51},{\"_1049\":1040,\"_1051\":-5,\"_1060\":51},{\"_1049\":1041,\"_1051\":-5,\"_1060\":51},{\"_1049\":1042,\"_1051\":-5,\"_1060\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_1014\":1076,\"_1077\":1078,\"_17\":1079,\"_1080\":1081},[1089,1090,1091],\"manager\",[],[1083,1084,1085,1086,1087,1088],\"admin\",[1082],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,[118,1322],\"pricePerMonth\",[118,1322],\"pricePerSqft\",[120,120],[120,1321],[1320,1142],\"hasFloor\",[120,187],[120,1319],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199],\"availableNeighborhoods\",[1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139],{\"_1140\":1165,\"_995\":118},{\"_1140\":1164,\"_995\":118},{\"_1140\":1163,\"_995\":118},{\"_1140\":1161,\"_995\":1162},{\"_1140\":1160,\"_995\":118},{\"_1140\":1159,\"_995\":187},{\"_1140\":1157,\"_995\":1158},{\"_1140\":96,\"_995\":1156},{\"_1140\":1154,\"_995\":1155},{\"_1140\":1153,\"_995\":187},{\"_1140\":1152,\"_995\":118},{\"_1140\":1150,\"_995\":1151},{\"_1140\":1149,\"_995\":118},{\"_1140\":1147,\"_995\":1148},{\"_1140\":1146,\"_995\":187},{\"_1140\":1145,\"_995\":118},{\"_1140\":1143,\"_995\":1144},{\"_1140\":1141,\"_995\":1142},\"name\",\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",5,\"Plateau \",\"Plateau\",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"2\",\"1\",{\"_43\":1315,\"_1140\":1316,\"_38\":1218},{\"_43\":1310,\"_1140\":1311,\"_38\":1312},{\"_43\":1308,\"_1140\":1309,\"_38\":356},{\"_43\":1306,\"_1140\":1307,\"_38\":321},{\"_43\":1301,\"_1140\":1302,\"_38\":1303},{\"_43\":1297,\"_1140\":1298,\"_38\":356},{\"_43\":1292,\"_1140\":1293,\"_38\":1294},{\"_43\":1288,\"_1140\":1289,\"_38\":1256},{\"_43\":1286,\"_1140\":1287,\"_38\":321},{\"_43\":1284,\"_1140\":1285,\"_38\":334},{\"_43\":1282,\"_1140\":1283,\"_38\":326},{\"_43\":1280,\"_1140\":1281,\"_38\":356},{\"_43\":1278,\"_1140\":1279,\"_38\":360},{\"_43\":1276,\"_1140\":1277,\"_38\":342},{\"_43\":1274,\"_1140\":1275,\"_38\":346},{\"_43\":1272,\"_1140\":1273,\"_38\":342},{\"_43\":1270,\"_1140\":1271,\"_38\":338},{\"_43\":1268,\"_1140\":1269,\"_38\":330},{\"_43\":1263,\"_1140\":1264,\"_38\":1265},{\"_43\":1259,\"_1140\":1260,\"_38\":1256},{\"_43\":1254,\"_1140\":1255,\"_38\":1256},{\"_43\":1250,\"_1140\":1251,\"_38\":360},{\"_43\":1246,\"_1140\":1247,\"_38\":1248},{\"_43\":1242,\"_1140\":1243,\"_38\":360},{\"_43\":1238,\"_1140\":1239,\"_38\":326},{\"_43\":1234,\"_1140\":1235,\"_38\":1218},{\"_43\":1230,\"_1140\":1231,\"_38\":330},{\"_43\":1226,\"_1140\":1227,\"_38\":342},{\"_43\":1221,\"_1140\":1222,\"_38\":1223},{\"_43\":1216,\"_1140\":1217,\"_38\":1218},{\"_43\":1212,\"_1140\":1213,\"_38\":321},{\"_43\":1208,\"_1140\":1209,\"_38\":1210},{\"_43\":1204,\"_1140\":1205,\"_38\":326},{\"_43\":1200,\"_1140\":1201,\"_38\":356},\"counter-type\",{\"_322\":1202,\"_20\":1203},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_322\":1206,\"_20\":1207},\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_322\":1211,\"_20\":1211},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_322\":1214,\"_20\":1215},\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_322\":1219,\"_20\":1220},\"lucide:car\",\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_322\":1224,\"_20\":1225},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_322\":1228,\"_20\":1229},\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_322\":1232,\"_20\":1233},\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_322\":1236,\"_20\":1237},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_322\":1240,\"_20\":1241},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_322\":1244,\"_20\":1245},\"Dryer\",\"Sèche-linge\",\"gym\",{\"_322\":1249,\"_20\":1249},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_322\":1252,\"_20\":1253},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_322\":1257,\"_20\":1258},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_322\":1261,\"_20\":1262},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_322\":1266,\"_20\":1267},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_322\":331,\"_20\":332},\"refrigerator\",{\"_322\":339,\"_20\":340},\"cable\",{\"_322\":343,\"_20\":344},\"stove\",{\"_322\":347,\"_20\":348},\"fiber-internet\",{\"_322\":350,\"_20\":351},\"washer\",{\"_322\":361,\"_20\":362},\"elevator\",{\"_322\":364,\"_20\":365},\"balcony\",{\"_322\":327,\"_20\":328},\"electricity\",{\"_322\":335,\"_20\":336},\"electric-heating\",{\"_322\":323,\"_20\":324},\"cats-allowed\",{\"_322\":1290,\"_20\":1291},\"Cats Allowed\",\"Chats autorisés\",\"blinds\",{\"_322\":1295,\"_20\":1296},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_322\":1299,\"_20\":1300},\"Water Tank\",\"Réservoir d'eau\",\"washer-dryer-outlet\",{\"_322\":1304,\"_20\":1305},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"central-air-conditioning\",{\"_322\":353,\"_20\":354},\"dishwasher\",{\"_322\":357,\"_20\":358},\"water\",{\"_322\":1313,\"_20\":1314},\"lucide:droplet\",\"Water\",\"Eau\",\"parking\",{\"_322\":1317,\"_20\":1318},\"Parking\",\"Stationnement\",4,-1,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_1049\":1351,\"_43\":44,\"_1352\":1353,\"_48\":49,\"_33\":34,\"_27\":28,\"_1354\":1355,\"_23\":24,\"_29\":30,\"_1005\":1356,\"_1357\":1358,\"_1359\":1360,\"_1361\":1362,\"_40\":41,\"_1363\":1364,\"_1365\":1366,\"_42\":-5,\"_1367\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_1368\":-5,\"_1369\":-5,\"_998\":999,\"_1370\":1371,\"_1372\":1373,\"_1374\":1375,\"_38\":39,\"_1376\":1377,\"_35\":-7,\"_1378\":1379,\"_36\":1380,\"_1381\":1382,\"_1383\":1384,\"_25\":1385,\"_1003\":1386,\"_1387\":1388,\"_1389\":1390},\"toast\",\"user\",{\"_1337\":51,\"_1338\":-5,\"_1339\":-5,\"_1340\":-5,\"_1341\":-5,\"_1342\":-5,\"_1343\":-5,\"_1344\":-5,\"_1345\":-5,\"_1346\":-5,\"_62\":-5,\"_64\":-5,\"_1347\":-5,\"_138\":51,\"_1348\":51,\"_1349\":-5,\"_1350\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":1474},\"social\",{\"_1471\":1472,\"_1473\":72},{\"_1092\":1093,\"_1094\":1095,\"_1096\":1097,\"_1098\":1099,\"_1100\":1097,\"_1101\":1097,\"_1102\":1103,\"_1104\":1105},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_1468\":1430,\"_1035\":53,\"_1469\":51,\"_1470\":1425},\"plan\",{\"_1140\":1449,\"_1450\":72,\"_1451\":1452,\"_1453\":1454,\"_1455\":1456,\"_1457\":1458,\"_1459\":120,\"_1460\":1461,\"_1462\":120,\"_1463\":1464,\"_1465\":1156,\"_1466\":1467},\"metadata\",{\"_25\":1385},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_1442\":1443,\"_1357\":1358,\"_1444\":1445,\"_40\":41,\"_1446\":1447,\"_67\":1448},\"bucket\",{\"_1439\":44,\"_1440\":1441},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_1330\":1436,\"_1437\":1438},\"tosHistory\",[1425],{\"_1399\":53,\"_1400\":-7,\"_52\":53,\"_1401\":51,\"_1402\":51,\"_1403\":53,\"_1404\":53,\"_1405\":51,\"_1406\":51,\"_1407\":-7,\"_1408\":51,\"_1409\":51,\"_1410\":51,\"_1411\":1412,\"_1413\":51,\"_1016\":51,\"_1414\":-7,\"_1415\":-7,\"_1416\":-7,\"_1417\":51,\"_50\":51,\"_1418\":51,\"_54\":51,\"_1419\":1420,\"_1421\":53,\"_1422\":51,\"_1423\":51,\"_1424\":51},\"disabledModules\",[],\"banner\",{\"_322\":1397,\"_20\":1398},{\"_103\":104,\"_1395\":1396,\"_101\":102,\"_105\":106},[1092],\"payments\",{\"_1391\":53,\"_1392\":53,\"_1393\":51,\"_1394\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_1426\":1427,\"_1428\":1429,\"_1389\":1430,\"_1035\":53,\"_1033\":1431,\"_1432\":1433,\"_1434\":1435},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_1475\":1476},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
added tests/fixtures/halfred/7f7bb1fc1a1c7fffbac1.html +1047 −0
@@ -0,0 +1,1047 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png?width=1024&amp;height=1280&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/1287ea6c-22e9-4b93-a666-f653a0011b08/10.jpg?width=232&amp;height=168&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 44 Rue De Matapédia, Gatineau</title><meta name="description" content="🔥 Beau logement à louer à Gatineau – Emplacement idéal! 🔥 Découvrez ce charmant logement idéalement situé à Gatineau, parfait pour étudiants, jeunes prof..."/><meta property="og:title" content="Halfred | Apartment rentals | 44 Rue De Matapédia, Gatineau"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="🔥 Beau logement à louer à Gatineau – Emplacement idéal! 🔥 Découvrez ce charmant logement idéalement situé à Gatineau, parfait pour étudiants, jeunes prof..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png"/><meta property="og:url" content="https://www.halfred.ca/fr/listings/44-rue-de-matapedia/details"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/44-rue-de-matapedia/details"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/44-rue-de-matapedia/details"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/44-rue-de-matapedia/details"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/44-rue-de-matapedia/details"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/listing-detail.page-Bodk8trl.js"/><link rel="modulepreload" href="/assets/detail-error-boundary-C3TWahqB.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="39aba8f0b236a7b01651813be37cfa8e-127fc58153e7e0b5-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=39aba8f0b236a7b01651813be37cfa8e,sentry-org_id=476518,sentry-transaction=GET%20%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.4813631242570581,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="max-lg:hidden order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex"><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Retour à la liste</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="px-3.5" data-sentry-component="EditorialDetailsPage" data-sentry-source-file="details.tsx"><main class="mx-auto max-w-[1320px] px-1 pb-10 pt-3 sm:px-[clamp(20px,4.5vw,64px)] sm:pb-[clamp(48px,5.5vw,84px)] sm:pt-[clamp(24px,3.2vw,44px)]"><div class="flex flex-wrap items-start gap-x-[clamp(40px,5vw,72px)] gap-y-7 sm:gap-y-14 lg:flex-nowrap"><div class="order-2 min-w-0 max-w-[660px] flex-[1_1_440px] lg:order-1"><div data-ed-rise="true" class="ed-kicker mb-2 sm:mb-3">Gatineau · Gatineau</div><h1 class="ed-serif m-0 mb-5 overflow-hidden pb-[0.05em] text-[length:var(--ed-text-h1)] font-medium leading-[1.12] tracking-[-0.012em] text-[var(--ed-ink)] sm:mb-6"><span data-ed-mask="true" class="block">44 Rue De Matapédia</span></h1><div data-ed-rise="4" class="mb-8 sm:mb-10" id="details-cta"><div data-sentry-component="ConversionRail" data-sentry-source-file="conversion-rail.tsx"><div class="flex flex-col items-stretch gap-2.5 sm:flex-row sm:flex-wrap sm:items-center sm:gap-3"><a href="#units" class="inline-flex w-full min-h-12 items-center justify-center gap-2.5 rounded-full bg-[var(--ed-ink)] px-7 py-1 shadow-[0_8px_20px_rgba(26,26,23,0.16)] transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto"><span class="text-[14px] font-semibold leading-snug text-white"><span class="whitespace-nowrap">Postuler en ligne</span></span><span></span></a><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div></div></div><div data-ed-rise="5"><div data-sentry-component="HomeTypeRows" data-sentry-source-file="home-types.tsx"><div class="ed-kicker mb-2 text-[10.5px] tracking-[0.13em]">Logements disponibles</div><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">2 chambres</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">1 disponible</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,000<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a></div></div><div data-ed-rise="9" class="mt-8 sm:mt-10"><div class="text-[length:var(--ed-text-copy)] leading-[var(--ed-copy-leading)] text-[var(--ed-body)] [&amp;_p:empty]:hidden [&amp;_p:has(&gt;br:only-child)]:hidden line-clamp-4"><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Beautiful Apartment for Rent in Gatineau – Prime Location!</strong> 🔥</p><p>Discover this charming apartment ideally located in Gatineau, perfect for students, young professionals, or anyone looking for a practical and well-located living space.</p><p>📍 <strong>Prime location:</strong><br>• Close to Vérendrye and Gréber streets<br>• Quick access to Highway 50<br>• 🚗 Only 5 minutes from Cégep de l’Outaouais (Félix-Leclerc campus)<br>• 🛍️ Near Les Promenades Gatineau, shops, and essential services</p><p>🏡 <strong>What this unit offers:</strong><br>• 🚗 1 parking space included<br>• 🧺 Laundry facilities in the building<br>• Comfortable and functional living space</p><p>💡 <strong>Why you’ll love it:</strong><br>Enjoy a convenient location with quick access to schools, transportation, shops, and restaurants.</p><p>📌 <strong>Important details:</strong><br>⚡ Not heated / not electricity included<br>❌ No pets allowed<br>📋 Credit check required</p><p>📞 Contact <strong>Halfred</strong> today at <strong>819-593-3304</strong> for more information or to schedule your visit!</p></div></div></div></div></div><!--$?--><template id="B:0"></template><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water Tank</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Laundry Room</span></div><!--/$--><div data-ed-rise="9" class="mt-6 sm:mt-8"><div data-sentry-component="ContactPanel" data-sentry-source-file="conversion-rail.tsx"><div class="rounded-[18px] border border-[var(--ed-hairline)] bg-[var(--ed-card-alt)] p-4 sm:p-5" data-sentry-component="ContactActions" data-sentry-source-file="conversion-rail.tsx"><div class="mb-4 flex items-center gap-3"><span class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-chip)] text-[13px] font-semibold tracking-[0.02em] text-[var(--ed-strong)]">H|</span><span class="min-w-0"><span class="block truncate text-[15px] font-semibold text-[var(--ed-ink)]">Halfred | Apartment rentals</span><span class="block text-[12.5px] text-[var(--ed-secondary)]">Gestionnaire immobilier</span></span></div><div class="flex flex-wrap gap-2"><a href="mailto:info@halfred.ca" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full bg-[var(--ed-ink)] px-4 text-[13.5px] font-medium text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto sm:flex-1"><span></span>Message</a><a href="tel:(819) 593-3304" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[13.5px] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)] sm:w-auto sm:flex-1"><span></span><span class="truncate">Appeler (819) 593-3304</span></a></div><form class="mt-2.5 flex items-center gap-2" data-sentry-component="QuickQuestion" data-sentry-source-file="conversion-rail.tsx"><input type="text" placeholder="Or ask a quick question…" class="h-10 min-w-0 flex-1 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[16px] text-[var(--ed-ink)] outline-none transition-colors placeholder:text-[var(--ed-tertiary)] focus:border-[var(--ed-ink)] sm:text-[13.5px]" value=""/><button type="submit" aria-label="Send your question" class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form></div><div class="mt-6 border-t border-[var(--ed-hairline)]" data-sentry-component="FeesDisclosure" data-sentry-source-file="conversion-rail.tsx"><button type="button" aria-expanded="false" class="flex w-full items-center justify-between gap-3 py-3.5 text-left"><span class="text-[15px] font-medium text-[var(--ed-ink)]">Frais et politiques</span><span></span></button></div></div></div><div data-ed-rise="10" id="amenities" class="mt-8 scroll-mt-[calc(var(--ed-header-h,0px)+16px)] sm:mt-10"><div class="ed-kicker mb-5">Commodités</div><div class="grid grid-cols-1 gap-x-8 gap-y-3 text-[15px] text-[var(--ed-strong)] sm:grid-cols-2 sm:gap-y-4 sm:text-[15.5px]"><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Parking</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water Tank</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Laundry Room</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Cats Allowed</div></div></div></div><div class="order-1 min-w-0 flex-[1.15_1_480px] lg:sticky lg:top-[92px] lg:order-2 lg:self-start" data-sentry-component="GalleryCollage" data-sentry-source-file="gallery-collage.tsx"><div class="-mx-[1.125rem] flex snap-x snap-mandatory gap-3 overflow-x-auto px-[1.125rem] pb-1 sm:hidden"><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-full" href="/fr/listings/44-rue-de-matapedia/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png?width=800&amp;height=520&amp;quality=80" alt="44 Rue De Matapédia" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="hidden sm:block"><a data-ed-img="true" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[20px]" style="aspect-ratio:4/5" data-sentry-element="RemixLink" data-sentry-source-file="gallery-collage.tsx" href="/fr/listings/44-rue-de-matapedia/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png?width=1024&amp;height=1280&amp;quality=80" alt="44 Rue De Matapédia" data-ed-imgzoom="true" class="absolute inset-0 h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/><div class="absolute bottom-3.5 right-3.5 flex items-center gap-2 rounded-full bg-[rgba(26,26,23,0.78)] px-3.5 py-2"><span></span><span class="text-[13px] font-semibold text-white">1 photo</span></div></a></div></div></div><div id="units" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t pt-[var(--ed-section-pad)] border-[var(--ed-hairline)]"><div data-ed-reveal="true" class="flex flex-wrap items-baseline justify-between gap-x-4 gap-y-0.5 sm:flex-nowrap sm:items-end mb-2"><h2 tabindex="-1" class="ed-serif m-0 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] outline-none">Choisissez votre unité</h2><span class="whitespace-nowrap text-[14.5px] text-[var(--ed-secondary)]">1 sur 1 disponibles</span></div><div class="mb-5 text-[length:var(--ed-text-lede)] text-[var(--ed-secondary)] sm:mb-7">Sélectionnez le logement souhaité, puis cliquez sur Postuler sur sa ligne.</div><div class="mb-5 sm:mb-7"><div class="flex flex-col gap-2 sm:flex-row sm:flex-wrap sm:items-center" data-sentry-component="UnitsToolbar" data-sentry-source-file="units-toolbar.tsx"><label class="flex h-10 w-full items-center gap-2 rounded-full border border-[var(--ed-border)] bg-white pl-3.5 pr-3 transition-colors focus-within:border-[var(--ed-ink)] sm:h-9 sm:w-auto sm:min-w-[190px] sm:max-w-[260px] sm:flex-none"><span></span><input type="search" placeholder="Search homes" class="w-full min-w-0 bg-transparent text-[16px] text-[var(--ed-ink)] outline-none placeholder:text-[var(--ed-tertiary)] sm:text-[13.5px]" value=""/></label><div class="ed-scroll-rail -mx-[1.125rem] flex items-center gap-2 overflow-x-auto px-[1.125rem] sm:contents"><button type="button" data-type-chip="all" aria-pressed="true" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-transparent bg-[var(--ed-ink)] font-medium text-white">Tous les types</button><button type="button" data-type-chip="bed-2" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">2 chambres<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">1</span></button><button type="button" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Disponible maintenant</button><span class="inline-flex shrink-0 items-center gap-1.5" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Dates d&#x27;emménagement</button></span></div></div></div><div class="flex flex-col gap-6 sm:gap-8" data-sentry-component="UnitGroupsSection" data-sentry-source-file="unit-groups.tsx"><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2 sm:mb-3"><span class="ed-serif text-[var(--ed-ink)] text-[length:var(--ed-text-h3)]">2 chambres</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-thumb-w:68px] hover:bg-[var(--ed-hover-fill)] sm:px-4 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[58px] rounded-[12px] sm:h-[62px] block" href="/fr/listings/44-rue-de-matapedia/details/gallery?unit=1287ea6c-22e9-4b93-a666-f653a0011b08" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/1287ea6c-22e9-4b93-a666-f653a0011b08/10.jpg?width=232&amp;height=168&amp;quality=80" alt="21" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">7 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">21</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>900 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 5 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->2</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,295</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,000</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div><a class="ed-unit-chev inline-flex h-10 items-center gap-1.5 whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-4 text-[13.5px] font-semibold text-[var(--ed-ink)] transition-colors hover:bg-[var(--ed-ink)] hover:text-white sm:h-9" href="/fr/listings/1287ea6c-22e9-4b93-a666-f653a0011b08/apply/personal" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div id="location" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t border-[var(--ed-hairline)] pt-[var(--ed-section-pad)]"><h2 data-ed-reveal="true" class="ed-serif m-0 mb-6 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] sm:mb-8">Emplacement</h2><div class="flex flex-wrap items-stretch gap-6 sm:gap-9"><!--$?--><template id="B:1"></template><!--/$--><div data-ed-reveal="true" class="relative min-h-[260px] flex-1 basis-[420px] overflow-hidden rounded-[18px] border border-[var(--ed-hairline)] bg-[#efede6] sm:min-h-[320px]" data-sentry-component="EditorialMap" data-sentry-source-file="location.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div aria-hidden="true" class="absolute left-1/2 top-[48%] -translate-x-1/2 -translate-y-full"><svg width="40" height="40" viewBox="0 0 24 24" fill="#1A1A17" stroke="#fff" stroke-width="1.4" role="presentation" data-sentry-element="svg" data-sentry-component="InkPin" data-sentry-source-file="location.tsx"><path d="M12 22s-7-7.2-7-12a7 7 0 1 1 14 0c0 4.8-7 12-7 12z" data-sentry-element="path" data-sentry-source-file="location.tsx"></path><circle cx="12" cy="10" r="2.4" fill="#fff" stroke="none" data-sentry-element="circle" data-sentry-source-file="location.tsx"></circle></svg></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div class="ed-caption ed-caption-on-map pointer-events-none absolute bottom-3.5 left-4 rounded-full bg-white/85 px-3 py-1.5 backdrop-blur-[2px]">GATINEAU, GATINEAU</div></div></div><a href="https://www.google.com/maps/dir/?api=1&amp;destination=45.483733,-75.704144" target="_blank" rel="noopener noreferrer" class="mt-2.5 inline-block py-2.5 text-[14.5px] text-[var(--ed-secondary)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink)] sm:mt-5 sm:py-0" data-sentry-component="EditorialDirectionsLink" data-sentry-source-file="location.tsx">Obtenir l&#x27;itinéraire<!-- --> ↗</a></div></main><div aria-hidden="true" class="sticky bottom-[calc(var(--footer-height)+env(safe-area-inset-bottom))] z-40 -mx-3.5 border-t border-[var(--ed-band-line)] bg-white px-3.5 transition-[transform,visibility] duration-300 lg:bottom-0 pointer-events-none invisible translate-y-[110%]" data-sentry-component="DetailsActionBar" data-sentry-source-file="action-bar.tsx"><div class="mx-auto flex h-[var(--ed-action-bar-height)] max-w-[1320px] items-center justify-between gap-3 px-1 sm:gap-4 sm:px-[clamp(20px,4.5vw,64px)]"><div class="min-w-0 overflow-hidden"><div class="truncate"><span class="text-[16px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[18px] lg:text-[19px]">À partir de $1,000</span><span class="hidden text-[13px] text-[var(--ed-secondary)] sm:inline"> <!-- -->/ mois</span></div></div><div class="flex shrink-0 items-center gap-5"><div class="hidden lg:block"><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div><a href="#units" class="inline-flex h-11 shrink-0 items-center gap-2 whitespace-nowrap rounded-full bg-[var(--ed-ink)] px-4 text-[14px] font-semibold text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:gap-2.5 sm:px-6 sm:text-[14.5px]"><span class="sm:hidden">Postuler</span><span class="hidden sm:inline">Postulez et réservez votre logement en ligne</span><span></span></a></div></div></div><div aria-hidden="true" data-testid="units-spotlight-scrim" class="fixed inset-0 z-[45] bg-[rgba(26,26,23,0.35)] transition-opacity duration-300 motion-reduce:transition-none pointer-events-none opacity-0" data-sentry-component="UnitsSpotlightScrim" data-sentry-source-file="units-spotlight.tsx"></div></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/listing-detail.page-Bodk8trl.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",
323 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
324 + "/assets/index-DGzYOEP8.js",
325 + "/assets/Item-DuavYi1u.js",
326 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
327 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
328 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
329 + "/assets/useControlledState-C6ovzWeF.js",
330 + "/assets/useField-CBKMx-DQ.js",
331 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
332 + "/assets/chunk-M3MASYO7-COH9P04M.js",
333 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
334 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
335 + "/assets/useToggleState-DY8z2i0t.js",
336 + "/assets/index-BzZ-MzUq.js",
337 + "/assets/useToggle-QKKEqo_x.js",
338 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
339 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
340 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
341 + "/assets/use-tenant-wE0zDJ1a.js",
342 + "/assets/use-debounce-D23YJQRM.js",
343 + "/assets/use-debounced-callback-Do1iUmMt.js",
344 + "/assets/locale-switcher-kD-MOI9x.js",
345 + "/assets/use-show-profile-modal-Cgfts1ut.js",
346 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
347 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
348 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
349 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
350 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
351 + "/assets/getItemCount-BQolBIkZ.js",
352 + "/assets/useSelectableItem-Ds0Ihirs.js",
353 + "/assets/useDescription-DF6TDnVi.js",
354 + "/assets/index-D8QbWu84.js",
355 + "/assets/useMenuTriggerState-CHKcWOlC.js",
356 + "/assets/useMenuTrigger-DKFjnCNZ.js",
357 + "/assets/show-BOEsnqQk.js",
358 + "/assets/index-BxwHZyk5.js",
359 + "/assets/use-screenshot-mode-RoZeXH-d.js",
360 + "/assets/storage-image-BRiFwsnF.js",
361 + "/assets/debug-build-VZlf1Aof.js",
362 + "/assets/empty-image-DeSmMdF3.js",
363 + "/assets/storage-JzkTKPy4.js",
364 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
365 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
366 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
367 + "/assets/use-auth-D_t8q_v4.js",
368 + "/assets/OtpInput-CJhAm1Gc.js",
369 + "/assets/roles-Cde3N6LE.js",
370 + "/assets/chunk-T45N425O-CCF24x8B.js",
371 + "/assets/index-CwlnhZHs.js",
372 + "/assets/tooltip-_QqyKTfK.js",
373 + "/assets/eversa-logo-DmkjJgjq.js",
374 + "/assets/exports-mapbox-Dy-MMXYe.js",
375 + "/assets/client-CpT78rmL.js",
376 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
377 + "/assets/useProgressBar-DhWwJb16.js",
378 + "/assets/index-Cy2bmlj7.js",
379 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
380 + "/assets/std-cron-C0Hf3jWh.js",
381 + "/assets/legacy-date-D-X4tG6T.js",
382 + "/assets/use-is-iframe-DIKEri2l.js",
383 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
384 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
385 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
386 + "/assets/link-CrZmIZC6.js",
387 + "/assets/rich-text-display--Qas76Hg.js",
388 + "/assets/utils-D0p-v41w.js",
389 + "/assets/signature-block-8SMePIUg.js",
390 + "/assets/index-DqzG1Q9x.js",
391 + "/assets/client-only-BGvaz0Jn.js",
392 + "/assets/use-hydrated-nn_6IPIK.js",
393 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
394 + "/assets/settings.types-CTRD0B_j.js",
395 + "/assets/input-CkQmsiJb.js",
396 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
397 + "/assets/extends-BSSSaanF.js",
398 + "/assets/user-menu-BuoWMPG0.js",
399 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
400 + "/assets/index-CRabYQb-.js",
401 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
402 + "/assets/Section-CaP3oBph.js",
403 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
404 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
405 + "/assets/LiveAnnouncer-CnNJa9NI.js",
406 + "/assets/useUpdateEffect-DsCDOPa2.js",
407 + "/assets/index-BT5H2sjL.js",
408 + "/assets/features-animation-BCPmlPPs.js",
409 + "/assets/index-8boKsGvQ.js",
410 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
411 + "/assets/use-server-command-DJ0CxbuT.js",
412 + "/assets/create-rpc-stub-SmqOCk37.js",
413 + "/assets/index-BoeY4VQ9.js",
414 + "/assets/app-form-CRPZmLNY.js",
415 + "/assets/button-KaTnxiWj.js",
416 + "/assets/spinner-DDyy7LQF.js",
417 + "/assets/zod-CmeTJI5u.js",
418 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
419 + "/assets/form-hidden-input-DI5aJPYE.js",
420 + "/assets/form-input-C6s4itpV.js",
421 + "/assets/system-preferences-DL4TO29S.js",
422 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
423 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
424 + "/assets/use-in-view-BNnh4L6M.js",
425 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js",
426 + "/assets/should-revalidate-for-modal-BjoLrI2F.js"
427 + ],
428 + "css": [
429 + "/assets/rich-text-editor-D9Rskyfk.css#",
430 + "/assets/listing-card-CI-uxcFh.css"
431 + ]
432 + },
433 + "PublicListingDetailPage": {
434 + "id": "PublicListingDetailPage",
435 + "parentId": "PublicListingsLayoutPage",
436 + "path": ":slug/details",
437 + "hasAction": false,
438 + "hasLoader": true,
439 + "hasClientAction": false,
440 + "hasClientLoader": false,
441 + "hasClientMiddleware": false,
442 + "hasDefaultExport": true,
443 + "hasErrorBoundary": true,
444 + "module": "/assets/listing-detail.page-Bodk8trl.js",
445 + "imports": [
446 + "/assets/chunk-QUQL4437-m7Whu12z.js",
447 + "/assets/jsx-runtime-umhk6iWe.js",
448 + "/assets/runtime-MtUT-9pW.js",
449 + "/assets/instance-Dwq5XJYG.js",
450 + "/assets/locale-rlhQ6FjN.js",
451 + "/assets/i18n-CTdcZBaW.js",
452 + "/assets/use-localized-path-BMxKZwMg.js",
453 + "/assets/detail-error-boundary-C3TWahqB.js",
454 + "/assets/seo.helpers-rKbdQkhM.js",
455 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
456 + "/assets/listing-card-Cg3TPyWe.js",
457 + "/assets/types-BKXG3Vd5.js",
458 + "/assets/date-C7fQmg2U.js",
459 + "/assets/format-BKStloXP.js",
460 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
461 + "/assets/formatDistanceToNow-BvwR-I5H.js",
462 + "/assets/paths-CiQnXl4X.js",
463 + "/assets/use-tenant-wE0zDJ1a.js",
464 + "/assets/icon-D77RBjQx.js",
465 + "/assets/index-blsAimsU.js",
466 + "/assets/chunk-T45N425O-CCF24x8B.js",
467 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
468 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
469 + "/assets/preload-helper-Cer9inx8.js",
470 + "/assets/index-DmhvH8SD.js",
471 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
472 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
473 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
474 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
475 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
476 + "/assets/runtime-TD3m583z.js",
477 + "/assets/exports-mapbox-Dy-MMXYe.js",
478 + "/assets/index-DJnVLKJF.js",
479 + "/assets/use-locale-BnwvbFV-.js",
480 + "/assets/show-BOEsnqQk.js",
481 + "/assets/client-CpT78rmL.js",
482 + "/assets/index-CXP4lC37.js",
483 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
484 + "/assets/useProgressBar-DhWwJb16.js",
485 + "/assets/number-lhSI2oqU.js",
486 + "/assets/useLabel-FzyH2LZi.js",
487 + "/assets/useLabels-BL4rQGMb.js",
488 + "/assets/useNumberFormatter-DG2VO0C1.js",
489 + "/assets/context-C7uvIu_A.js",
490 + "/assets/NumberFormatter-BWU_gJyt.js",
491 + "/assets/index-Cy2bmlj7.js",
492 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
493 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
494 + "/assets/mergeRefs-C8xtGVp3.js",
495 + "/assets/useControlledState-Dl_rDvO0.js",
496 + "/assets/FocusScope-CWuTxhav.js",
497 + "/assets/useField-CBKMx-DQ.js",
498 + "/assets/useFormValidation-BlL8vXtt.js",
499 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
500 + "/assets/std-cron-C0Hf3jWh.js",
501 + "/assets/legacy-date-D-X4tG6T.js",
502 + "/assets/listingTypes-CkyCgPCr.js",
503 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
504 + "/assets/useButton-DZK-beuH.js",
505 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
506 + "/assets/useOverlayTriggerState-woQJgDxB.js",
507 + "/assets/index-B915wqUE.js",
508 + "/assets/accelerated-values-ClBEnI7v.js",
509 + "/assets/useTreeState-Dx1W0YuM.js",
510 + "/assets/SelectionManager-BmJrKgY4.js",
511 + "/assets/scrollIntoView-BWAA50rI.js",
512 + "/assets/isScrollable-Dnxj3NSq.js",
513 + "/assets/useSelectableList-BOP0KhmN.js",
514 + "/assets/DOMLayoutDelegate-Brany3qe.js",
515 + "/assets/useCollator-CbJkpXG2.js",
516 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
517 + "/assets/index-DGzYOEP8.js",
518 + "/assets/Item-DuavYi1u.js",
519 + "/assets/use-is-iframe-DIKEri2l.js",
520 + "/assets/floor-label-CGeBlKR2.js",
521 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
522 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
523 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
524 + "/assets/storage-image-BRiFwsnF.js",
525 + "/assets/debug-build-VZlf1Aof.js",
526 + "/assets/empty-image-DeSmMdF3.js",
527 + "/assets/storage-JzkTKPy4.js",
528 + "/assets/link-CrZmIZC6.js",
529 + "/assets/modal-BG3X61k6.js",
530 + "/assets/modal-root-haL454LR.js",
531 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
532 + "/assets/useDialog-Bh9KG6MB.js",
533 + "/assets/VisuallyHidden-D-Q2SU4O.js",
534 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
535 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
536 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
537 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
538 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
539 + "/assets/proxy-BlmPTkqy.js",
540 + "/assets/create-visual-element-Cc1-iv7S.js",
541 + "/assets/layout-CqatgvGE.js",
542 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
543 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
544 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
545 + "/assets/index-DuhTrrt1.js",
546 + "/assets/useModal-C3khzgYn.js",
547 + "/assets/index-BxwHZyk5.js",
548 + "/assets/rich-text-display--Qas76Hg.js",
549 + "/assets/utils-D0p-v41w.js",
550 + "/assets/signature-block-8SMePIUg.js",
551 + "/assets/index-DqzG1Q9x.js",
552 + "/assets/client-only-BGvaz0Jn.js",
553 + "/assets/use-hydrated-nn_6IPIK.js",
554 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
555 + "/assets/chunk-M3MASYO7-COH9P04M.js",
556 + "/assets/settings.types-CTRD0B_j.js",
557 + "/assets/use-show-profile-modal-Cgfts1ut.js",
558 + "/assets/input-CkQmsiJb.js",
559 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
560 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
561 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
562 + "/assets/useControlledState-C6ovzWeF.js",
563 + "/assets/extends-BSSSaanF.js",
564 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
565 + "/assets/use-debounce-D23YJQRM.js",
566 + "/assets/use-debounced-callback-Do1iUmMt.js",
567 + "/assets/use-auth-D_t8q_v4.js",
568 + "/assets/OtpInput-CJhAm1Gc.js",
569 + "/assets/roles-Cde3N6LE.js",
570 + "/assets/index-CwlnhZHs.js",
571 + "/assets/index-BzZ-MzUq.js",
572 + "/assets/powered-by-eversa-BF980dJS.js",
573 + "/assets/tooltip-_QqyKTfK.js",
574 + "/assets/eversa-logo-DmkjJgjq.js",
575 + "/assets/use-screenshot-mode-RoZeXH-d.js",
576 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
577 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
578 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
579 + "/assets/getItemCount-BQolBIkZ.js",
580 + "/assets/useSelectableItem-Ds0Ihirs.js",
581 + "/assets/useDescription-DF6TDnVi.js",
582 + "/assets/index-D8QbWu84.js",
583 + "/assets/useMenuTriggerState-CHKcWOlC.js",
584 + "/assets/useMenuTrigger-DKFjnCNZ.js",
585 + "/assets/user-menu-BuoWMPG0.js",
586 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
587 + "/assets/index-CRabYQb-.js",
588 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
589 + "/assets/Section-CaP3oBph.js",
590 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
591 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
592 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
593 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
594 + "/assets/LiveAnnouncer-CnNJa9NI.js",
595 + "/assets/useUpdateEffect-DsCDOPa2.js",
596 + "/assets/index-BT5H2sjL.js",
597 + "/assets/features-animation-BCPmlPPs.js",
598 + "/assets/index-8boKsGvQ.js",
599 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
600 + "/assets/use-server-command-DJ0CxbuT.js",
601 + "/assets/create-rpc-stub-SmqOCk37.js",
602 + "/assets/index-BoeY4VQ9.js",
603 + "/assets/app-form-CRPZmLNY.js",
604 + "/assets/button-KaTnxiWj.js",
605 + "/assets/spinner-DDyy7LQF.js",
606 + "/assets/zod-CmeTJI5u.js",
607 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
608 + "/assets/form-hidden-input-DI5aJPYE.js",
609 + "/assets/form-input-C6s4itpV.js",
610 + "/assets/system-preferences-DL4TO29S.js",
611 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
612 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
613 + "/assets/use-in-view-BNnh4L6M.js",
614 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
615 + ],
616 + "css": [
617 + "/assets/rich-text-editor-D9Rskyfk.css#",
618 + "/assets/listing-card-CI-uxcFh.css"
619 + ]
620 + },
621 + "PublicHomePage": {
622 + "id": "PublicHomePage",
623 + "parentId": "public-language",
624 + "path": "",
625 + "hasAction": false,
626 + "hasLoader": true,
627 + "hasClientAction": false,
628 + "hasClientLoader": false,
629 + "hasClientMiddleware": false,
630 + "hasDefaultExport": true,
631 + "hasErrorBoundary": false,
632 + "module": "/assets/home.page-CEey5s8m.js",
633 + "imports": [
634 + "/assets/chunk-QUQL4437-m7Whu12z.js",
635 + "/assets/jsx-runtime-umhk6iWe.js",
636 + "/assets/runtime-MtUT-9pW.js",
637 + "/assets/facebook-pixel-B5MxbSaJ.js",
638 + "/assets/google-analytics-D-bO2gMa.js",
639 + "/assets/lead-capture-config.helpers-DpZ6az3C.js",
640 + "/assets/global-progress-CjDASA7T.js",
641 + "/assets/header-BBMyfPB0.js",
642 + "/assets/footer-Byz07yjl.js",
643 + "/assets/listing-card-Cg3TPyWe.js",
644 + "/assets/seo.helpers-rKbdQkhM.js",
645 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
646 + "/assets/types-BKXG3Vd5.js",
647 + "/assets/index-CXP4lC37.js",
648 + "/assets/use-locale-BnwvbFV-.js",
649 + "/assets/instance-Dwq5XJYG.js",
650 + "/assets/locale-rlhQ6FjN.js",
651 + "/assets/lead-capture-layout-D9cSW77z.js",
652 + "/assets/locale-switcher-kD-MOI9x.js",
653 + "/assets/use-show-profile-modal-Cgfts1ut.js",
654 + "/assets/i18n-CTdcZBaW.js",
655 + "/assets/date-C7fQmg2U.js",
656 + "/assets/format-BKStloXP.js",
657 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
658 + "/assets/formatDistanceToNow-BvwR-I5H.js",
659 + "/assets/paths-CiQnXl4X.js",
660 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
661 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
662 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
663 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
664 + "/assets/preload-helper-Cer9inx8.js",
665 + "/assets/index-DmhvH8SD.js",
666 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
667 + "/assets/Item-DuavYi1u.js",
668 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
669 + "/assets/useDialog-Bh9KG6MB.js",
670 + "/assets/VisuallyHidden-D-Q2SU4O.js",
671 + "/assets/isScrollable-Dnxj3NSq.js",
672 + "/assets/useLabels-BL4rQGMb.js",
673 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
674 + "/assets/context-C7uvIu_A.js",
675 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
676 + "/assets/FocusScope-CWuTxhav.js",
677 + "/assets/index-DJnVLKJF.js",
678 + "/assets/useOverlayTriggerState-woQJgDxB.js",
679 + "/assets/useControlledState-Dl_rDvO0.js",
680 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
681 + "/assets/number-lhSI2oqU.js",
682 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
683 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
684 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
685 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
686 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
687 + "/assets/index-DuhTrrt1.js",
688 + "/assets/mergeRefs-C8xtGVp3.js",
689 + "/assets/getItemCount-BQolBIkZ.js",
690 + "/assets/SelectionManager-BmJrKgY4.js",
691 + "/assets/scrollIntoView-BWAA50rI.js",
692 + "/assets/useSelectableItem-Ds0Ihirs.js",
693 + "/assets/useDescription-DF6TDnVi.js",
694 + "/assets/index-D8QbWu84.js",
695 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
696 + "/assets/useSelectableList-BOP0KhmN.js",
697 + "/assets/DOMLayoutDelegate-Brany3qe.js",
698 + "/assets/useCollator-CbJkpXG2.js",
699 + "/assets/useTreeState-Dx1W0YuM.js",
700 + "/assets/useMenuTriggerState-CHKcWOlC.js",
701 + "/assets/useMenuTrigger-DKFjnCNZ.js",
702 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
703 + "/assets/index-blsAimsU.js",
704 + "/assets/storage-image-BRiFwsnF.js",
705 + "/assets/icon-D77RBjQx.js",
706 + "/assets/debug-build-VZlf1Aof.js",
707 + "/assets/empty-image-DeSmMdF3.js",
708 + "/assets/storage-JzkTKPy4.js",
709 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
710 + "/assets/use-tenant-wE0zDJ1a.js",
711 + "/assets/use-localized-path-BMxKZwMg.js",
712 + "/assets/modal-BG3X61k6.js",
713 + "/assets/runtime-TD3m583z.js",
714 + "/assets/modal-root-haL454LR.js",
715 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
716 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
717 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
718 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
719 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
720 + "/assets/proxy-BlmPTkqy.js",
721 + "/assets/create-visual-element-Cc1-iv7S.js",
722 + "/assets/accelerated-values-ClBEnI7v.js",
723 + "/assets/layout-CqatgvGE.js",
724 + "/assets/listingTypes-CkyCgPCr.js",
725 + "/assets/floor-label-CGeBlKR2.js",
726 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
727 + "/assets/useFormValidation-BlL8vXtt.js",
728 + "/assets/useLabel-FzyH2LZi.js",
729 + "/assets/useNumberFormatter-DG2VO0C1.js",
730 + "/assets/NumberFormatter-BWU_gJyt.js",
731 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
732 + "/assets/useModal-C3khzgYn.js",
733 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
734 + "/assets/useButton-DZK-beuH.js",
735 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
736 + "/assets/index-B915wqUE.js",
737 + "/assets/index-DGzYOEP8.js",
738 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
739 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
740 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
741 + "/assets/useControlledState-C6ovzWeF.js",
742 + "/assets/useField-CBKMx-DQ.js",
743 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
744 + "/assets/chunk-M3MASYO7-COH9P04M.js",
745 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
746 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
747 + "/assets/useToggleState-DY8z2i0t.js",
748 + "/assets/index-BzZ-MzUq.js",
749 + "/assets/useToggle-QKKEqo_x.js",
750 + "/assets/use-debounce-D23YJQRM.js",
751 + "/assets/use-debounced-callback-Do1iUmMt.js",
752 + "/assets/show-BOEsnqQk.js",
753 + "/assets/index-BxwHZyk5.js",
754 + "/assets/use-screenshot-mode-RoZeXH-d.js",
755 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
756 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
757 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
758 + "/assets/powered-by-eversa-BF980dJS.js",
759 + "/assets/tooltip-_QqyKTfK.js",
760 + "/assets/eversa-logo-DmkjJgjq.js",
761 + "/assets/use-auth-D_t8q_v4.js",
762 + "/assets/OtpInput-CJhAm1Gc.js",
763 + "/assets/roles-Cde3N6LE.js",
764 + "/assets/chunk-T45N425O-CCF24x8B.js",
765 + "/assets/index-CwlnhZHs.js",
766 + "/assets/exports-mapbox-Dy-MMXYe.js",
767 + "/assets/client-CpT78rmL.js",
768 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
769 + "/assets/useProgressBar-DhWwJb16.js",
770 + "/assets/index-Cy2bmlj7.js",
771 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
772 + "/assets/std-cron-C0Hf3jWh.js",
773 + "/assets/legacy-date-D-X4tG6T.js",
774 + "/assets/use-is-iframe-DIKEri2l.js",
775 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
776 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
777 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
778 + "/assets/link-CrZmIZC6.js",
779 + "/assets/rich-text-display--Qas76Hg.js",
780 + "/assets/utils-D0p-v41w.js",
781 + "/assets/signature-block-8SMePIUg.js",
782 + "/assets/index-DqzG1Q9x.js",
783 + "/assets/client-only-BGvaz0Jn.js",
784 + "/assets/use-hydrated-nn_6IPIK.js",
785 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
786 + "/assets/settings.types-CTRD0B_j.js",
787 + "/assets/input-CkQmsiJb.js",
788 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
789 + "/assets/extends-BSSSaanF.js",
790 + "/assets/user-menu-BuoWMPG0.js",
791 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
792 + "/assets/index-CRabYQb-.js",
793 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
794 + "/assets/Section-CaP3oBph.js",
795 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
796 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
797 + "/assets/LiveAnnouncer-CnNJa9NI.js",
798 + "/assets/useUpdateEffect-DsCDOPa2.js",
799 + "/assets/index-BT5H2sjL.js",
800 + "/assets/features-animation-BCPmlPPs.js",
801 + "/assets/index-8boKsGvQ.js",
802 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
803 + "/assets/use-server-command-DJ0CxbuT.js",
804 + "/assets/create-rpc-stub-SmqOCk37.js",
805 + "/assets/index-BoeY4VQ9.js",
806 + "/assets/app-form-CRPZmLNY.js",
807 + "/assets/button-KaTnxiWj.js",
808 + "/assets/spinner-DDyy7LQF.js",
809 + "/assets/zod-CmeTJI5u.js",
810 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
811 + "/assets/form-hidden-input-DI5aJPYE.js",
812 + "/assets/form-input-C6s4itpV.js",
813 + "/assets/system-preferences-DL4TO29S.js",
814 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
815 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
816 + "/assets/use-in-view-BNnh4L6M.js",
817 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
818 + ],
819 + "css": [
820 + "/assets/rich-text-editor-D9Rskyfk.css#",
821 + "/assets/listing-card-CI-uxcFh.css"
822 + ]
823 + },
824 + "root.not-found": {
825 + "id": "root.not-found",
826 + "parentId": "root",
827 + "path": "*",
828 + "hasAction": false,
829 + "hasLoader": false,
830 + "hasClientAction": false,
831 + "hasClientLoader": false,
832 + "hasClientMiddleware": false,
833 + "hasDefaultExport": true,
834 + "hasErrorBoundary": false,
835 + "module": "/assets/root.not-found-D01c4GbZ.js",
836 + "imports": [
837 + "/assets/root.not-found-DP5tZm2i.js",
838 + "/assets/chunk-QUQL4437-m7Whu12z.js",
839 + "/assets/jsx-runtime-umhk6iWe.js",
840 + "/assets/icon-D77RBjQx.js",
841 + "/assets/index-blsAimsU.js",
842 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
843 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
844 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
845 + "/assets/preload-helper-Cer9inx8.js",
846 + "/assets/index-DmhvH8SD.js",
847 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
848 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
849 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
850 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
851 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js"
852 + ],
853 + "css": []
854 + },
855 + "PublicListingsIndexPage": {
856 + "id": "PublicListingsIndexPage",
857 + "parentId": "PublicListingsLayoutPage",
858 + "path": "",
859 + "hasAction": false,
860 + "hasLoader": false,
861 + "hasClientAction": false,
862 + "hasClientLoader": false,
863 + "hasClientMiddleware": false,
864 + "hasDefaultExport": true,
865 + "hasErrorBoundary": false,
866 + "module": "/assets/listings-index.page-DjplF3AX.js",
867 + "imports": [
868 + "/assets/chunk-QUQL4437-m7Whu12z.js",
869 + "/assets/jsx-runtime-umhk6iWe.js",
870 + "/assets/runtime-MtUT-9pW.js",
871 + "/assets/instance-Dwq5XJYG.js",
872 + "/assets/locale-rlhQ6FjN.js",
873 + "/assets/use-localized-path-BMxKZwMg.js",
874 + "/assets/listing-card-Cg3TPyWe.js",
875 + "/assets/types-BKXG3Vd5.js",
876 + "/assets/i18n-CTdcZBaW.js",
877 + "/assets/date-C7fQmg2U.js",
878 + "/assets/format-BKStloXP.js",
879 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
880 + "/assets/formatDistanceToNow-BvwR-I5H.js",
881 + "/assets/paths-CiQnXl4X.js",
882 + "/assets/use-tenant-wE0zDJ1a.js",
883 + "/assets/runtime-TD3m583z.js",
884 + "/assets/exports-mapbox-Dy-MMXYe.js",
885 + "/assets/index-DJnVLKJF.js",
886 + "/assets/use-locale-BnwvbFV-.js",
887 + "/assets/icon-D77RBjQx.js",
888 + "/assets/show-BOEsnqQk.js",
889 + "/assets/client-CpT78rmL.js",
890 + "/assets/index-CXP4lC37.js",
891 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
892 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
893 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
894 + "/assets/useProgressBar-DhWwJb16.js",
895 + "/assets/preload-helper-Cer9inx8.js",
896 + "/assets/index-DmhvH8SD.js",
897 + "/assets/number-lhSI2oqU.js",
898 + "/assets/useLabel-FzyH2LZi.js",
899 + "/assets/useLabels-BL4rQGMb.js",
900 + "/assets/useNumberFormatter-DG2VO0C1.js",
901 + "/assets/context-C7uvIu_A.js",
902 + "/assets/NumberFormatter-BWU_gJyt.js",
903 + "/assets/index-Cy2bmlj7.js",
904 + "/assets/index-blsAimsU.js",
905 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
906 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
907 + "/assets/mergeRefs-C8xtGVp3.js",
908 + "/assets/useControlledState-Dl_rDvO0.js",
909 + "/assets/FocusScope-CWuTxhav.js",
910 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
911 + "/assets/useField-CBKMx-DQ.js",
912 + "/assets/useFormValidation-BlL8vXtt.js",
913 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
914 + "/assets/std-cron-C0Hf3jWh.js",
915 + "/assets/legacy-date-D-X4tG6T.js",
916 + "/assets/listingTypes-CkyCgPCr.js",
917 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
918 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
919 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
920 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
921 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
922 + "/assets/useButton-DZK-beuH.js",
923 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
924 + "/assets/useOverlayTriggerState-woQJgDxB.js",
925 + "/assets/index-B915wqUE.js",
926 + "/assets/accelerated-values-ClBEnI7v.js",
927 + "/assets/useTreeState-Dx1W0YuM.js",
928 + "/assets/SelectionManager-BmJrKgY4.js",
929 + "/assets/scrollIntoView-BWAA50rI.js",
930 + "/assets/isScrollable-Dnxj3NSq.js",
931 + "/assets/useSelectableList-BOP0KhmN.js",
932 + "/assets/DOMLayoutDelegate-Brany3qe.js",
933 + "/assets/useCollator-CbJkpXG2.js",
934 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
935 + "/assets/index-DGzYOEP8.js",
936 + "/assets/Item-DuavYi1u.js",
937 + "/assets/use-is-iframe-DIKEri2l.js",
938 + "/assets/floor-label-CGeBlKR2.js",
939 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
940 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
941 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
942 + "/assets/storage-image-BRiFwsnF.js",
943 + "/assets/debug-build-VZlf1Aof.js",
944 + "/assets/empty-image-DeSmMdF3.js",
945 + "/assets/storage-JzkTKPy4.js",
946 + "/assets/link-CrZmIZC6.js",
947 + "/assets/chunk-T45N425O-CCF24x8B.js",
948 + "/assets/modal-BG3X61k6.js",
949 + "/assets/modal-root-haL454LR.js",
950 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
951 + "/assets/useDialog-Bh9KG6MB.js",
952 + "/assets/VisuallyHidden-D-Q2SU4O.js",
953 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
954 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
955 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
956 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
957 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
958 + "/assets/proxy-BlmPTkqy.js",
959 + "/assets/create-visual-element-Cc1-iv7S.js",
960 + "/assets/layout-CqatgvGE.js",
961 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
962 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
963 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
964 + "/assets/index-DuhTrrt1.js",
965 + "/assets/useModal-C3khzgYn.js",
966 + "/assets/index-BxwHZyk5.js",
967 + "/assets/rich-text-display--Qas76Hg.js",
968 + "/assets/utils-D0p-v41w.js",
969 + "/assets/signature-block-8SMePIUg.js",
970 + "/assets/index-DqzG1Q9x.js",
971 + "/assets/client-only-BGvaz0Jn.js",
972 + "/assets/use-hydrated-nn_6IPIK.js",
973 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
974 + "/assets/chunk-M3MASYO7-COH9P04M.js",
975 + "/assets/settings.types-CTRD0B_j.js",
976 + "/assets/use-show-profile-modal-Cgfts1ut.js",
977 + "/assets/input-CkQmsiJb.js",
978 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
979 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
980 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
981 + "/assets/useControlledState-C6ovzWeF.js",
982 + "/assets/extends-BSSSaanF.js",
983 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
984 + "/assets/use-debounce-D23YJQRM.js",
985 + "/assets/use-debounced-callback-Do1iUmMt.js",
986 + "/assets/use-auth-D_t8q_v4.js",
987 + "/assets/OtpInput-CJhAm1Gc.js",
988 + "/assets/roles-Cde3N6LE.js",
989 + "/assets/index-CwlnhZHs.js",
990 + "/assets/index-BzZ-MzUq.js",
991 + "/assets/powered-by-eversa-BF980dJS.js",
992 + "/assets/tooltip-_QqyKTfK.js",
993 + "/assets/eversa-logo-DmkjJgjq.js",
994 + "/assets/use-screenshot-mode-RoZeXH-d.js",
995 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
996 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
997 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
998 + "/assets/getItemCount-BQolBIkZ.js",
999 + "/assets/useSelectableItem-Ds0Ihirs.js",
1000 + "/assets/useDescription-DF6TDnVi.js",
1001 + "/assets/index-D8QbWu84.js",
1002 + "/assets/useMenuTriggerState-CHKcWOlC.js",
1003 + "/assets/useMenuTrigger-DKFjnCNZ.js",
1004 + "/assets/user-menu-BuoWMPG0.js",
1005 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
1006 + "/assets/index-CRabYQb-.js",
1007 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
1008 + "/assets/Section-CaP3oBph.js",
1009 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
1010 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
1011 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
1012 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
1013 + "/assets/LiveAnnouncer-CnNJa9NI.js",
1014 + "/assets/useUpdateEffect-DsCDOPa2.js",
1015 + "/assets/index-BT5H2sjL.js",
1016 + "/assets/features-animation-BCPmlPPs.js",
1017 + "/assets/index-8boKsGvQ.js",
1018 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
1019 + "/assets/use-server-command-DJ0CxbuT.js",
1020 + "/assets/create-rpc-stub-SmqOCk37.js",
1021 + "/assets/index-BoeY4VQ9.js",
1022 + "/assets/app-form-CRPZmLNY.js",
1023 + "/assets/button-KaTnxiWj.js",
1024 + "/assets/spinner-DDyy7LQF.js",
1025 + "/assets/zod-CmeTJI5u.js",
1026 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
1027 + "/assets/form-hidden-input-DI5aJPYE.js",
1028 + "/assets/form-input-C6s4itpV.js",
1029 + "/assets/system-preferences-DL4TO29S.js",
1030 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
1031 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
1032 + "/assets/use-in-view-BNnh4L6M.js",
1033 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
1034 + ],
1035 + "css": [
1036 + "/assets/rich-text-editor-D9Rskyfk.css#",
1037 + "/assets/listing-card-CI-uxcFh.css"
1038 + ]
1039 + }
1040 + },
1041 + "url": "/assets/manifest-2b2cda1e.js",
1042 + "version": "2b2cda1e"
1043 +};
1044 + window.__reactRouterRouteModules = {"root":route0,"public-language":route1,"PublicListingsLayoutPage":route2,"PublicListingDetailPage":route3};
1045 +
1046 +import("/assets/entry.client-BIJa3TY3.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":-5,\"_8\":9,\"_10\":11},\"actionData\",\"errors\",\"root\",{\"_591\":-5,\"_592\":-7,\"_593\":594,\"_595\":596,\"_20\":21,\"_18\":597,\"_598\":-5,\"_599\":600,\"_234\":235,\"_601\":-5,\"_602\":-5},\"public-language\",\"PublicListingsLayoutPage\",{\"_18\":221,\"_222\":223,\"_224\":225,\"_226\":25,\"_227\":228,\"_229\":60,\"_230\":231,\"_232\":233,\"_234\":235,\"_236\":25,\"_237\":25,\"_238\":25},\"PublicListingDetailPage\",{\"_12\":13,\"_14\":15,\"_16\":17,\"_18\":19,\"_20\":21,\"_22\":23,\"_24\":25},\"listing\",{\"_46\":126,\"_127\":128,\"_96\":129,\"_130\":129,\"_84\":103,\"_131\":132,\"_133\":134,\"_115\":103,\"_118\":135,\"_116\":136,\"_36\":137,\"_138\":139,\"_140\":141,\"_142\":-5,\"_143\":-5,\"_144\":145,\"_146\":60,\"_147\":148,\"_149\":150},\"auth\",{\"_124\":60,\"_125\":25},\"walkScore\",[\"P\",17],\"tenant\",{\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":40,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"lang\",\"fr\",\"pageUrl\",\"https://www.halfred.ca/fr/listings/44-rue-de-matapedia/details\",\"noindex\",false,\"address\",{\"_96\":114,\"_84\":103,\"_115\":79,\"_116\":117,\"_118\":119,\"_120\":101,\"_121\":87,\"_90\":98,\"_122\":123},\"analytics\",{\"_108\":109,\"_110\":111,\"_112\":113},\"colors\",{\"_104\":105,\"_106\":107},\"contact\",{\"_69\":70,\"_71\":72,\"_26\":73},\"customDomains\",[62,63],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_58\":25,\"_59\":60,\"_61\":25},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{\"_54\":55,\"_56\":57},\"templateId\",\"editorial\",\"title\",\"Halfred | Apartment rentals\",\"showcase\",{},\"listingSortOrder\",\"smart\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_64\":68},{\"_64\":65,\"_66\":67},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_74\":75,\"_76\":77,\"_78\":79,\"_80\":81,\"_82\":83,\"_84\":85,\"_86\":87,\"_88\":89,\"_90\":91,\"_92\":93,\"_94\":95,\"_96\":79},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_97\":103,\"_99\":103},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_97\":101,\"_99\":102},\"country\",{\"_97\":98,\"_99\":100},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"loggedIn\",\"isStaff\",\"44-rue-de-matapedia\",\"area\",900,\"44 Rue De Matapédia\",\"name\",\"buildingId\",\"363849e0-dfe0-479f-9833-bd63fc111058\",\"availabilty\",[\"D\",1775001600000],-75.704144,45.483733,{\"_199\":219,\"_21\":220},\"images\",[218],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[192,193,194,195,196],\"listed\",\"units\",[166],\"cardData\",{\"_46\":126,\"_96\":129,\"_84\":103,\"_115\":103,\"_116\":136,\"_118\":135,\"_151\":152,\"_153\":154,\"_155\":156,\"_127\":157,\"_158\":159,\"_160\":161},\"unitId\",\"1287ea6c-22e9-4b93-a666-f653a0011b08\",\"bedrooms\",[165],\"bathrooms\",[164],[128],\"price\",[163],\"availability\",[162],\"2026-04-01T00:00:00.000Z\",1295,1,2,{\"_46\":152,\"_127\":128,\"_167\":-5,\"_158\":163,\"_153\":165,\"_155\":164,\"_168\":169,\"_138\":170,\"_146\":60,\"_171\":172,\"_173\":174,\"_175\":176,\"_160\":177,\"_178\":-5,\"_179\":-5,\"_180\":181,\"_39\":182},\"floor\",\"alias\",\"21\",[185,186,187,188,189,190,191],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1775001600000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_158\":183,\"_36\":184},[],1000,\"*** Prix promotionnelle pour un bail de 12 mois ***\",\"/storage/v1/object/public/halfred/units/1287ea6c-22e9-4b93-a666-f653a0011b08/10.jpg\",\"/storage/v1/object/public/halfred/units/1287ea6c-22e9-4b93-a666-f653a0011b08/2.jpg\",\"/storage/v1/object/public/halfred/units/1287ea6c-22e9-4b93-a666-f653a0011b08/3.jpg\",\"/storage/v1/object/public/halfred/units/1287ea6c-22e9-4b93-a666-f653a0011b08/4.jpg\",\"/storage/v1/object/public/halfred/units/1287ea6c-22e9-4b93-a666-f653a0011b08/5.jpg\",\"/storage/v1/object/public/halfred/units/1287ea6c-22e9-4b93-a666-f653a0011b08/6.jpg\",\"/storage/v1/object/public/halfred/units/1287ea6c-22e9-4b93-a666-f653a0011b08/8.jpg\",{\"_97\":214,\"_41\":215},{\"_97\":210,\"_41\":211},{\"_97\":206,\"_41\":207},{\"_97\":202,\"_41\":203},{\"_97\":197,\"_41\":198},{\"_199\":200,\"_21\":201},\"lucide:paw-print\",\"en\",\"Cats Allowed\",\"Chats autorisés\",{\"_199\":204,\"_21\":205},\"lucide:washing-machine\",\"Laundry Room\",\"Buanderie\",{\"_199\":208,\"_21\":209},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_199\":212,\"_21\":213},\"lucide:droplet\",\"Water\",\"Eau\",{\"_199\":216,\"_21\":217},\"lucide:car\",\"Parking\",\"Stationnement\",\"/storage/v1/object/public/halfred/buildings/363849e0-dfe0-479f-9833-bd63fc111058/chatgpt-image-12-mai-2026-132349.png\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Beautiful Apartment for Rent in Gatineau – Prime Location!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover this charming apartment ideally located in Gatineau, perfect for students, young professionals, or anyone looking for a practical and well-located living space.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Prime location:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Close to Vérendrye and Gréber streets\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Quick access to Highway 50\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 Only 5 minutes from Cégep de l’Outaouais (Félix-Leclerc campus)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🛍️ Near Les Promenades Gatineau, shops, and essential services\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What this unit offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 parking space included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Laundry facilities in the building\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Comfortable and functional living space\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Enjoy a convenient location with quick access to schools, transportation, shops, and restaurants.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"⚡ Not heated / not electricity included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❌ No pets allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📋 Credit check required\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" for more information or to schedule your visit!\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Beau logement à louer à Gatineau – Emplacement idéal!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ce charmant logement idéalement situé à Gatineau, parfait pour étudiants, jeunes professionnels ou toute personne recherchant un espace pratique et bien localisé.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Emplacement stratégique :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Près des rues Vérendrye et Gréber\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Accès rapide à l’autoroute 50\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 À seulement 5 minutes du Cégep de l’Outaouais (pavillon Félix-Leclerc)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🛍️ À proximité des Promenades Gatineau, commerces et services essentiels\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce que vous offre le logement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 espace de stationnement inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Buanderie dans l’immeuble\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Espace confortable et fonctionnel\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’aimer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Profitez d’un emplacement pratique avec un accès rapide aux écoles, transports, commerces et restaurants.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Conditions :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"⚡ Non chauffé / non éclairé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❌ Animaux non acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📋 Enquête de crédit obligatoire\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour plus d’informations ou pour planifier votre visite!\\\"}]}]}\",{\"_26\":27,\"_28\":589,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":590,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"listings\",[],\"listingsByView\",{\"_584\":223,\"_585\":586,\"_587\":588},\"explodeProjects\",\"initialFilters\",{\"_158\":352,\"_353\":354,\"_355\":356,\"_127\":357,\"_167\":358,\"_359\":60,\"_155\":360,\"_153\":361,\"_362\":25,\"_363\":60,\"_364\":365,\"_366\":367},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_239\":240,\"_241\":242,\"_243\":244,\"_245\":246,\"_247\":240,\"_248\":249,\"_250\":251},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[333],\"analysisProductsPrice\",{\"_333\":334,\"_335\":336,\"_337\":338,\"_339\":340,\"_341\":342,\"_343\":344,\"_345\":346,\"_347\":346,\"_348\":349,\"_350\":344,\"_351\":342},\"notifications\",{\"_310\":311},\"form\",{\"_303\":60,\"_304\":25,\"_305\":60,\"_306\":60,\"_307\":25,\"_308\":25,\"_309\":25},\"enabledSkus\",\"submissions\",{\"_253\":254,\"_255\":256,\"_257\":258,\"_259\":260,\"_30\":261,\"_262\":-5},\"agent\",{\"_252\":25},\"hideAgentNewSubmissionBtn\",\"all\",[289,290,291,292,293,294,295,299,300,301,302],\"steps\",[289,290,291,292,293,294,295],\"badges\",[279,280,281,282,283,284],\"statuses\",[273,263,265,267,269,271,274,275,276,277,278],{\"_263\":264,\"_265\":266,\"_267\":268,\"_269\":270,\"_271\":272},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_285\":263,\"_287\":264},{\"_285\":265,\"_287\":266},{\"_285\":267,\"_287\":268},{\"_285\":269,\"_287\":270},{\"_285\":271,\"_287\":272},{\"_285\":286,\"_287\":288},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_285\":273,\"_287\":-5,\"_296\":25},{\"_285\":263,\"_287\":264,\"_296\":60,\"_297\":25,\"_298\":25},{\"_285\":265,\"_287\":266,\"_296\":60,\"_297\":25,\"_298\":25},{\"_285\":267,\"_287\":268,\"_296\":60,\"_297\":25,\"_298\":25},{\"_285\":269,\"_287\":270,\"_296\":60,\"_297\":25,\"_298\":25},{\"_285\":271,\"_287\":272,\"_296\":60,\"_297\":25,\"_298\":25},{\"_285\":274,\"_287\":-5,\"_296\":60},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_285\":275,\"_287\":-5,\"_296\":25},{\"_285\":276,\"_287\":-5,\"_296\":25},{\"_285\":277,\"_287\":-5,\"_296\":25},{\"_285\":278,\"_287\":-5,\"_296\":25},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_250\":312,\"_313\":314,\"_18\":315,\"_316\":317},[325,326,327,328,329,330,320,321,331,332],\"manager\",[],[319,320,321,322,323,324],\"admin\",[318],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"agent-submission-snoozed\",\"agent-submission-snoozed-reminder\",\"agent-submission-snoozed-expired\",\"application-deadline-reminder\",\"application-deadline-expired\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1299,\"qc_citizen_criminal_plumitif_municipal_check\",699,\"qc_citizen_rental_board_check\",799,\"on_citizen_rental_board_check\",999,\"ca_citizen_workplace_reference_verification\",1499,\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",\"qc_citizen_rental_board_extended_check\",[164,583],\"pricePerMonth\",[164,583],\"pricePerSqft\",[231,231],[231,582],[580,581],\"hasFloor\",[231,165],[231,403],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442],\"availableNeighborhoods\",[368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384],{\"_130\":408,\"_230\":164},{\"_130\":406,\"_230\":407},{\"_130\":405,\"_230\":165},{\"_130\":404,\"_230\":165},{\"_130\":402,\"_230\":403},{\"_130\":103,\"_230\":401},{\"_130\":399,\"_230\":400},{\"_130\":398,\"_230\":164},{\"_130\":397,\"_230\":165},{\"_130\":396,\"_230\":164},{\"_130\":394,\"_230\":395},{\"_130\":393,\"_230\":164},{\"_130\":391,\"_230\":392},{\"_130\":390,\"_230\":165},{\"_130\":389,\"_230\":164},{\"_130\":387,\"_230\":388},{\"_130\":385,\"_230\":386},\"Touraine\",7,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",8,\"Plateau \",\"Plateau\",30,\"plateau\",\"Old Gatineau\",\"Masson\",\"Hull\",21,37,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",20,\"angers\",{\"_46\":578,\"_130\":579,\"_41\":215},{\"_46\":573,\"_130\":574,\"_41\":575},{\"_46\":569,\"_130\":570,\"_41\":207},{\"_46\":565,\"_130\":566,\"_41\":203},{\"_46\":561,\"_130\":562,\"_41\":207},{\"_46\":557,\"_130\":558,\"_41\":463},{\"_46\":553,\"_130\":554,\"_41\":485},{\"_46\":548,\"_130\":549,\"_41\":550},{\"_46\":544,\"_130\":545,\"_41\":485},{\"_46\":539,\"_130\":540,\"_41\":541},{\"_46\":534,\"_130\":535,\"_41\":536},{\"_46\":530,\"_130\":531,\"_41\":498},{\"_46\":526,\"_130\":527,\"_41\":449},{\"_46\":522,\"_130\":523,\"_41\":463},{\"_46\":518,\"_130\":519,\"_41\":520},{\"_46\":516,\"_130\":517,\"_41\":198},{\"_46\":512,\"_130\":513,\"_41\":203},{\"_46\":508,\"_130\":509,\"_41\":449},{\"_46\":506,\"_130\":507,\"_41\":211},{\"_46\":501,\"_130\":502,\"_41\":503},{\"_46\":496,\"_130\":497,\"_41\":498},{\"_46\":494,\"_130\":495,\"_41\":207},{\"_46\":490,\"_130\":491,\"_41\":215},{\"_46\":488,\"_130\":489,\"_41\":203},{\"_46\":483,\"_130\":484,\"_41\":485},{\"_46\":478,\"_130\":479,\"_41\":480},{\"_46\":474,\"_130\":475,\"_41\":198},{\"_46\":470,\"_130\":471,\"_41\":198},{\"_46\":466,\"_130\":467,\"_41\":215},{\"_46\":461,\"_130\":462,\"_41\":463},{\"_46\":456,\"_130\":457,\"_41\":458},{\"_46\":452,\"_130\":453,\"_41\":454},{\"_46\":447,\"_130\":448,\"_41\":449},{\"_46\":443,\"_130\":444,\"_41\":207},\"counter-type\",{\"_199\":445,\"_21\":446},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_199\":450,\"_21\":451},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_199\":455,\"_21\":455},\"lucide:armchair\",\"Commodes\",\"disabled-access\",{\"_199\":459,\"_21\":460},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"gas-heating\",{\"_199\":464,\"_21\":465},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"underground-garage\",{\"_199\":468,\"_21\":469},\"Underground Garage\",\"Garage souterrain\",\"small-dogs-allowed\",{\"_199\":472,\"_21\":473},\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_199\":476,\"_21\":477},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"washer-dryer-outlet\",{\"_199\":481,\"_21\":482},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"cable-internet\",{\"_199\":486,\"_21\":487},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"laundry-room\",{\"_199\":204,\"_21\":205},\"garage-parking\",{\"_199\":492,\"_21\":493},\"Garage Parking\",\"Parking garage\",\"water-tank\",{\"_199\":208,\"_21\":209},\"microwave\",{\"_199\":499,\"_21\":500},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"blinds\",{\"_199\":504,\"_21\":505},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water\",{\"_199\":212,\"_21\":213},\"building-terrace\",{\"_199\":510,\"_21\":511},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_199\":514,\"_21\":515},\"Dryer\",\"Sèche-linge\",\"cats-allowed\",{\"_199\":200,\"_21\":201},\"gym\",{\"_199\":521,\"_21\":521},\"lucide:dumbbell\",\"Gym\",\"electric-heating\",{\"_199\":524,\"_21\":525},\"Electric Heating\",\"Chauffage Électrique\",\"balcony\",{\"_199\":528,\"_21\":529},\"Balcony\",\"Balcon\",\"oven\",{\"_199\":532,\"_21\":533},\"Oven\",\"Four\",\"electricity\",{\"_199\":537,\"_21\":538},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"refrigerator\",{\"_199\":542,\"_21\":543},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_199\":546,\"_21\":547},\"Cable\",\"Câble\",\"stove\",{\"_199\":551,\"_21\":552},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_199\":555,\"_21\":556},\"Fiber Internet\",\"Internet fibre\",\"central-air-conditioning\",{\"_199\":559,\"_21\":560},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_199\":563,\"_21\":564},\"Dishwasher\",\"Lave-vaisselle\",\"washer\",{\"_199\":567,\"_21\":568},\"Washer\",\"Laveuse\",\"elevator\",{\"_199\":571,\"_21\":572},\"Elevator\",\"Ascenseur\",\"locker-storage-space\",{\"_199\":576,\"_21\":577},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"parking\",{\"_199\":216,\"_21\":217},-1,6,2063,3050,\"list\",\"map\",[],\"explode\",[],{\"_108\":109,\"_110\":111,\"_112\":113},{\"_58\":25,\"_59\":60,\"_61\":25},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_285\":617,\"_46\":47,\"_618\":619,\"_52\":53,\"_36\":37,\"_30\":31,\"_620\":621,\"_26\":27,\"_32\":33,\"_241\":622,\"_623\":624,\"_625\":626,\"_627\":628,\"_43\":44,\"_629\":630,\"_631\":632,\"_45\":-5,\"_633\":-5,\"_634\":-5,\"_635\":-5,\"_50\":51,\"_48\":49,\"_34\":35,\"_636\":-5,\"_637\":-5,\"_234\":235,\"_638\":639,\"_640\":641,\"_642\":643,\"_41\":42,\"_644\":645,\"_38\":-7,\"_646\":647,\"_39\":648,\"_649\":650,\"_651\":-7,\"_652\":653,\"_28\":654,\"_239\":655,\"_656\":657,\"_658\":659},\"toast\",\"user\",{\"_603\":25,\"_604\":-5,\"_605\":-5,\"_606\":-5,\"_607\":-5,\"_608\":-5,\"_609\":-5,\"_610\":-5,\"_611\":-5,\"_612\":-5,\"_69\":-5,\"_71\":-5,\"_613\":-5,\"_125\":25,\"_614\":25,\"_615\":-5,\"_616\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_41\":747},\"social\",{\"_744\":745,\"_746\":79},{\"_333\":334,\"_335\":336,\"_337\":338,\"_339\":340,\"_341\":342,\"_343\":344,\"_345\":346,\"_347\":346,\"_348\":349,\"_350\":344,\"_351\":342},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_741\":-5,\"_271\":60,\"_742\":25,\"_743\":697},\"plan\",{\"_130\":721,\"_722\":79,\"_723\":724,\"_725\":726,\"_727\":728,\"_729\":730,\"_731\":231,\"_732\":733,\"_734\":231,\"_735\":736,\"_737\":738,\"_739\":740},\"metadata\",{\"_28\":654},\"consentConditionsText\",\"consentConditionsEn\",\"consentConditionsFr\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_714\":715,\"_623\":624,\"_716\":717,\"_43\":44,\"_718\":719,\"_74\":720},\"bucket\",{\"_711\":47,\"_712\":713},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_596\":708,\"_709\":710},\"tosHistory\",[697],{\"_668\":60,\"_669\":-7,\"_59\":60,\"_670\":25,\"_671\":25,\"_672\":60,\"_673\":60,\"_674\":25,\"_675\":-7,\"_676\":25,\"_677\":-7,\"_678\":25,\"_679\":25,\"_680\":25,\"_681\":682,\"_683\":25,\"_252\":25,\"_684\":-7,\"_685\":-7,\"_686\":-7,\"_687\":25,\"_58\":25,\"_688\":25,\"_61\":25,\"_689\":690,\"_691\":60,\"_692\":25,\"_693\":25,\"_694\":25,\"_695\":25,\"_696\":25},\"disabledModules\",[],\"rolePermissions\",\"banner\",{\"_199\":666,\"_21\":667},{\"_110\":111,\"_664\":665,\"_108\":109,\"_112\":113},[333],\"payments\",{\"_660\":60,\"_661\":60,\"_662\":25,\"_663\":25},\"version\",\"prod-20260917-9ad1803\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"hasAddressVariants\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"hopemIntegrationEnabled\",\"voltixIntegrationEnabled\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_698\":699,\"_700\":701,\"_658\":702,\"_271\":60,\"_269\":703,\"_704\":705,\"_706\":707},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",39,\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_748\":749},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("P17:[{\"_751\":164,\"_752\":753,\"_36\":754,\"_755\":756,\"_757\":758,\"_759\":760,\"_761\":762,\"_763\":764,\"_765\":762,\"_766\":767,\"_768\":769,\"_770\":771,\"_772\":773},\"status\",\"walkscore\",78,\"Very Walkable\",\"updated\",\"2026-08-22 16:13:05.395452\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/44Rue-De-Matap%C3%A9dia/lat=45.483733/lng=-75.704144/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.483,\"snapped_lon\",-75.7035,\"transit\",{\"_36\":-5,\"_777\":-5,\"_775\":-5},\"bike\",{\"_36\":774,\"_775\":776},\"Very Bikeable\",\"score\",79,\"summary\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--><!--/$--><script id="_R_">requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Walk Score®<!-- --> <!-- -->78</a><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Bike Score®<!-- --> <!-- -->79</a><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water Tank</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Laundry Room</span></div></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
1047 +$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><div hidden id="S:1"><div class="flex min-w-[240px] flex-1 basis-[280px] flex-col gap-4 sm:gap-6" data-sentry-component="EditorialScores" data-sentry-source-file="location.tsx"><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Walk Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">78</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:78%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Very Walkable</div></div><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Bike Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">79</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:79%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Very Bikeable</div></div></div></div><script>$RC("B:1","S:1")</script></body></html>
\ No newline at end of file
added tests/fixtures/halfred/8395b58417405cf191b6.html +1047 −0
@@ -0,0 +1,1047 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocamoverall.jpg?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/gym-d.jpg?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/exterieurgym.jpg?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg?width=1280&amp;height=880&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocamoverall.jpg?width=640&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/gym-d.jpg?width=640&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/exterieurgym.jpg?width=1280&amp;height=640&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/09e7d261-a038-4c50-9a9d-78c63f739fc1/0__09e7d261-a038-4c50-9a9d-78c63f739fc1.webp?width=192&amp;height=144&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/c3554475-4771-4326-8a00-3b0e686a8e6a/chambre-c-2.jpg?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0002-002_1_1W9A0814.jpg?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0002-002_1_1W9A0814-min.jpg?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/0__0007-007511w9a0879-min.jpg?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/0__0003-003461w9a0969-min.jpg?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/0__0003-003461w9a0969-min.jpg?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/0__0007-007261w9a1846-min.jpg?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2b7e9e6b-3260-40d8-8ddf-9ef7629e1b39/exterieur_D.jpg?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/40a5efb0-53f5-4050-9f41-1a28066ce459/0__edc3ec00-145a-4874-960a-5bd67978d4c4.webp?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/3d9df40d-52f9-4494-ab7c-d544807f1181/0__edc3ec00-145a-4874-960a-5bd67978d4c4.webp?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/aecf77df-5d99-4961-b35a-484471d41470/0__edc3ec00-145a-4874-960a-5bd67978d4c4.webp?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/a39a05d3-ac63-4d14-ac1e-2d2c3e081f1d/1__exterieur-d.jpg?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/edc3ec00-145a-4874-960a-5bd67978d4c4/NewColor_D.jpg?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/e46186b7-6b0a-4ea0-aadb-c919ce6b2b80/ee64d4b0-e736-4b47-a6b3-34ac719c9f37?width=192&amp;height=144&amp;quality=80"/><title>Halfred | Apartment rentals | PURE, Gatineau</title><meta name="description" content="🔥 Magnifiques appartements neufs et contemporains – Projet PURE au Plateau! 🔥 Découvrez une expérience de vie moderne et haut de gamme au cœur du secteur..."/><meta property="og:title" content="Halfred | Apartment rentals | PURE, Gatineau"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="🔥 Magnifiques appartements neufs et contemporains – Projet PURE au Plateau! 🔥 Découvrez une expérience de vie moderne et haut de gamme au cœur du secteur..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg"/><meta property="og:url" content="https://www.halfred.ca/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/project-detail.page-BFNjsI3w.js"/><link rel="modulepreload" href="/assets/detail-error-boundary-C3TWahqB.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="75c09d49eb8ab6583ec99d41d5717400-6341113cb20ada5c-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=75c09d49eb8ab6583ec99d41d5717400,sentry-org_id=476518,sentry-transaction=GET%20%2Fproject%2F%3Aid%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.554383563962861,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="max-lg:hidden order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex"><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Retour à la liste</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="px-3.5" data-sentry-component="EditorialProjectDetailsPage" data-sentry-source-file="project-details.tsx"><main class="mx-auto max-w-[1320px] px-1 pb-10 pt-3 sm:px-[clamp(20px,4.5vw,64px)] sm:pb-[clamp(48px,5.5vw,84px)] sm:pt-[clamp(24px,3.2vw,44px)]"><div class="flex flex-wrap items-start gap-x-[clamp(40px,5vw,72px)] gap-y-7 sm:gap-y-14 lg:flex-nowrap"><div class="order-2 min-w-0 max-w-[660px] flex-[1_1_440px] lg:order-1"><div data-ed-rise="true" class="ed-kicker mb-2 sm:mb-3">Gatineau</div><h1 class="ed-serif m-0 mb-5 overflow-hidden pb-[0.05em] text-[length:var(--ed-text-h1)] font-medium leading-[1.12] tracking-[-0.012em] text-[var(--ed-ink)] sm:mb-6"><span data-ed-mask="true" class="block">PURE</span></h1><div data-ed-rise="4" class="mb-8 sm:mb-10" id="details-cta"><div data-sentry-component="ConversionRail" data-sentry-source-file="conversion-rail.tsx"><div class="flex flex-col items-stretch gap-2.5 sm:flex-row sm:flex-wrap sm:items-center sm:gap-3"><button type="button" class="inline-flex w-full min-h-12 items-center justify-center gap-2.5 rounded-full bg-[var(--ed-ink)] px-7 py-1 shadow-[0_8px_20px_rgba(26,26,23,0.16)] transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto"><span class="text-[14px] font-semibold leading-snug text-white">Je suis intéressé par cette propriété</span><span></span></button></div></div></div><div data-ed-rise="5"><div data-sentry-component="HomeTypeRows" data-sentry-source-file="home-types.tsx"><div class="ed-kicker mb-2 text-[10.5px] tracking-[0.13em]">Logements disponibles</div><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">1 chambre</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">27 disponibles</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,320<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">2 chambres</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">9 disponibles</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,795<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a></div></div><div data-ed-rise="9" class="mt-8 sm:mt-10"><div class="text-[length:var(--ed-text-copy)] leading-[var(--ed-copy-leading)] text-[var(--ed-body)] [&amp;_p:empty]:hidden [&amp;_p:has(&gt;br:only-child)]:hidden line-clamp-4"><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Beautiful New Contemporary Apartments – PURE Project in the Plateau!</strong> 🔥</p><p>Discover a modern and upscale living experience in one of the most desirable areas of the Plateau! ✨ Located only <strong>8 minutes from Ottawa</strong>, the <strong>PURE Project</strong> offers an all-inclusive urban lifestyle in a vibrant and modern community.</p><p>📍 <strong>Exceptional location:</strong><br>🏫 Close to daycares and a high school<br>🌳 Several parks and green spaces within walking distance<br>🛍️ Near shops, restaurants, and all essential services<br>🚌 Quick access to public transportation and major roadways</p><p>🏢 <strong>PURE complex features:</strong><br>✔️ High-quality modern apartments<br>✔️ Shared rooftop terrace<br>✔️ Gym and coworking space<br>✔️ Large underground garage<br>✔️ Secure entrances<br>✔️ Elevator access to all floors</p><p>💡 <strong>Everything is included:</strong><br>✅ Internet &amp; cable<br>✅ Electricity, heating, and air conditioning<br>✅ 5 appliances included: refrigerator, stove, dishwasher, washer, and dryer</p><p>🚗 <strong>Parking options:</strong><br>✔️ Indoor parking available ($)<br>✔️ Electric vehicle charging stations available ($)</p><p>💡 <strong>Why you’ll love PURE:</strong><br>A modern project designed to offer comfort, tranquility, and quality living in one of Gatineau’s best neighborhoods.</p><p>📌 <strong>Important details:</strong><br>🚫 No pets allowed<br>🚭 Non-smoking complex<br>📑 Credit check required<br>📆 Minimum 12-month lease</p><p>📞 Contact <strong>Halfred</strong> today at <strong>819-593-3304</strong> for more information or to schedule your visit!</p></div></div></div></div></div><!--$?--><template id="B:0"></template><!--/$--><div data-ed-rise="9" class="mt-6 sm:mt-8"><div data-sentry-component="ContactPanel" data-sentry-source-file="conversion-rail.tsx"><div class="rounded-[18px] border border-[var(--ed-hairline)] bg-[var(--ed-card-alt)] p-4 sm:p-5" data-sentry-component="ContactActions" data-sentry-source-file="conversion-rail.tsx"><div class="mb-4 flex items-center gap-3"><span class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-chip)] text-[13px] font-semibold tracking-[0.02em] text-[var(--ed-strong)]">H|</span><span class="min-w-0"><span class="block truncate text-[15px] font-semibold text-[var(--ed-ink)]">Halfred | Apartment rentals</span><span class="block text-[12.5px] text-[var(--ed-secondary)]">Gestionnaire immobilier</span></span></div><div class="flex flex-wrap gap-2"><a href="mailto:info@halfred.ca" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full bg-[var(--ed-ink)] px-4 text-[13.5px] font-medium text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto sm:flex-1"><span></span>Message</a><a href="tel:(819) 593-3304" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[13.5px] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)] sm:w-auto sm:flex-1"><span></span><span class="truncate">Appeler (819) 593-3304</span></a></div><form class="mt-2.5 flex items-center gap-2" data-sentry-component="QuickQuestion" data-sentry-source-file="conversion-rail.tsx"><input type="text" placeholder="Or ask a quick question…" class="h-10 min-w-0 flex-1 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[16px] text-[var(--ed-ink)] outline-none transition-colors placeholder:text-[var(--ed-tertiary)] focus:border-[var(--ed-ink)] sm:text-[13.5px]" value=""/><button type="submit" aria-label="Send your question" class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form></div></div></div></div><div class="order-1 min-w-0 flex-[1.15_1_480px] lg:sticky lg:top-[92px] lg:order-2 lg:self-start" data-sentry-component="GalleryCollage" data-sentry-source-file="gallery-collage.tsx"><div class="-mx-[1.125rem] flex snap-x snap-mandatory gap-3 overflow-x-auto px-[1.125rem] pb-1 sm:hidden"><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-[86%] snap-center first:w-[92%]" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg?width=800&amp;height=520&amp;quality=80" alt="PURE" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-2.5 right-2.5 flex items-center gap-1.5 rounded-full bg-[rgba(26,26,23,0.72)] px-2.5 py-1 text-[11.5px] font-medium text-white"><span></span>4 photos</span></a><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-[86%] snap-center first:w-[92%]" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?index=1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocamoverall.jpg?width=800&amp;height=520&amp;quality=80" alt="PURE" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-[86%] snap-center first:w-[92%]" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?index=2" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/gym-d.jpg?width=800&amp;height=520&amp;quality=80" alt="PURE" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-[86%] snap-center first:w-[92%]" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?index=3" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/exterieurgym.jpg?width=800&amp;height=520&amp;quality=80" alt="PURE" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="hidden sm:block"><a data-ed-img="true" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[20px]" style="aspect-ratio:16/11" data-sentry-element="RemixLink" data-sentry-source-file="gallery-collage.tsx" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg?width=1280&amp;height=880&amp;quality=80" alt="PURE" data-ed-imgzoom="true" class="absolute inset-0 h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/><div class="absolute bottom-3.5 right-3.5 flex items-center gap-2 rounded-full bg-[rgba(26,26,23,0.78)] px-3.5 py-2"><span></span><span class="text-[13px] font-semibold text-white">4 photos</span></div></a><div class="mt-3.5 grid grid-cols-2 gap-3.5"><a data-ed-img="2" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[18px]" style="aspect-ratio:1/1" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?index=1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocamoverall.jpg?width=640&amp;height=640&amp;quality=80" alt="PURE" data-ed-imgzoom="2" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a><a data-ed-img="3" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[18px]" style="aspect-ratio:1/1" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?index=2" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/gym-d.jpg?width=640&amp;height=640&amp;quality=80" alt="PURE" data-ed-imgzoom="3" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><a data-ed-img="4" class="ed-thumb relative mt-3.5 block cursor-zoom-in overflow-hidden rounded-[18px]" style="aspect-ratio:16/8" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?index=3" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/exterieurgym.jpg?width=1280&amp;height=640&amp;quality=80" alt="PURE" data-ed-imgzoom="4" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div></div></div><div id="units" class="scroll-mt-[calc(var(--ed-header-h,0px)+16px)] mt-[var(--ed-section-gap)]"><h2 tabindex="-1" data-ed-reveal="true" class="ed-serif m-0 mb-3 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] outline-none sm:mb-4">Bâtiments et unités</h2><div class="mb-5 text-[length:var(--ed-text-lede)] text-[var(--ed-secondary)] sm:mb-7">Choisissez un bâtiment, puis ouvrez un logement pour tous les détails.</div><div class="mb-5 flex flex-col gap-2 sm:mb-6 sm:flex-row sm:flex-wrap sm:items-center sm:gap-x-4 sm:gap-y-2"><div class="flex flex-col gap-2 sm:flex-row sm:flex-wrap sm:items-center" data-sentry-component="UnitsToolbar" data-sentry-source-file="units-toolbar.tsx"><label class="flex h-10 w-full items-center gap-2 rounded-full border border-[var(--ed-border)] bg-white pl-3.5 pr-3 transition-colors focus-within:border-[var(--ed-ink)] sm:h-9 sm:w-auto sm:min-w-[190px] sm:max-w-[260px] sm:flex-none"><span></span><input type="search" placeholder="Search homes" class="w-full min-w-0 bg-transparent text-[16px] text-[var(--ed-ink)] outline-none placeholder:text-[var(--ed-tertiary)] sm:text-[13.5px]" value=""/></label><div class="ed-scroll-rail -mx-[1.125rem] flex items-center gap-2 overflow-x-auto px-[1.125rem] sm:contents"><button type="button" data-type-chip="all" aria-pressed="true" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-transparent bg-[var(--ed-ink)] font-medium text-white">Tous les types</button><button type="button" data-type-chip="bed-1" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">1 chambre<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">27</span></button><button type="button" data-type-chip="bed-2" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">2 chambres<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">9</span></button><button type="button" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Disponible maintenant</button><span class="inline-flex shrink-0 items-center gap-1.5" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Dates d&#x27;emménagement</button></span></div></div></div><div class="flex flex-col gap-4"><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[#d8d3ca] bg-[var(--ed-surface)] shadow-[0_12px_34px_rgba(26,26,23,0.07)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="true" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/09e7d261-a038-4c50-9a9d-78c63f739fc1/0__09e7d261-a038-4c50-9a9d-78c63f739fc1.webp?width=192&amp;height=144&amp;quality=80" alt="PURE" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">PURE</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">7 sur 7 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">921 Chemin Vanier</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,525<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform rotate-180 bg-[var(--ed-ink)]"><span></span></span></div></button><div class="border-t border-[var(--ed-hairline-soft)] px-3 pb-4 pt-3 sm:px-[22px] sm:pb-5 sm:pt-4"><div class="mb-4 flex flex-wrap items-center gap-2 px-1 sm:mb-5 sm:px-0"><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Gym</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Oven</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Parking</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Dryer</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Stove</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Building Terrace</span><button type="button" class="text-[12.5px] text-[var(--ed-ink)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink-hover)]">+16 plus</button></div><div class="flex flex-col gap-5" data-sentry-component="UnitGroupsSection" data-sentry-source-file="unit-groups.tsx"><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2"><span class="ed-serif text-[var(--ed-ink)] text-[18px] sm:text-[22px]">1 chambre</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?unit=c3554475-4771-4326-8a00-3b0e686a8e6a" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/c3554475-4771-4326-8a00-3b0e686a8e6a/chambre-c-2.jpg?width=232&amp;height=168&amp;quality=80" alt="206" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">7 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">206</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>Étage 2</span><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>583 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 25 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->22</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,900</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,525</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div><div aria-hidden="true" class="h-px bg-[var(--ed-hairline-soft)]"></div><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?unit=2baad719-d5fe-47f1-82b1-39cc018b41f1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0002-002_1_1W9A0814.jpg?width=232&amp;height=168&amp;quality=80" alt="303" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">13 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">303</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>583 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 22 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->19</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]" data-sentry-component="AvailabilityText" data-sentry-source-file="unit-groups.tsx">Disponible le October 1, 2026</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,790</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,525</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div><div aria-hidden="true" class="h-px bg-[var(--ed-hairline-soft)]"></div><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?unit=caa0aaf5-f19f-4eab-aa67-71ad1e011e2d" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0002-002_1_1W9A0814-min.jpg?width=232&amp;height=168&amp;quality=80" alt="306" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">13 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">306</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>583 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 22 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->19</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,790</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,525</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div><div aria-hidden="true" class="h-px bg-[var(--ed-hairline-soft)]"></div><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?unit=74b66039-ec58-425b-9d1e-43c092cacde0" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/0__0007-007511w9a0879-min.jpg?width=232&amp;height=168&amp;quality=80" alt="406" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">15 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">406</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>Étage 3</span><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>583 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 24 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->21</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]" data-sentry-component="AvailabilityText" data-sentry-source-file="unit-groups.tsx">Disponible le November 1, 2026</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,825</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,559</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div><div aria-hidden="true" class="h-px bg-[var(--ed-hairline-soft)]"></div><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?unit=370aa130-a375-4746-ace7-db2d96562d84" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/0__0003-003461w9a0969-min.jpg?width=232&amp;height=168&amp;quality=80" alt="201" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">14 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">201</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>Étage 1</span><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>747 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 25 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->22</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,908</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,750</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div><div aria-hidden="true" class="h-px bg-[var(--ed-hairline-soft)]"></div><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?unit=5c43bf3b-0862-418c-a8dc-a8ecc2689c1c" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/0__0003-003461w9a0969-min.jpg?width=232&amp;height=168&amp;quality=80" alt="401" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">14 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">401</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>747 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 25 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->22</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,975</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,800</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div></div></div><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2"><span class="ed-serif text-[var(--ed-ink)] text-[18px] sm:text-[22px]">2 chambres</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details/gallery?unit=bb588769-b13c-4ded-a71c-0b189cd7db58" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/0__0007-007261w9a1846-min.jpg?width=232&amp;height=168&amp;quality=80" alt="105" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">15 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">105</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>Étage 0</span><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>1,257 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 25 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->22</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]" data-sentry-component="AvailabilityText" data-sentry-source-file="unit-groups.tsx">Disponible le October 1, 2026</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$2,690</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,995</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div></div></div></div></div></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/2b7e9e6b-3260-40d8-8ddf-9ef7629e1b39/exterieur_D.jpg?width=192&amp;height=144&amp;quality=80" alt="PURE" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">PURE</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">7 sur 7 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">905 Chemin Vanier</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,650<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/40a5efb0-53f5-4050-9f41-1a28066ce459/0__edc3ec00-145a-4874-960a-5bd67978d4c4.webp?width=192&amp;height=144&amp;quality=80" alt="PURE" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">PURE</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">5 sur 5 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">933 Chemin Vanier</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,525<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/3d9df40d-52f9-4494-ab7c-d544807f1181/0__edc3ec00-145a-4874-960a-5bd67978d4c4.webp?width=192&amp;height=144&amp;quality=80" alt="PURE" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">PURE</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">5 sur 5 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">925 Chemin Vanier</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,559<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/aecf77df-5d99-4961-b35a-484471d41470/0__edc3ec00-145a-4874-960a-5bd67978d4c4.webp?width=192&amp;height=144&amp;quality=80" alt="PURE" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">PURE</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">3 sur 3 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">917 Chemin Vanier</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,320<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/a39a05d3-ac63-4d14-ac1e-2d2c3e081f1d/1__exterieur-d.jpg?width=192&amp;height=144&amp;quality=80" alt="PURE" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">PURE</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">4 sur 4 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">929 Chemin Vanier · Aylmer</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,525<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/edc3ec00-145a-4874-960a-5bd67978d4c4/NewColor_D.jpg?width=192&amp;height=144&amp;quality=80" alt="PURE" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">PURE</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">3 sur 3 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">909 Chemin Vanier</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,525<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/e46186b7-6b0a-4ea0-aadb-c919ce6b2b80/ee64d4b0-e736-4b47-a6b3-34ac719c9f37?width=192&amp;height=144&amp;quality=80" alt="PURE" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">PURE</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">2 sur 2 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">913 Chemin Vanier</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,525<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div></div></div><div id="location" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,78px)+24px)] border-t border-[var(--ed-hairline)] pt-[var(--ed-section-pad)]"><h2 data-ed-reveal="true" class="ed-serif m-0 mb-6 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] sm:mb-8">Emplacement</h2><div class="flex flex-wrap items-stretch gap-6 sm:gap-9"><!--$?--><template id="B:1"></template><!--/$--><div data-ed-reveal="true" class="relative min-h-[260px] flex-1 basis-[420px] overflow-hidden rounded-[18px] border border-[var(--ed-hairline)] bg-[#efede6] sm:min-h-[320px]" data-sentry-component="EditorialMap" data-sentry-source-file="location.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div aria-hidden="true" class="absolute left-1/2 top-[48%] -translate-x-1/2 -translate-y-full"><svg width="40" height="40" viewBox="0 0 24 24" fill="#1A1A17" stroke="#fff" stroke-width="1.4" role="presentation" data-sentry-element="svg" data-sentry-component="InkPin" data-sentry-source-file="location.tsx"><path d="M12 22s-7-7.2-7-12a7 7 0 1 1 14 0c0 4.8-7 12-7 12z" data-sentry-element="path" data-sentry-source-file="location.tsx"></path><circle cx="12" cy="10" r="2.4" fill="#fff" stroke="none" data-sentry-element="circle" data-sentry-source-file="location.tsx"></circle></svg></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div class="ed-caption ed-caption-on-map pointer-events-none absolute bottom-3.5 left-4 rounded-full bg-white/85 px-3 py-1.5 backdrop-blur-[2px]">GATINEAU</div></div></div><a href="https://www.google.com/maps/dir/?api=1&amp;destination=45.434211,-75.817957" target="_blank" rel="noopener noreferrer" class="mt-2.5 inline-block py-2.5 text-[14.5px] text-[var(--ed-secondary)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink)] sm:mt-5 sm:py-0" data-sentry-component="EditorialDirectionsLink" data-sentry-source-file="location.tsx">Obtenir l&#x27;itinéraire<!-- --> ↗</a></div></main><div aria-hidden="true" class="sticky bottom-[calc(var(--footer-height)+env(safe-area-inset-bottom))] z-40 -mx-3.5 border-t border-[var(--ed-band-line)] bg-white px-3.5 transition-[transform,visibility] duration-300 lg:bottom-0 pointer-events-none invisible translate-y-[110%]" data-sentry-component="DetailsActionBar" data-sentry-source-file="action-bar.tsx"><div class="mx-auto flex h-[var(--ed-action-bar-height)] max-w-[1320px] items-center justify-between gap-3 px-1 sm:gap-4 sm:px-[clamp(20px,4.5vw,64px)]"><div class="min-w-0 overflow-hidden"><div class="truncate"><span class="text-[16px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[18px] lg:text-[19px]">À partir de $1,320</span><span class="hidden text-[13px] text-[var(--ed-secondary)] sm:inline"> <!-- -->/ mois</span></div></div><div class="flex shrink-0 items-center gap-5"><button type="button" class="inline-flex h-11 shrink-0 items-center gap-2 whitespace-nowrap rounded-full bg-[var(--ed-ink)] px-4 text-[14px] font-semibold text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:gap-2.5 sm:px-6 sm:text-[14.5px]"><span class="sm:hidden">Contactez-nous</span><span class="hidden sm:inline">Je suis intéressé par cette propriété</span><span></span></button></div></div></div><div aria-hidden="true" data-testid="units-spotlight-scrim" class="fixed inset-0 z-[45] bg-[rgba(26,26,23,0.35)] transition-opacity duration-300 motion-reduce:transition-none pointer-events-none opacity-0" data-sentry-component="UnitsSpotlightScrim" data-sentry-source-file="units-spotlight.tsx"></div></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/project-detail.page-BFNjsI3w.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",
323 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
324 + "/assets/index-DGzYOEP8.js",
325 + "/assets/Item-DuavYi1u.js",
326 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
327 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
328 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
329 + "/assets/useControlledState-C6ovzWeF.js",
330 + "/assets/useField-CBKMx-DQ.js",
331 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
332 + "/assets/chunk-M3MASYO7-COH9P04M.js",
333 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
334 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
335 + "/assets/useToggleState-DY8z2i0t.js",
336 + "/assets/index-BzZ-MzUq.js",
337 + "/assets/useToggle-QKKEqo_x.js",
338 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
339 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
340 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
341 + "/assets/use-tenant-wE0zDJ1a.js",
342 + "/assets/use-debounce-D23YJQRM.js",
343 + "/assets/use-debounced-callback-Do1iUmMt.js",
344 + "/assets/locale-switcher-kD-MOI9x.js",
345 + "/assets/use-show-profile-modal-Cgfts1ut.js",
346 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
347 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
348 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
349 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
350 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
351 + "/assets/getItemCount-BQolBIkZ.js",
352 + "/assets/useSelectableItem-Ds0Ihirs.js",
353 + "/assets/useDescription-DF6TDnVi.js",
354 + "/assets/index-D8QbWu84.js",
355 + "/assets/useMenuTriggerState-CHKcWOlC.js",
356 + "/assets/useMenuTrigger-DKFjnCNZ.js",
357 + "/assets/show-BOEsnqQk.js",
358 + "/assets/index-BxwHZyk5.js",
359 + "/assets/use-screenshot-mode-RoZeXH-d.js",
360 + "/assets/storage-image-BRiFwsnF.js",
361 + "/assets/debug-build-VZlf1Aof.js",
362 + "/assets/empty-image-DeSmMdF3.js",
363 + "/assets/storage-JzkTKPy4.js",
364 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
365 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
366 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
367 + "/assets/use-auth-D_t8q_v4.js",
368 + "/assets/OtpInput-CJhAm1Gc.js",
369 + "/assets/roles-Cde3N6LE.js",
370 + "/assets/chunk-T45N425O-CCF24x8B.js",
371 + "/assets/index-CwlnhZHs.js",
372 + "/assets/tooltip-_QqyKTfK.js",
373 + "/assets/eversa-logo-DmkjJgjq.js",
374 + "/assets/exports-mapbox-Dy-MMXYe.js",
375 + "/assets/client-CpT78rmL.js",
376 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
377 + "/assets/useProgressBar-DhWwJb16.js",
378 + "/assets/index-Cy2bmlj7.js",
379 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
380 + "/assets/std-cron-C0Hf3jWh.js",
381 + "/assets/legacy-date-D-X4tG6T.js",
382 + "/assets/use-is-iframe-DIKEri2l.js",
383 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
384 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
385 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
386 + "/assets/link-CrZmIZC6.js",
387 + "/assets/rich-text-display--Qas76Hg.js",
388 + "/assets/utils-D0p-v41w.js",
389 + "/assets/signature-block-8SMePIUg.js",
390 + "/assets/index-DqzG1Q9x.js",
391 + "/assets/client-only-BGvaz0Jn.js",
392 + "/assets/use-hydrated-nn_6IPIK.js",
393 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
394 + "/assets/settings.types-CTRD0B_j.js",
395 + "/assets/input-CkQmsiJb.js",
396 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
397 + "/assets/extends-BSSSaanF.js",
398 + "/assets/user-menu-BuoWMPG0.js",
399 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
400 + "/assets/index-CRabYQb-.js",
401 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
402 + "/assets/Section-CaP3oBph.js",
403 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
404 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
405 + "/assets/LiveAnnouncer-CnNJa9NI.js",
406 + "/assets/useUpdateEffect-DsCDOPa2.js",
407 + "/assets/index-BT5H2sjL.js",
408 + "/assets/features-animation-BCPmlPPs.js",
409 + "/assets/index-8boKsGvQ.js",
410 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
411 + "/assets/use-server-command-DJ0CxbuT.js",
412 + "/assets/create-rpc-stub-SmqOCk37.js",
413 + "/assets/index-BoeY4VQ9.js",
414 + "/assets/app-form-CRPZmLNY.js",
415 + "/assets/button-KaTnxiWj.js",
416 + "/assets/spinner-DDyy7LQF.js",
417 + "/assets/zod-CmeTJI5u.js",
418 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
419 + "/assets/form-hidden-input-DI5aJPYE.js",
420 + "/assets/form-input-C6s4itpV.js",
421 + "/assets/system-preferences-DL4TO29S.js",
422 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
423 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
424 + "/assets/use-in-view-BNnh4L6M.js",
425 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js",
426 + "/assets/should-revalidate-for-modal-BjoLrI2F.js"
427 + ],
428 + "css": [
429 + "/assets/rich-text-editor-D9Rskyfk.css#",
430 + "/assets/listing-card-CI-uxcFh.css"
431 + ]
432 + },
433 + "PublicProjectDetailPage": {
434 + "id": "PublicProjectDetailPage",
435 + "parentId": "PublicListingsLayoutPage",
436 + "path": "project/:id/details",
437 + "hasAction": false,
438 + "hasLoader": true,
439 + "hasClientAction": false,
440 + "hasClientLoader": false,
441 + "hasClientMiddleware": false,
442 + "hasDefaultExport": true,
443 + "hasErrorBoundary": true,
444 + "module": "/assets/project-detail.page-BFNjsI3w.js",
445 + "imports": [
446 + "/assets/chunk-QUQL4437-m7Whu12z.js",
447 + "/assets/jsx-runtime-umhk6iWe.js",
448 + "/assets/runtime-MtUT-9pW.js",
449 + "/assets/instance-Dwq5XJYG.js",
450 + "/assets/locale-rlhQ6FjN.js",
451 + "/assets/i18n-CTdcZBaW.js",
452 + "/assets/use-localized-path-BMxKZwMg.js",
453 + "/assets/detail-error-boundary-C3TWahqB.js",
454 + "/assets/seo.helpers-rKbdQkhM.js",
455 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
456 + "/assets/listing-card-Cg3TPyWe.js",
457 + "/assets/types-BKXG3Vd5.js",
458 + "/assets/date-C7fQmg2U.js",
459 + "/assets/format-BKStloXP.js",
460 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
461 + "/assets/formatDistanceToNow-BvwR-I5H.js",
462 + "/assets/paths-CiQnXl4X.js",
463 + "/assets/use-tenant-wE0zDJ1a.js",
464 + "/assets/icon-D77RBjQx.js",
465 + "/assets/index-blsAimsU.js",
466 + "/assets/chunk-T45N425O-CCF24x8B.js",
467 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
468 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
469 + "/assets/preload-helper-Cer9inx8.js",
470 + "/assets/index-DmhvH8SD.js",
471 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
472 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
473 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
474 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
475 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
476 + "/assets/runtime-TD3m583z.js",
477 + "/assets/exports-mapbox-Dy-MMXYe.js",
478 + "/assets/index-DJnVLKJF.js",
479 + "/assets/use-locale-BnwvbFV-.js",
480 + "/assets/show-BOEsnqQk.js",
481 + "/assets/client-CpT78rmL.js",
482 + "/assets/index-CXP4lC37.js",
483 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
484 + "/assets/useProgressBar-DhWwJb16.js",
485 + "/assets/number-lhSI2oqU.js",
486 + "/assets/useLabel-FzyH2LZi.js",
487 + "/assets/useLabels-BL4rQGMb.js",
488 + "/assets/useNumberFormatter-DG2VO0C1.js",
489 + "/assets/context-C7uvIu_A.js",
490 + "/assets/NumberFormatter-BWU_gJyt.js",
491 + "/assets/index-Cy2bmlj7.js",
492 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
493 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
494 + "/assets/mergeRefs-C8xtGVp3.js",
495 + "/assets/useControlledState-Dl_rDvO0.js",
496 + "/assets/FocusScope-CWuTxhav.js",
497 + "/assets/useField-CBKMx-DQ.js",
498 + "/assets/useFormValidation-BlL8vXtt.js",
499 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
500 + "/assets/std-cron-C0Hf3jWh.js",
501 + "/assets/legacy-date-D-X4tG6T.js",
502 + "/assets/listingTypes-CkyCgPCr.js",
503 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
504 + "/assets/useButton-DZK-beuH.js",
505 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
506 + "/assets/useOverlayTriggerState-woQJgDxB.js",
507 + "/assets/index-B915wqUE.js",
508 + "/assets/accelerated-values-ClBEnI7v.js",
509 + "/assets/useTreeState-Dx1W0YuM.js",
510 + "/assets/SelectionManager-BmJrKgY4.js",
511 + "/assets/scrollIntoView-BWAA50rI.js",
512 + "/assets/isScrollable-Dnxj3NSq.js",
513 + "/assets/useSelectableList-BOP0KhmN.js",
514 + "/assets/DOMLayoutDelegate-Brany3qe.js",
515 + "/assets/useCollator-CbJkpXG2.js",
516 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
517 + "/assets/index-DGzYOEP8.js",
518 + "/assets/Item-DuavYi1u.js",
519 + "/assets/use-is-iframe-DIKEri2l.js",
520 + "/assets/floor-label-CGeBlKR2.js",
521 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
522 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
523 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
524 + "/assets/storage-image-BRiFwsnF.js",
525 + "/assets/debug-build-VZlf1Aof.js",
526 + "/assets/empty-image-DeSmMdF3.js",
527 + "/assets/storage-JzkTKPy4.js",
528 + "/assets/link-CrZmIZC6.js",
529 + "/assets/modal-BG3X61k6.js",
530 + "/assets/modal-root-haL454LR.js",
531 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
532 + "/assets/useDialog-Bh9KG6MB.js",
533 + "/assets/VisuallyHidden-D-Q2SU4O.js",
534 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
535 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
536 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
537 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
538 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
539 + "/assets/proxy-BlmPTkqy.js",
540 + "/assets/create-visual-element-Cc1-iv7S.js",
541 + "/assets/layout-CqatgvGE.js",
542 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
543 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
544 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
545 + "/assets/index-DuhTrrt1.js",
546 + "/assets/useModal-C3khzgYn.js",
547 + "/assets/index-BxwHZyk5.js",
548 + "/assets/rich-text-display--Qas76Hg.js",
549 + "/assets/utils-D0p-v41w.js",
550 + "/assets/signature-block-8SMePIUg.js",
551 + "/assets/index-DqzG1Q9x.js",
552 + "/assets/client-only-BGvaz0Jn.js",
553 + "/assets/use-hydrated-nn_6IPIK.js",
554 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
555 + "/assets/chunk-M3MASYO7-COH9P04M.js",
556 + "/assets/settings.types-CTRD0B_j.js",
557 + "/assets/use-show-profile-modal-Cgfts1ut.js",
558 + "/assets/input-CkQmsiJb.js",
559 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
560 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
561 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
562 + "/assets/useControlledState-C6ovzWeF.js",
563 + "/assets/extends-BSSSaanF.js",
564 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
565 + "/assets/use-debounce-D23YJQRM.js",
566 + "/assets/use-debounced-callback-Do1iUmMt.js",
567 + "/assets/use-auth-D_t8q_v4.js",
568 + "/assets/OtpInput-CJhAm1Gc.js",
569 + "/assets/roles-Cde3N6LE.js",
570 + "/assets/index-CwlnhZHs.js",
571 + "/assets/index-BzZ-MzUq.js",
572 + "/assets/powered-by-eversa-BF980dJS.js",
573 + "/assets/tooltip-_QqyKTfK.js",
574 + "/assets/eversa-logo-DmkjJgjq.js",
575 + "/assets/use-screenshot-mode-RoZeXH-d.js",
576 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
577 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
578 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
579 + "/assets/getItemCount-BQolBIkZ.js",
580 + "/assets/useSelectableItem-Ds0Ihirs.js",
581 + "/assets/useDescription-DF6TDnVi.js",
582 + "/assets/index-D8QbWu84.js",
583 + "/assets/useMenuTriggerState-CHKcWOlC.js",
584 + "/assets/useMenuTrigger-DKFjnCNZ.js",
585 + "/assets/user-menu-BuoWMPG0.js",
586 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
587 + "/assets/index-CRabYQb-.js",
588 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
589 + "/assets/Section-CaP3oBph.js",
590 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
591 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
592 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
593 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
594 + "/assets/LiveAnnouncer-CnNJa9NI.js",
595 + "/assets/useUpdateEffect-DsCDOPa2.js",
596 + "/assets/index-BT5H2sjL.js",
597 + "/assets/features-animation-BCPmlPPs.js",
598 + "/assets/index-8boKsGvQ.js",
599 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
600 + "/assets/use-server-command-DJ0CxbuT.js",
601 + "/assets/create-rpc-stub-SmqOCk37.js",
602 + "/assets/index-BoeY4VQ9.js",
603 + "/assets/app-form-CRPZmLNY.js",
604 + "/assets/button-KaTnxiWj.js",
605 + "/assets/spinner-DDyy7LQF.js",
606 + "/assets/zod-CmeTJI5u.js",
607 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
608 + "/assets/form-hidden-input-DI5aJPYE.js",
609 + "/assets/form-input-C6s4itpV.js",
610 + "/assets/system-preferences-DL4TO29S.js",
611 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
612 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
613 + "/assets/use-in-view-BNnh4L6M.js",
614 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
615 + ],
616 + "css": [
617 + "/assets/rich-text-editor-D9Rskyfk.css#",
618 + "/assets/listing-card-CI-uxcFh.css"
619 + ]
620 + },
621 + "PublicHomePage": {
622 + "id": "PublicHomePage",
623 + "parentId": "public-language",
624 + "path": "",
625 + "hasAction": false,
626 + "hasLoader": true,
627 + "hasClientAction": false,
628 + "hasClientLoader": false,
629 + "hasClientMiddleware": false,
630 + "hasDefaultExport": true,
631 + "hasErrorBoundary": false,
632 + "module": "/assets/home.page-CEey5s8m.js",
633 + "imports": [
634 + "/assets/chunk-QUQL4437-m7Whu12z.js",
635 + "/assets/jsx-runtime-umhk6iWe.js",
636 + "/assets/runtime-MtUT-9pW.js",
637 + "/assets/facebook-pixel-B5MxbSaJ.js",
638 + "/assets/google-analytics-D-bO2gMa.js",
639 + "/assets/lead-capture-config.helpers-DpZ6az3C.js",
640 + "/assets/global-progress-CjDASA7T.js",
641 + "/assets/header-BBMyfPB0.js",
642 + "/assets/footer-Byz07yjl.js",
643 + "/assets/listing-card-Cg3TPyWe.js",
644 + "/assets/seo.helpers-rKbdQkhM.js",
645 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
646 + "/assets/types-BKXG3Vd5.js",
647 + "/assets/index-CXP4lC37.js",
648 + "/assets/use-locale-BnwvbFV-.js",
649 + "/assets/instance-Dwq5XJYG.js",
650 + "/assets/locale-rlhQ6FjN.js",
651 + "/assets/lead-capture-layout-D9cSW77z.js",
652 + "/assets/locale-switcher-kD-MOI9x.js",
653 + "/assets/use-show-profile-modal-Cgfts1ut.js",
654 + "/assets/i18n-CTdcZBaW.js",
655 + "/assets/date-C7fQmg2U.js",
656 + "/assets/format-BKStloXP.js",
657 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
658 + "/assets/formatDistanceToNow-BvwR-I5H.js",
659 + "/assets/paths-CiQnXl4X.js",
660 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
661 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
662 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
663 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
664 + "/assets/preload-helper-Cer9inx8.js",
665 + "/assets/index-DmhvH8SD.js",
666 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
667 + "/assets/Item-DuavYi1u.js",
668 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
669 + "/assets/useDialog-Bh9KG6MB.js",
670 + "/assets/VisuallyHidden-D-Q2SU4O.js",
671 + "/assets/isScrollable-Dnxj3NSq.js",
672 + "/assets/useLabels-BL4rQGMb.js",
673 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
674 + "/assets/context-C7uvIu_A.js",
675 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
676 + "/assets/FocusScope-CWuTxhav.js",
677 + "/assets/index-DJnVLKJF.js",
678 + "/assets/useOverlayTriggerState-woQJgDxB.js",
679 + "/assets/useControlledState-Dl_rDvO0.js",
680 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
681 + "/assets/number-lhSI2oqU.js",
682 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
683 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
684 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
685 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
686 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
687 + "/assets/index-DuhTrrt1.js",
688 + "/assets/mergeRefs-C8xtGVp3.js",
689 + "/assets/getItemCount-BQolBIkZ.js",
690 + "/assets/SelectionManager-BmJrKgY4.js",
691 + "/assets/scrollIntoView-BWAA50rI.js",
692 + "/assets/useSelectableItem-Ds0Ihirs.js",
693 + "/assets/useDescription-DF6TDnVi.js",
694 + "/assets/index-D8QbWu84.js",
695 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
696 + "/assets/useSelectableList-BOP0KhmN.js",
697 + "/assets/DOMLayoutDelegate-Brany3qe.js",
698 + "/assets/useCollator-CbJkpXG2.js",
699 + "/assets/useTreeState-Dx1W0YuM.js",
700 + "/assets/useMenuTriggerState-CHKcWOlC.js",
701 + "/assets/useMenuTrigger-DKFjnCNZ.js",
702 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
703 + "/assets/index-blsAimsU.js",
704 + "/assets/storage-image-BRiFwsnF.js",
705 + "/assets/icon-D77RBjQx.js",
706 + "/assets/debug-build-VZlf1Aof.js",
707 + "/assets/empty-image-DeSmMdF3.js",
708 + "/assets/storage-JzkTKPy4.js",
709 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
710 + "/assets/use-tenant-wE0zDJ1a.js",
711 + "/assets/use-localized-path-BMxKZwMg.js",
712 + "/assets/modal-BG3X61k6.js",
713 + "/assets/runtime-TD3m583z.js",
714 + "/assets/modal-root-haL454LR.js",
715 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
716 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
717 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
718 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
719 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
720 + "/assets/proxy-BlmPTkqy.js",
721 + "/assets/create-visual-element-Cc1-iv7S.js",
722 + "/assets/accelerated-values-ClBEnI7v.js",
723 + "/assets/layout-CqatgvGE.js",
724 + "/assets/listingTypes-CkyCgPCr.js",
725 + "/assets/floor-label-CGeBlKR2.js",
726 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
727 + "/assets/useFormValidation-BlL8vXtt.js",
728 + "/assets/useLabel-FzyH2LZi.js",
729 + "/assets/useNumberFormatter-DG2VO0C1.js",
730 + "/assets/NumberFormatter-BWU_gJyt.js",
731 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
732 + "/assets/useModal-C3khzgYn.js",
733 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
734 + "/assets/useButton-DZK-beuH.js",
735 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
736 + "/assets/index-B915wqUE.js",
737 + "/assets/index-DGzYOEP8.js",
738 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
739 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
740 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
741 + "/assets/useControlledState-C6ovzWeF.js",
742 + "/assets/useField-CBKMx-DQ.js",
743 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
744 + "/assets/chunk-M3MASYO7-COH9P04M.js",
745 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
746 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
747 + "/assets/useToggleState-DY8z2i0t.js",
748 + "/assets/index-BzZ-MzUq.js",
749 + "/assets/useToggle-QKKEqo_x.js",
750 + "/assets/use-debounce-D23YJQRM.js",
751 + "/assets/use-debounced-callback-Do1iUmMt.js",
752 + "/assets/show-BOEsnqQk.js",
753 + "/assets/index-BxwHZyk5.js",
754 + "/assets/use-screenshot-mode-RoZeXH-d.js",
755 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
756 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
757 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
758 + "/assets/powered-by-eversa-BF980dJS.js",
759 + "/assets/tooltip-_QqyKTfK.js",
760 + "/assets/eversa-logo-DmkjJgjq.js",
761 + "/assets/use-auth-D_t8q_v4.js",
762 + "/assets/OtpInput-CJhAm1Gc.js",
763 + "/assets/roles-Cde3N6LE.js",
764 + "/assets/chunk-T45N425O-CCF24x8B.js",
765 + "/assets/index-CwlnhZHs.js",
766 + "/assets/exports-mapbox-Dy-MMXYe.js",
767 + "/assets/client-CpT78rmL.js",
768 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
769 + "/assets/useProgressBar-DhWwJb16.js",
770 + "/assets/index-Cy2bmlj7.js",
771 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
772 + "/assets/std-cron-C0Hf3jWh.js",
773 + "/assets/legacy-date-D-X4tG6T.js",
774 + "/assets/use-is-iframe-DIKEri2l.js",
775 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
776 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
777 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
778 + "/assets/link-CrZmIZC6.js",
779 + "/assets/rich-text-display--Qas76Hg.js",
780 + "/assets/utils-D0p-v41w.js",
781 + "/assets/signature-block-8SMePIUg.js",
782 + "/assets/index-DqzG1Q9x.js",
783 + "/assets/client-only-BGvaz0Jn.js",
784 + "/assets/use-hydrated-nn_6IPIK.js",
785 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
786 + "/assets/settings.types-CTRD0B_j.js",
787 + "/assets/input-CkQmsiJb.js",
788 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
789 + "/assets/extends-BSSSaanF.js",
790 + "/assets/user-menu-BuoWMPG0.js",
791 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
792 + "/assets/index-CRabYQb-.js",
793 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
794 + "/assets/Section-CaP3oBph.js",
795 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
796 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
797 + "/assets/LiveAnnouncer-CnNJa9NI.js",
798 + "/assets/useUpdateEffect-DsCDOPa2.js",
799 + "/assets/index-BT5H2sjL.js",
800 + "/assets/features-animation-BCPmlPPs.js",
801 + "/assets/index-8boKsGvQ.js",
802 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
803 + "/assets/use-server-command-DJ0CxbuT.js",
804 + "/assets/create-rpc-stub-SmqOCk37.js",
805 + "/assets/index-BoeY4VQ9.js",
806 + "/assets/app-form-CRPZmLNY.js",
807 + "/assets/button-KaTnxiWj.js",
808 + "/assets/spinner-DDyy7LQF.js",
809 + "/assets/zod-CmeTJI5u.js",
810 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
811 + "/assets/form-hidden-input-DI5aJPYE.js",
812 + "/assets/form-input-C6s4itpV.js",
813 + "/assets/system-preferences-DL4TO29S.js",
814 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
815 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
816 + "/assets/use-in-view-BNnh4L6M.js",
817 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
818 + ],
819 + "css": [
820 + "/assets/rich-text-editor-D9Rskyfk.css#",
821 + "/assets/listing-card-CI-uxcFh.css"
822 + ]
823 + },
824 + "root.not-found": {
825 + "id": "root.not-found",
826 + "parentId": "root",
827 + "path": "*",
828 + "hasAction": false,
829 + "hasLoader": false,
830 + "hasClientAction": false,
831 + "hasClientLoader": false,
832 + "hasClientMiddleware": false,
833 + "hasDefaultExport": true,
834 + "hasErrorBoundary": false,
835 + "module": "/assets/root.not-found-D01c4GbZ.js",
836 + "imports": [
837 + "/assets/root.not-found-DP5tZm2i.js",
838 + "/assets/chunk-QUQL4437-m7Whu12z.js",
839 + "/assets/jsx-runtime-umhk6iWe.js",
840 + "/assets/icon-D77RBjQx.js",
841 + "/assets/index-blsAimsU.js",
842 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
843 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
844 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
845 + "/assets/preload-helper-Cer9inx8.js",
846 + "/assets/index-DmhvH8SD.js",
847 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
848 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
849 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
850 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
851 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js"
852 + ],
853 + "css": []
854 + },
855 + "PublicListingsIndexPage": {
856 + "id": "PublicListingsIndexPage",
857 + "parentId": "PublicListingsLayoutPage",
858 + "path": "",
859 + "hasAction": false,
860 + "hasLoader": false,
861 + "hasClientAction": false,
862 + "hasClientLoader": false,
863 + "hasClientMiddleware": false,
864 + "hasDefaultExport": true,
865 + "hasErrorBoundary": false,
866 + "module": "/assets/listings-index.page-DjplF3AX.js",
867 + "imports": [
868 + "/assets/chunk-QUQL4437-m7Whu12z.js",
869 + "/assets/jsx-runtime-umhk6iWe.js",
870 + "/assets/runtime-MtUT-9pW.js",
871 + "/assets/instance-Dwq5XJYG.js",
872 + "/assets/locale-rlhQ6FjN.js",
873 + "/assets/use-localized-path-BMxKZwMg.js",
874 + "/assets/listing-card-Cg3TPyWe.js",
875 + "/assets/types-BKXG3Vd5.js",
876 + "/assets/i18n-CTdcZBaW.js",
877 + "/assets/date-C7fQmg2U.js",
878 + "/assets/format-BKStloXP.js",
879 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
880 + "/assets/formatDistanceToNow-BvwR-I5H.js",
881 + "/assets/paths-CiQnXl4X.js",
882 + "/assets/use-tenant-wE0zDJ1a.js",
883 + "/assets/runtime-TD3m583z.js",
884 + "/assets/exports-mapbox-Dy-MMXYe.js",
885 + "/assets/index-DJnVLKJF.js",
886 + "/assets/use-locale-BnwvbFV-.js",
887 + "/assets/icon-D77RBjQx.js",
888 + "/assets/show-BOEsnqQk.js",
889 + "/assets/client-CpT78rmL.js",
890 + "/assets/index-CXP4lC37.js",
891 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
892 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
893 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
894 + "/assets/useProgressBar-DhWwJb16.js",
895 + "/assets/preload-helper-Cer9inx8.js",
896 + "/assets/index-DmhvH8SD.js",
897 + "/assets/number-lhSI2oqU.js",
898 + "/assets/useLabel-FzyH2LZi.js",
899 + "/assets/useLabels-BL4rQGMb.js",
900 + "/assets/useNumberFormatter-DG2VO0C1.js",
901 + "/assets/context-C7uvIu_A.js",
902 + "/assets/NumberFormatter-BWU_gJyt.js",
903 + "/assets/index-Cy2bmlj7.js",
904 + "/assets/index-blsAimsU.js",
905 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
906 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
907 + "/assets/mergeRefs-C8xtGVp3.js",
908 + "/assets/useControlledState-Dl_rDvO0.js",
909 + "/assets/FocusScope-CWuTxhav.js",
910 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
911 + "/assets/useField-CBKMx-DQ.js",
912 + "/assets/useFormValidation-BlL8vXtt.js",
913 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
914 + "/assets/std-cron-C0Hf3jWh.js",
915 + "/assets/legacy-date-D-X4tG6T.js",
916 + "/assets/listingTypes-CkyCgPCr.js",
917 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
918 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
919 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
920 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
921 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
922 + "/assets/useButton-DZK-beuH.js",
923 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
924 + "/assets/useOverlayTriggerState-woQJgDxB.js",
925 + "/assets/index-B915wqUE.js",
926 + "/assets/accelerated-values-ClBEnI7v.js",
927 + "/assets/useTreeState-Dx1W0YuM.js",
928 + "/assets/SelectionManager-BmJrKgY4.js",
929 + "/assets/scrollIntoView-BWAA50rI.js",
930 + "/assets/isScrollable-Dnxj3NSq.js",
931 + "/assets/useSelectableList-BOP0KhmN.js",
932 + "/assets/DOMLayoutDelegate-Brany3qe.js",
933 + "/assets/useCollator-CbJkpXG2.js",
934 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
935 + "/assets/index-DGzYOEP8.js",
936 + "/assets/Item-DuavYi1u.js",
937 + "/assets/use-is-iframe-DIKEri2l.js",
938 + "/assets/floor-label-CGeBlKR2.js",
939 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
940 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
941 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
942 + "/assets/storage-image-BRiFwsnF.js",
943 + "/assets/debug-build-VZlf1Aof.js",
944 + "/assets/empty-image-DeSmMdF3.js",
945 + "/assets/storage-JzkTKPy4.js",
946 + "/assets/link-CrZmIZC6.js",
947 + "/assets/chunk-T45N425O-CCF24x8B.js",
948 + "/assets/modal-BG3X61k6.js",
949 + "/assets/modal-root-haL454LR.js",
950 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
951 + "/assets/useDialog-Bh9KG6MB.js",
952 + "/assets/VisuallyHidden-D-Q2SU4O.js",
953 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
954 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
955 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
956 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
957 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
958 + "/assets/proxy-BlmPTkqy.js",
959 + "/assets/create-visual-element-Cc1-iv7S.js",
960 + "/assets/layout-CqatgvGE.js",
961 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
962 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
963 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
964 + "/assets/index-DuhTrrt1.js",
965 + "/assets/useModal-C3khzgYn.js",
966 + "/assets/index-BxwHZyk5.js",
967 + "/assets/rich-text-display--Qas76Hg.js",
968 + "/assets/utils-D0p-v41w.js",
969 + "/assets/signature-block-8SMePIUg.js",
970 + "/assets/index-DqzG1Q9x.js",
971 + "/assets/client-only-BGvaz0Jn.js",
972 + "/assets/use-hydrated-nn_6IPIK.js",
973 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
974 + "/assets/chunk-M3MASYO7-COH9P04M.js",
975 + "/assets/settings.types-CTRD0B_j.js",
976 + "/assets/use-show-profile-modal-Cgfts1ut.js",
977 + "/assets/input-CkQmsiJb.js",
978 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
979 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
980 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
981 + "/assets/useControlledState-C6ovzWeF.js",
982 + "/assets/extends-BSSSaanF.js",
983 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
984 + "/assets/use-debounce-D23YJQRM.js",
985 + "/assets/use-debounced-callback-Do1iUmMt.js",
986 + "/assets/use-auth-D_t8q_v4.js",
987 + "/assets/OtpInput-CJhAm1Gc.js",
988 + "/assets/roles-Cde3N6LE.js",
989 + "/assets/index-CwlnhZHs.js",
990 + "/assets/index-BzZ-MzUq.js",
991 + "/assets/powered-by-eversa-BF980dJS.js",
992 + "/assets/tooltip-_QqyKTfK.js",
993 + "/assets/eversa-logo-DmkjJgjq.js",
994 + "/assets/use-screenshot-mode-RoZeXH-d.js",
995 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
996 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
997 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
998 + "/assets/getItemCount-BQolBIkZ.js",
999 + "/assets/useSelectableItem-Ds0Ihirs.js",
1000 + "/assets/useDescription-DF6TDnVi.js",
1001 + "/assets/index-D8QbWu84.js",
1002 + "/assets/useMenuTriggerState-CHKcWOlC.js",
1003 + "/assets/useMenuTrigger-DKFjnCNZ.js",
1004 + "/assets/user-menu-BuoWMPG0.js",
1005 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
1006 + "/assets/index-CRabYQb-.js",
1007 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
1008 + "/assets/Section-CaP3oBph.js",
1009 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
1010 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
1011 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
1012 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
1013 + "/assets/LiveAnnouncer-CnNJa9NI.js",
1014 + "/assets/useUpdateEffect-DsCDOPa2.js",
1015 + "/assets/index-BT5H2sjL.js",
1016 + "/assets/features-animation-BCPmlPPs.js",
1017 + "/assets/index-8boKsGvQ.js",
1018 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
1019 + "/assets/use-server-command-DJ0CxbuT.js",
1020 + "/assets/create-rpc-stub-SmqOCk37.js",
1021 + "/assets/index-BoeY4VQ9.js",
1022 + "/assets/app-form-CRPZmLNY.js",
1023 + "/assets/button-KaTnxiWj.js",
1024 + "/assets/spinner-DDyy7LQF.js",
1025 + "/assets/zod-CmeTJI5u.js",
1026 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
1027 + "/assets/form-hidden-input-DI5aJPYE.js",
1028 + "/assets/form-input-C6s4itpV.js",
1029 + "/assets/system-preferences-DL4TO29S.js",
1030 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
1031 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
1032 + "/assets/use-in-view-BNnh4L6M.js",
1033 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
1034 + ],
1035 + "css": [
1036 + "/assets/rich-text-editor-D9Rskyfk.css#",
1037 + "/assets/listing-card-CI-uxcFh.css"
1038 + ]
1039 + }
1040 + },
1041 + "url": "/assets/manifest-2b2cda1e.js",
1042 + "version": "2b2cda1e"
1043 +};
1044 + window.__reactRouterRouteModules = {"root":route0,"public-language":route1,"PublicListingsLayoutPage":route2,"PublicProjectDetailPage":route3};
1045 +
1046 +import("/assets/entry.client-BIJa3TY3.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":-5,\"_8\":9,\"_10\":11},\"actionData\",\"errors\",\"root\",{\"_3571\":-5,\"_3572\":-7,\"_3573\":3574,\"_3575\":3576,\"_20\":21,\"_18\":3577,\"_3578\":-5,\"_3579\":3580,\"_3277\":3278,\"_3581\":-5,\"_3582\":-5},\"public-language\",\"PublicListingsLayoutPage\",{\"_18\":3265,\"_3266\":3267,\"_3268\":3269,\"_3270\":25,\"_3271\":3272,\"_3273\":60,\"_3274\":228,\"_3275\":3276,\"_3277\":3278,\"_3279\":25,\"_3280\":25,\"_3281\":25},\"PublicProjectDetailPage\",{\"_12\":13,\"_14\":15,\"_16\":17,\"_18\":19,\"_20\":21,\"_22\":23,\"_24\":25},\"listing\",{\"_46\":126,\"_127\":128,\"_129\":130,\"_96\":131,\"_132\":133,\"_84\":103,\"_134\":135,\"_115\":79,\"_118\":136,\"_116\":137,\"_36\":138,\"_139\":140,\"_141\":131,\"_142\":143,\"_144\":60,\"_145\":146,\"_147\":148,\"_149\":-5,\"_150\":25,\"_151\":152,\"_153\":154,\"_155\":156},\"auth\",{\"_124\":60,\"_125\":25},\"walkScore\",[\"P\",17],\"tenant\",{\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":40,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"lang\",\"fr\",\"pageUrl\",\"https://www.halfred.ca/fr/listings/project/61746f76-2212-43c5-b807-2ba59073c831/details\",\"noindex\",false,\"address\",{\"_96\":114,\"_84\":103,\"_115\":79,\"_116\":117,\"_118\":119,\"_120\":101,\"_121\":87,\"_90\":98,\"_122\":123},\"analytics\",{\"_108\":109,\"_110\":111,\"_112\":113},\"colors\",{\"_104\":105,\"_106\":107},\"contact\",{\"_69\":70,\"_71\":72,\"_26\":73},\"customDomains\",[62,63],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_58\":25,\"_59\":60,\"_61\":25},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{\"_54\":55,\"_56\":57},\"templateId\",\"editorial\",\"title\",\"Halfred | Apartment rentals\",\"showcase\",{},\"listingSortOrder\",\"smart\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_64\":68},{\"_64\":65,\"_66\":67},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_74\":75,\"_76\":77,\"_78\":79,\"_80\":81,\"_82\":83,\"_84\":85,\"_86\":87,\"_88\":89,\"_90\":91,\"_92\":93,\"_94\":95,\"_96\":79},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_97\":103,\"_99\":103},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_97\":101,\"_99\":102},\"country\",{\"_97\":98,\"_99\":100},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"loggedIn\",\"isStaff\",\"61746f76-2212-43c5-b807-2ba59073c831\",\"area\",1257,\"availabilty\",[\"D\",1790812800000],\"PURE\",\"buildingStreet\",\"929 Vanier Road\",\"buildingId\",\"c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39\",-75.817957,45.434211,{\"_276\":3263,\"_21\":3264},\"images\",[3259,3260,3261,3262],\"projectName\",\"buildingFeatures\",[],\"listed\",\"automatedApplyMode\",\"lead_form\",\"leadFormConfig\",{\"_3242\":3243,\"_3244\":3245},\"featureSiteSubdomain\",\"featureSiteEnabled\",\"units\",[2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301],\"buildings\",[174,175,176,177,178,179,180,181],\"cardData\",{\"_46\":126,\"_96\":131,\"_84\":103,\"_115\":79,\"_116\":137,\"_118\":136,\"_157\":-5,\"_158\":159,\"_160\":161,\"_127\":162,\"_163\":164,\"_165\":166},\"unitId\",\"bedrooms\",[172,173],\"bathrooms\",[172],[171,128],\"price\",[169,170],\"availability\",[167,168],[\"D\",1751328000000],[\"D\",1801440000000],1320,3050,583,1,2,{\"_134\":1916,\"_183\":131,\"_184\":1917,\"_132\":1918,\"_187\":103,\"_188\":79,\"_189\":146,\"_39\":1919,\"_151\":1920},{\"_134\":1591,\"_183\":131,\"_184\":1592,\"_132\":1593,\"_187\":103,\"_188\":79,\"_189\":-5,\"_39\":1594,\"_151\":1595},{\"_134\":1261,\"_183\":131,\"_184\":1262,\"_132\":1263,\"_187\":103,\"_188\":79,\"_189\":-5,\"_39\":1264,\"_151\":1265},{\"_134\":972,\"_183\":131,\"_184\":973,\"_132\":974,\"_187\":103,\"_188\":79,\"_189\":-5,\"_39\":975,\"_151\":976},{\"_134\":776,\"_183\":131,\"_184\":777,\"_132\":778,\"_187\":103,\"_188\":79,\"_189\":-5,\"_39\":779,\"_151\":780},{\"_134\":567,\"_183\":131,\"_184\":568,\"_132\":569,\"_187\":103,\"_188\":570,\"_189\":-5,\"_39\":571,\"_151\":572},{\"_134\":357,\"_183\":131,\"_184\":358,\"_132\":359,\"_187\":103,\"_188\":79,\"_189\":-5,\"_39\":360,\"_151\":361},{\"_134\":182,\"_183\":131,\"_184\":185,\"_132\":186,\"_187\":103,\"_188\":79,\"_189\":-5,\"_39\":190,\"_151\":191},\"e46186b7-6b0a-4ea0-aadb-c919ce6b2b80\",\"buildingName\",\"buildingImages\",[356],\"913 Chemin Vanier\",\"buildingCity\",\"buildingNeighborhood\",\"buildingAutomatedApplyMode\",[251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273],[192,193],{\"_46\":226,\"_127\":227,\"_195\":228,\"_163\":229,\"_158\":173,\"_160\":172,\"_198\":230,\"_139\":231,\"_165\":232,\"_144\":60,\"_202\":182,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":233,\"_39\":234},{\"_46\":194,\"_127\":171,\"_195\":196,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":200,\"_165\":201,\"_144\":60,\"_202\":182,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":208,\"_39\":209},\"979f121a-32d0-4c98-b4aa-317ac069d265\",\"floor\",3,1790,\"alias\",\"306\",[212,213,214,215,216,217,218,219,220,221,222,223,224,225],[\"D\",1793491200000],\"building_id\",\"floor_plan_name\",\"floor_plan_image_path\",\"listing_type\",\"Unit\",\"promotion\",{\"_163\":210,\"_36\":211},[],1525,\"Prix promotionnel pour un bail 12 mois\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0002-00211w9a0814.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0003-003311w9a0844.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0004-004361w9a0859.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0005-005411w9a0864.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0006-006461w9a0869.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0007-007511w9a0879.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0008-008561w9a0884.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0009-009611w9a0889.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0010-010211w9a0829.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0011-011261w9a0834.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0012-01261w9a0819.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0013-013111w9a0839.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0014-014161w9a0824.jpg\",\"/storage/v1/object/public/halfred/units/979f121a-32d0-4c98-b4aa-317ac069d265/0015-015711w9a1018.jpg\",\"ac15e21f-c241-4309-92c1-2defeb1d8939\",959,0,2703,\"102\",[237,238,239,240,241,242,243,244,245,246,247,248,249,250],[\"D\",1788220800000],{\"_163\":235,\"_36\":236},[],1795,\"** Prix promotionnelle pour un bail de 12 mois **\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0002-002311w9a1764.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0003-003211w9a1749.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0004-004261w9a1759.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0005-005111w9a1729.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0006-00661w9a1724.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0007-007161w9a1739.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0008-008661w9a1799.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0009-009361w9a1769.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0010-010411w9a1774.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0011-011461w9a1779.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0012-012511w9a1784.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0013-013561w9a1789.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0014-014611w9a1794.jpg\",\"/storage/v1/object/public/halfred/units/ac15e21f-c241-4309-92c1-2defeb1d8939/0015-015711w9a1804.jpg\",{\"_97\":353,\"_41\":354},{\"_97\":350,\"_41\":309},{\"_97\":347,\"_41\":298},{\"_97\":344,\"_41\":327},{\"_97\":340,\"_41\":341},{\"_97\":337,\"_41\":316},{\"_97\":334,\"_41\":283},{\"_97\":330,\"_41\":331},{\"_97\":326,\"_41\":327},{\"_97\":323,\"_41\":302},{\"_97\":319,\"_41\":320},{\"_97\":315,\"_41\":316},{\"_97\":312,\"_41\":298},{\"_97\":308,\"_41\":309},{\"_97\":305,\"_41\":302},{\"_97\":301,\"_41\":302},{\"_97\":297,\"_41\":298},{\"_97\":293,\"_41\":294},{\"_97\":289,\"_41\":290},{\"_97\":286,\"_41\":283},{\"_97\":282,\"_41\":283},{\"_97\":279,\"_41\":275},{\"_97\":274,\"_41\":275},{\"_276\":277,\"_21\":278},\"lucide:thermometer-sun\",\"en\",\"Central Air Conditioning\",\"Climatisation centrale\",{\"_276\":280,\"_21\":281},\"Electric Heating\",\"Chauffage Électrique\",{\"_276\":284,\"_21\":285},\"lucide:wifi\",\"Fiber Internet\",\"Internet fibre\",{\"_276\":287,\"_21\":288},\"Cable Internet\",\"Internet par câble\",{\"_276\":291,\"_21\":292},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",{\"_276\":295,\"_21\":296},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",{\"_276\":299,\"_21\":300},\"lucide:car\",\"Garage Parking\",\"Parking garage\",{\"_276\":303,\"_21\":304},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_276\":306,\"_21\":307},\"Dishwasher\",\"Lave-vaisselle\",{\"_276\":310,\"_21\":311},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",{\"_276\":313,\"_21\":314},\"Underground Garage\",\"Garage souterrain\",{\"_276\":317,\"_21\":318},\"lucide:fence\",\"Balcony\",\"Balcon\",{\"_276\":321,\"_21\":322},\"lucide:blinds\",\"Blinds\",\"Stores\",{\"_276\":324,\"_21\":325},\"Elevator\",\"Ascenseur\",{\"_276\":328,\"_21\":329},\"lucide:washing-machine\",\"Washer\",\"Laveuse\",{\"_276\":332,\"_21\":333},\"lucide:droplet\",\"Water\",\"Eau\",{\"_276\":335,\"_21\":336},\"Cable\",\"Câble\",{\"_276\":338,\"_21\":339},\"Building Terrace\",\"Terrasse de l'immeuble\",{\"_276\":342,\"_21\":343},\"lucide:soup\",\"Stove\",\"Cuisinière\",{\"_276\":345,\"_21\":346},\"Dryer\",\"Sèche-linge\",{\"_276\":348,\"_21\":349},\"Parking\",\"Stationnement\",{\"_276\":351,\"_21\":352},\"Oven\",\"Four\",{\"_276\":355,\"_21\":355},\"lucide:dumbbell\",\"Gym\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/e46186b7-6b0a-4ea0-aadb-c919ce6b2b80/ee64d4b0-e736-4b47-a6b3-34ac719c9f37?version=e448a519-5e16-459c-b52f-f4b2ff12e15d\",\"edc3ec00-145a-4874-960a-5bd67978d4c4\",[566],\"909 Chemin Vanier\",[509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533],[362,363,364],{\"_46\":486,\"_127\":128,\"_195\":-5,\"_163\":487,\"_158\":173,\"_160\":172,\"_198\":488,\"_139\":489,\"_165\":490,\"_144\":60,\"_202\":357,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":491,\"_39\":492},{\"_46\":429,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":430,\"_165\":431,\"_144\":60,\"_202\":357,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":432,\"_39\":433},{\"_46\":365,\"_127\":227,\"_195\":-5,\"_163\":366,\"_158\":173,\"_160\":172,\"_198\":367,\"_139\":368,\"_165\":369,\"_144\":60,\"_202\":357,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":370,\"_39\":371},\"150c02d5-e955-4e34-a14d-79d0f6d6a3f9\",2525,\"402\",[415,416,417,418,419,420,421,422,423,424,425,426,427,428],[\"D\",1780272000000],{\"_163\":413,\"_36\":414},[372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390],{\"_97\":412,\"_41\":354},{\"_97\":411,\"_41\":309},{\"_97\":410,\"_41\":327},{\"_97\":409,\"_41\":316},{\"_97\":408,\"_41\":331},{\"_97\":407,\"_41\":327},{\"_97\":406,\"_41\":302},{\"_97\":405,\"_41\":320},{\"_97\":404,\"_41\":302},{\"_97\":403,\"_41\":275},{\"_97\":402,\"_41\":316},{\"_97\":401,\"_41\":309},{\"_97\":400,\"_41\":283},{\"_97\":396,\"_41\":397},{\"_97\":395,\"_41\":341},{\"_97\":394,\"_41\":283},{\"_97\":393,\"_41\":290},{\"_97\":392,\"_41\":283},{\"_97\":391,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":398,\"_21\":399},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},1850,\"Rabais spécial pour un bail de 24 mois \",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0002-002311w9a1764.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0003-003211w9a1749.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0004-004261w9a1759.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0005-005111w9a1729.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0006-00661w9a1724.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0007-007161w9a1739.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0008-008661w9a1799.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0009-009361w9a1769.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0010-010411w9a1774.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0011-011461w9a1779.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0012-012511w9a1784.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0013-013561w9a1789.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0014-014611w9a1794.jpg\",\"/storage/v1/object/public/halfred/units/150c02d5-e955-4e34-a14d-79d0f6d6a3f9/0015-015711w9a1804.jpg\",\"c65da2ec-b3d5-4111-b0b9-a18ffd0617d5\",[473,474,475,476,477,478,479,480,481,482,483,484,485],[\"D\",1780272000000],{\"_163\":210,\"_36\":472},[434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],{\"_97\":471,\"_41\":354},{\"_97\":470,\"_41\":309},{\"_97\":469,\"_41\":327},{\"_97\":468,\"_41\":316},{\"_97\":467,\"_41\":331},{\"_97\":466,\"_41\":327},{\"_97\":465,\"_41\":302},{\"_97\":464,\"_41\":302},{\"_97\":463,\"_41\":275},{\"_97\":462,\"_41\":316},{\"_97\":461,\"_41\":309},{\"_97\":458,\"_41\":275},{\"_97\":457,\"_41\":341},{\"_97\":456,\"_41\":283},{\"_97\":455,\"_41\":302},{\"_97\":454,\"_41\":294},{\"_97\":453,\"_41\":290},{\"_97\":452,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":459,\"_21\":460},\"Gas Heating\",\"Chauffage au gaz\",{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},\"** Promotion pour un bail de 12 mois ** \",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/2__0008-008561w9a0884-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/0__0007-007511w9a0879-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/3__0006-006461w9a0869-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/5__0005-005411w9a0864-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/4__0009-009611w9a0889-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/6__0004-004361w9a0859-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/7__0003-003311w9a0844-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/9__0010-010211w9a0829-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/8__0011-011261w9a0834-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/13__0002-00211w9a0814-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/11__0013-013111w9a0839-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/12__0012-01261w9a0819-min.jpg\",\"/storage/v1/object/public/halfred/units/c65da2ec-b3d5-4111-b0b9-a18ffd0617d5/10__0014-014161w9a0824-min.jpg\",\"9f211f61-3ac4-4178-a582-020eb6b690b6\",2690,\"105\",[494,495,496,497,498,499,500,501,502,503,504,505,506,507,508],[\"D\",1780272000000],{\"_163\":493,\"_36\":414},[],1995,\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/0__0007-007261w9a1846-min.jpg?version=4f6c351a-8a4f-42f2-8810-f565afd340e1\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/10__0010-010611w9a1886-min.jpg?version=a5ff6834-10ac-4d24-8f1b-28b20b5d2d6b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/11__0014-014411w9a1866-min.jpg?version=fbafe0a1-919c-4daa-93d9-a9e7776d9295\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/12__0015-015461w9a1871-min.jpg?version=b43d952d-c5bb-4d5e-b810-63b2fae9fd32\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/13__0013-01361w9a1816-min.jpg?version=867bd249-ca16-48a6-8587-086f95a3610a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/14__0001-00111w9a1811-min.jpg?version=42717363-6236-4fb4-9dcf-10d360e8ddca\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/1__0006-006111w9a1826-min.jpg?version=227d6076-7b98-4665-b0d6-5c18d48080c1\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/2__0005-005211w9a1836-min.jpg?version=94c54982-d56d-4fdf-a99b-1bb8002b3d76\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/3__0004-004161w9a1831-min.jpg?version=f11d73e6-3e58-4371-b962-4002a33605bd\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/4__0003-003361w9a1856-min.jpg?version=759494cf-29ff-46eb-80ca-c2a720730e54\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/5__0002-002311w9a1851-min.jpg?version=09d9ff99-9d51-43d7-b202-bfaf63ce4ae5\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/6__0008-008511w9a1876-min.jpg?version=938ceb4d-34e7-4e9f-8c92-1a9c464b7096\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/7__0009-009561w9a1881-min.jpg?version=200127af-6a0c-4a72-9bbe-4900a94898f0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/8__0012-012711w9a1896-min.jpg?version=36f8ebaf-45dd-4155-9851-374de38930f4\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9f211f61-3ac4-4178-a582-020eb6b690b6/9__0011-011661w9a1891-min.jpg?version=e53bc112-a592-44b8-b2d4-e5973caa61bd\",{\"_97\":565,\"_41\":354},{\"_97\":562,\"_41\":548},{\"_97\":561,\"_41\":309},{\"_97\":560,\"_41\":298},{\"_97\":559,\"_41\":327},{\"_97\":558,\"_41\":341},{\"_97\":557,\"_41\":316},{\"_97\":556,\"_41\":283},{\"_97\":555,\"_41\":331},{\"_97\":554,\"_41\":327},{\"_97\":553,\"_41\":302},{\"_97\":552,\"_41\":320},{\"_97\":551,\"_41\":316},{\"_97\":547,\"_41\":548},{\"_97\":546,\"_41\":298},{\"_97\":545,\"_41\":309},{\"_97\":544,\"_41\":302},{\"_97\":543,\"_41\":302},{\"_97\":540,\"_41\":327},{\"_97\":539,\"_41\":294},{\"_97\":538,\"_41\":290},{\"_97\":537,\"_41\":283},{\"_97\":536,\"_41\":283},{\"_97\":535,\"_41\":275},{\"_97\":534,\"_41\":275},{\"_276\":277,\"_21\":278},{\"_276\":280,\"_21\":281},{\"_276\":284,\"_21\":285},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":541,\"_21\":542},\"Laundry Room\",\"Buanderie\",{\"_276\":303,\"_21\":304},{\"_276\":306,\"_21\":307},{\"_276\":310,\"_21\":311},{\"_276\":313,\"_21\":314},{\"_276\":549,\"_21\":550},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",{\"_276\":317,\"_21\":318},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":335,\"_21\":336},{\"_276\":338,\"_21\":339},{\"_276\":342,\"_21\":343},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},\"Cats Allowed\",\"Chats autorisés\",{\"_276\":355,\"_21\":355},\"/storage/v1/object/public/halfred/buildings/edc3ec00-145a-4874-960a-5bd67978d4c4/NewColor_D.jpg\",\"a39a05d3-ac63-4d14-ac1e-2d2c3e081f1d\",[772,773,774,775],\"929 Chemin Vanier\",\"Aylmer\",[728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749],[573,574,575,576],{\"_46\":706,\"_127\":128,\"_195\":172,\"_163\":707,\"_158\":173,\"_160\":172,\"_198\":708,\"_139\":709,\"_165\":710,\"_144\":60,\"_202\":567,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":711,\"_39\":712},{\"_46\":669,\"_127\":171,\"_195\":196,\"_163\":670,\"_158\":172,\"_160\":172,\"_198\":671,\"_139\":672,\"_165\":673,\"_144\":60,\"_202\":567,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":-5,\"_39\":674},{\"_46\":618,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":619,\"_165\":620,\"_144\":60,\"_202\":567,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":621,\"_39\":622},{\"_46\":577,\"_127\":128,\"_195\":196,\"_163\":170,\"_158\":173,\"_160\":172,\"_198\":578,\"_139\":579,\"_165\":580,\"_144\":60,\"_202\":567,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":581,\"_39\":582},\"9e2e06b5-6921-4169-b954-41a42111f4a3\",\"405\",[603,604,605,606,607,608,609,610,611,612,613,614,615,616,617],[\"D\",1790812800000],{\"_163\":601,\"_36\":602},[583,584,585,586,587,588,589,590,591],{\"_97\":600,\"_41\":354},{\"_97\":599,\"_41\":309},{\"_97\":598,\"_41\":327},{\"_97\":597,\"_41\":316},{\"_97\":596,\"_41\":327},{\"_97\":595,\"_41\":302},{\"_97\":594,\"_41\":341},{\"_97\":593,\"_41\":290},{\"_97\":592,\"_41\":283},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":342,\"_21\":343},{\"_276\":306,\"_21\":307},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},2195,\"Rabais spécial pour bail de 24 mois \",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/0__0007-007261w9a1846-min.jpg?version=7fa7535b-e05a-4d75-8ece-1f2623584715\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/10__0010-010611w9a1886-min.jpg?version=ca9deb76-fe76-46b5-b868-ce3d3412ce81\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/11__0014-014411w9a1866-min.jpg?version=4cb7007c-21de-4379-b3b4-62dbbaf27184\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/12__0015-015461w9a1871-min.jpg?version=3d2765af-4033-4409-a226-1af515a4d50d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/13__0013-01361w9a1816-min.jpg?version=3fe79387-6f1e-4058-bd89-1ef30eedcdf7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/14__0001-00111w9a1811-min.jpg?version=7efa19bc-7cc3-4118-9465-8c5d6d07fa06\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/1__0006-006111w9a1826-min.jpg?version=e54dc1a0-4bab-4b8c-ad74-76d29f5bcbcf\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/2__0005-005211w9a1836-min.jpg?version=3599e7d5-564c-4ffd-9da2-80081f35a6b9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/3__0004-004161w9a1831-min.jpg?version=ad894ac2-7c5f-445f-9e0d-a908a6f47ff5\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/4__0003-003361w9a1856-min.jpg?version=d0468e39-7efc-499d-a1bb-196019d16bf3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/5__0002-002311w9a1851-min.jpg?version=bc84a5ec-74b9-4071-bf4a-bbfd1a453cd9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/6__0008-008511w9a1876-min.jpg?version=3b78b5ed-b006-4bf2-a41b-cbfe89217121\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/7__0009-009561w9a1881-min.jpg?version=1c64f09e-31fa-44e9-a2cc-fd88f8001417\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/8__0012-012711w9a1896-min.jpg?version=6cd73eeb-1e5f-4ccf-8e8a-6a1fe6a10a4e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/9e2e06b5-6921-4169-b954-41a42111f4a3/9__0011-011661w9a1891-min.jpg?version=0b9748ab-673c-4f02-8cf7-4ab03cadd4db\",\"21899823-920c-4f9a-b943-8ff38fe0b21f\",[664,665,666,667,668],[\"D\",1785542400000],{\"_163\":210,\"_36\":663},[623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642],{\"_97\":662,\"_41\":354},{\"_97\":661,\"_41\":548},{\"_97\":660,\"_41\":309},{\"_97\":659,\"_41\":327},{\"_97\":658,\"_41\":316},{\"_97\":657,\"_41\":327},{\"_97\":656,\"_41\":302},{\"_97\":655,\"_41\":320},{\"_97\":654,\"_41\":302},{\"_97\":653,\"_41\":275},{\"_97\":652,\"_41\":316},{\"_97\":651,\"_41\":309},{\"_97\":650,\"_41\":283},{\"_97\":649,\"_41\":341},{\"_97\":648,\"_41\":283},{\"_97\":647,\"_41\":302},{\"_97\":646,\"_41\":294},{\"_97\":645,\"_41\":290},{\"_97\":644,\"_41\":283},{\"_97\":643,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"*** Promotion pour baux de 12 mois, possibilité de 24 mois***\",\"/storage/v1/object/public/halfred/units/21899823-920c-4f9a-b943-8ff38fe0b21f/chatgpt-image-15-avr-2026-152618.png\",\"/storage/v1/object/public/halfred/units/21899823-920c-4f9a-b943-8ff38fe0b21f/geminigeneratedimage2ulnqt2ulnqt2uln.png\",\"/storage/v1/object/public/halfred/units/21899823-920c-4f9a-b943-8ff38fe0b21f/chatgpt-image-15-avr-2026-151312.png\",\"/storage/v1/object/public/halfred/units/21899823-920c-4f9a-b943-8ff38fe0b21f/geminigeneratedimage30bouq30bouq30bo.png\",\"/storage/v1/object/public/halfred/units/21899823-920c-4f9a-b943-8ff38fe0b21f/9__21899823-920c-4f9a-b943-8ff38fe0b21f.webp\",\"11a8ebed-a943-4dba-9218-52ab29d73fd0\",1642,\"303\",[693,694,695,696,697,698,699,700,701,702,703,704,705],[\"D\",1764547200000],[675,676,677,678,679,680,681,682,683],{\"_97\":692,\"_41\":354},{\"_97\":691,\"_41\":309},{\"_97\":690,\"_41\":327},{\"_97\":689,\"_41\":316},{\"_97\":688,\"_41\":327},{\"_97\":687,\"_41\":302},{\"_97\":686,\"_41\":341},{\"_97\":685,\"_41\":290},{\"_97\":684,\"_41\":283},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":342,\"_21\":343},{\"_276\":306,\"_21\":307},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0002-002_1_1W9A0814.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0003-003_31_1W9A0844.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0004-004_36_1W9A0859.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0005-005_41_1W9A0864.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0006-006_46_1W9A0869.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0007-007_51_1W9A0879.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0008-008_56_1W9A0884.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0009-009_61_1W9A0889.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0010-010_21_1W9A0829.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0011-011_26_1W9A0834.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0012-012_6_1W9A0819.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0013-013_11_1W9A0839.jpg\",\"/storage/v1/object/public/halfred/units/11a8ebed-a943-4dba-9218-52ab29d73fd0/0014-014_16_1W9A0824.jpg\",\"7da64d53-9800-4ade-bf56-553e35e09245\",2812,\"205\",[713,714,715,716,717,718,719,720,721,722,723,724,725,726,727],[\"D\",1797292800000],{\"_163\":493,\"_36\":-5},[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/0__0007-007261w9a1846-min.jpg?version=a3be387c-15b8-4573-9d69-2d3a676cd2f5\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/10__0010-010611w9a1886-min.jpg?version=0c45e64c-609e-4e70-be5c-592b014d0c63\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/11__0014-014411w9a1866-min.jpg?version=ad38ad10-61c4-4225-b1df-019890797d9c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/12__0015-015461w9a1871-min.jpg?version=5f2931dc-f0d6-41fd-9965-70780ac866c9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/13__0013-01361w9a1816-min.jpg?version=f9c06939-8692-4c4f-b22b-44660c320b2d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/14__0001-00111w9a1811-min.jpg?version=be96d0c9-3829-4fe2-aa8f-ea88f61bd0c7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/1__0006-006111w9a1826-min.jpg?version=360bbf82-5f9c-4b06-89bd-c31270cbbf4d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/2__0005-005211w9a1836-min.jpg?version=35dd2f22-d3d8-42d6-875e-06a70c2030f0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/3__0004-004161w9a1831-min.jpg?version=62ba42bb-b393-4d72-9a38-2255ffefe54a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/4__0003-003361w9a1856-min.jpg?version=5bfe47ae-a5ed-4d2f-87f6-8f722b93ccd6\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/5__0002-002311w9a1851-min.jpg?version=6a247c1c-7439-44df-9f57-d2af23b906de\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/6__0008-008511w9a1876-min.jpg?version=d334976b-52c6-4abe-9891-3e32500ffe07\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/7__0009-009561w9a1881-min.jpg?version=ef9d0c03-7b65-446b-9562-42402dc19941\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/8__0012-012711w9a1896-min.jpg?version=c81b8d68-2ad5-4085-bd88-5da22cfe60a7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/7da64d53-9800-4ade-bf56-553e35e09245/9__0011-011661w9a1891-min.jpg?version=db6e80d6-4163-48eb-9430-90eb04e82c25\",{\"_97\":771,\"_41\":354},{\"_97\":770,\"_41\":548},{\"_97\":769,\"_41\":309},{\"_97\":768,\"_41\":298},{\"_97\":767,\"_41\":327},{\"_97\":766,\"_41\":341},{\"_97\":765,\"_41\":316},{\"_97\":764,\"_41\":283},{\"_97\":763,\"_41\":331},{\"_97\":762,\"_41\":327},{\"_97\":761,\"_41\":302},{\"_97\":760,\"_41\":320},{\"_97\":759,\"_41\":316},{\"_97\":758,\"_41\":309},{\"_97\":757,\"_41\":302},{\"_97\":756,\"_41\":302},{\"_97\":755,\"_41\":298},{\"_97\":754,\"_41\":294},{\"_97\":753,\"_41\":290},{\"_97\":752,\"_41\":283},{\"_97\":751,\"_41\":275},{\"_97\":750,\"_41\":275},{\"_276\":277,\"_21\":278},{\"_276\":280,\"_21\":281},{\"_276\":284,\"_21\":285},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":299,\"_21\":300},{\"_276\":303,\"_21\":304},{\"_276\":306,\"_21\":307},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":335,\"_21\":336},{\"_276\":338,\"_21\":339},{\"_276\":342,\"_21\":343},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"/storage/v1/object/public/halfred/buildings/a39a05d3-ac63-4d14-ac1e-2d2c3e081f1d/1__exterieur-d.jpg\",\"/storage/v1/object/public/halfred/buildings/a39a05d3-ac63-4d14-ac1e-2d2c3e081f1d/2__gym-d1.jpg\",\"/storage/v1/object/public/halfred/buildings/a39a05d3-ac63-4d14-ac1e-2d2c3e081f1d/3__lounge-d.jpg\",\"/storage/v1/object/public/halfred/buildings/a39a05d3-ac63-4d14-ac1e-2d2c3e081f1d/4__lounged.jpg\",\"aecf77df-5d99-4961-b35a-484471d41470\",[971],\"917 Chemin Vanier\",[921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945],[781,782,783],{\"_46\":894,\"_127\":171,\"_195\":-5,\"_163\":169,\"_158\":172,\"_160\":172,\"_198\":895,\"_139\":896,\"_165\":897,\"_144\":60,\"_202\":776,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":-5,\"_39\":898},{\"_46\":852,\"_127\":853,\"_195\":-5,\"_163\":854,\"_158\":173,\"_160\":172,\"_198\":855,\"_139\":856,\"_165\":857,\"_144\":60,\"_202\":776,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":858,\"_39\":859},{\"_46\":784,\"_127\":171,\"_195\":-5,\"_163\":785,\"_158\":172,\"_160\":172,\"_198\":786,\"_139\":787,\"_165\":788,\"_144\":60,\"_202\":776,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":789,\"_39\":790},\"d76aa1ce-359d-4a3b-8911-263be4403245\",1825,\"403\",[837,838,839,840,841,842,843,844,845,846,847,848,849,850,851],[\"D\",1780272000000],{\"_163\":835,\"_36\":836},[791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812],{\"_97\":834,\"_41\":354},{\"_97\":833,\"_41\":548},{\"_97\":832,\"_41\":309},{\"_97\":831,\"_41\":327},{\"_97\":830,\"_41\":316},{\"_97\":829,\"_41\":331},{\"_97\":828,\"_41\":327},{\"_97\":827,\"_41\":302},{\"_97\":826,\"_41\":320},{\"_97\":825,\"_41\":302},{\"_97\":824,\"_41\":275},{\"_97\":823,\"_41\":316},{\"_97\":822,\"_41\":309},{\"_97\":821,\"_41\":327},{\"_97\":820,\"_41\":283},{\"_97\":819,\"_41\":341},{\"_97\":818,\"_41\":283},{\"_97\":817,\"_41\":302},{\"_97\":816,\"_41\":294},{\"_97\":815,\"_41\":290},{\"_97\":814,\"_41\":283},{\"_97\":813,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":541,\"_21\":542},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},1559,\"Rabais spécial pour un bail de 12 mois \\n\\n\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/0__0007-007511w9a0879-min.jpg?version=989a28fb-9050-4cf4-b614-6d617d165ff2\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/10__0014-014161w9a0824-min.jpg?version=bcb34374-f9ac-4ef2-958b-39fa32e92c51\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/11__0013-013111w9a0839-min.jpg?version=77772626-4c77-474a-b57d-eae868cf6075\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/12__0012-01261w9a0819-min.jpg?version=8ab72959-c27f-4d97-a99d-063ab3b4847e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/13__0002-00211w9a0814-min.jpg?version=9a95c034-d349-483c-97f6-e1434b4bdf56\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/14__0001-001661w9a0899-min.jpg?version=1801af3a-95f1-418e-9c70-4b8a39ca563d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/15__0015-015711w9a1018-min.jpg?version=d04ac639-5d6b-4d1b-a3d9-9a2c0c71b544\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/2__0008-008561w9a0884-min.jpg?version=096b828f-6077-4c22-b844-cac5251b3490\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/3__0006-006461w9a0869-min.jpg?version=80ecdbf4-51b6-4977-8607-42c8393efacc\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/4__0009-009611w9a0889-min.jpg?version=a407acd0-7693-4528-8673-07d259ffcbda\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/5__0005-005411w9a0864-min.jpg?version=6c584b37-4981-46d4-8b7d-f5f7ac03c6a3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/6__0004-004361w9a0859-min.jpg?version=053983b8-fa73-4323-8637-0f135d32cfe2\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/7__0003-003311w9a0844-min.jpg?version=9aceec5c-7cd9-4698-8ac2-68e894644f8f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/8__0011-011261w9a0834-min.jpg?version=737f1ddc-3d03-4e0e-a003-01c654372d05\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d76aa1ce-359d-4a3b-8911-263be4403245/9__0010-010211w9a0829-min.jpg?version=cfa312df-2751-416b-8e0b-075e1271c461\",\"19113e04-2e4b-472f-b62e-aa6300ff23f0\",958,2604,\"302\",[879,880,881,882,883,884,885,886,887,888,889,890,891,892,893],[\"D\",1798761600000],{\"_163\":413,\"_36\":878},[860,861,862,863,864,865,866,867,868],{\"_97\":877,\"_41\":309},{\"_97\":876,\"_41\":327},{\"_97\":875,\"_41\":331},{\"_97\":874,\"_41\":327},{\"_97\":873,\"_41\":302},{\"_97\":872,\"_41\":316},{\"_97\":871,\"_41\":341},{\"_97\":870,\"_41\":294},{\"_97\":869,\"_41\":290},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":342,\"_21\":343},{\"_276\":317,\"_21\":318},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},\"undefined\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/0__0007-007161w9a1739-min.jpg?version=456ab7e8-eb91-4e9a-8441-29661ce8ce0a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/10__0011-011461w9a1779-min.jpg?version=43484401-4a77-4d13-bd74-f65f862a5a5e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/11__0012-012511w9a1784-min.jpg?version=86c6d25c-bdd5-4d91-bb5a-56e5fd5f84b0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/12__0013-013561w9a1789-min.jpg?version=1c28a6b6-11e3-460e-85e1-2dd9e0f67349\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/13__0014-014611w9a1794-min.jpg?version=13beb4e3-d8b8-4974-b963-a28175147817\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/14__0015-015711w9a1804-min.jpg?version=b08a9858-4e55-4f4f-9e9c-10f8d47fe943\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/15__0001-00111w9a1719-min.jpg?version=d56f7793-e41d-4a2f-bf8f-b9aabd4a6303\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/2__0008-008661w9a1799-min.jpg?version=0bec52ba-62dc-47eb-96d0-c9b4ae9ffd1d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/3__0006-00661w9a1724-min.jpg?version=46138258-2603-46b4-a32b-35b4de03d1bb\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/4__0005-005111w9a1729-min.jpg?version=662d17a8-d0fb-4645-ae40-fbbd452bd6e5\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/5__0004-004261w9a1759-min.jpg?version=3077761c-de9c-4918-9d88-3f531bc5e716\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/6__0003-003211w9a1749-min.jpg?version=d3d88459-43ec-47f4-a812-a7f38526ffa2\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/7__0002-002311w9a1764-min.jpg?version=fde5bb50-0049-4d40-8a7e-3e41a18c82cc\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/8__0009-009361w9a1769-min.jpg?version=f2cda65f-ea95-40be-8543-9496e10a5111\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/19113e04-2e4b-472f-b62e-aa6300ff23f0/9__0010-010411w9a1774-min.jpg?version=8fe81708-c01d-494d-b812-f13e2f036502\",\"46d32216-1002-4837-b196-dbc2c2046d67\",\"103\",[913,914,915,916,917,918,919,920],[\"D\",1801440000000],[899,900,901,902,903,904,905],{\"_97\":912,\"_41\":309},{\"_97\":911,\"_41\":331},{\"_97\":910,\"_41\":327},{\"_97\":909,\"_41\":302},{\"_97\":908,\"_41\":283},{\"_97\":907,\"_41\":294},{\"_97\":906,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":295,\"_21\":296},{\"_276\":335,\"_21\":336},{\"_276\":306,\"_21\":307},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":351,\"_21\":352},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/46d32216-1002-4837-b196-dbc2c2046d67/1__8081bc17-10fb-4cb2-90d7-8102f882c958.webp?version=8161d11f-4c78-4af2-bb53-c5feb1ee930a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/46d32216-1002-4837-b196-dbc2c2046d67/2__8081bc17-10fb-4cb2-90d7-8102f882c958.webp?version=3acdb291-b96b-48f9-9a5b-c4923c50ecbe\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/46d32216-1002-4837-b196-dbc2c2046d67/3__8081bc17-10fb-4cb2-90d7-8102f882c958.webp?version=b58cedb9-aaef-4bf8-a71e-1724175f08bb\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/46d32216-1002-4837-b196-dbc2c2046d67/4__8081bc17-10fb-4cb2-90d7-8102f882c958.webp?version=98fe937c-4e69-4ce0-af2b-ace857fd9d8e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/46d32216-1002-4837-b196-dbc2c2046d67/5__8081bc17-10fb-4cb2-90d7-8102f882c958.webp?version=47e6cf37-77e0-43d3-b6a8-5ed2a0f2f599\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/46d32216-1002-4837-b196-dbc2c2046d67/6__8081bc17-10fb-4cb2-90d7-8102f882c958.webp?version=cd1aa3c3-5647-4add-9f9c-cf4431e26dc2\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/46d32216-1002-4837-b196-dbc2c2046d67/7__8081bc17-10fb-4cb2-90d7-8102f882c958.webp?version=6e1aebbd-a963-438a-9f89-c46e1fa2296b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/46d32216-1002-4837-b196-dbc2c2046d67/8__8081bc17-10fb-4cb2-90d7-8102f882c958.webp?version=2636e9cd-b063-4cc7-9877-0633cff4f4b8\",{\"_97\":970,\"_41\":354},{\"_97\":969,\"_41\":548},{\"_97\":968,\"_41\":309},{\"_97\":967,\"_41\":298},{\"_97\":966,\"_41\":327},{\"_97\":965,\"_41\":341},{\"_97\":964,\"_41\":316},{\"_97\":963,\"_41\":283},{\"_97\":962,\"_41\":331},{\"_97\":961,\"_41\":327},{\"_97\":960,\"_41\":302},{\"_97\":959,\"_41\":320},{\"_97\":958,\"_41\":316},{\"_97\":957,\"_41\":548},{\"_97\":956,\"_41\":298},{\"_97\":955,\"_41\":309},{\"_97\":954,\"_41\":302},{\"_97\":953,\"_41\":302},{\"_97\":952,\"_41\":327},{\"_97\":951,\"_41\":294},{\"_97\":950,\"_41\":290},{\"_97\":949,\"_41\":283},{\"_97\":948,\"_41\":283},{\"_97\":947,\"_41\":275},{\"_97\":946,\"_41\":275},{\"_276\":277,\"_21\":278},{\"_276\":280,\"_21\":281},{\"_276\":284,\"_21\":285},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":541,\"_21\":542},{\"_276\":303,\"_21\":304},{\"_276\":306,\"_21\":307},{\"_276\":310,\"_21\":311},{\"_276\":313,\"_21\":314},{\"_276\":549,\"_21\":550},{\"_276\":317,\"_21\":318},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":335,\"_21\":336},{\"_276\":338,\"_21\":339},{\"_276\":342,\"_21\":343},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/aecf77df-5d99-4961-b35a-484471d41470/0__edc3ec00-145a-4874-960a-5bd67978d4c4.webp?version=c52e2185-bf89-4a09-9d1d-4fee5515bd34\",\"3d9df40d-52f9-4494-ab7c-d544807f1181\",[1260],\"925 Chemin Vanier\",[1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234],[977,978,979,980,981],{\"_46\":1187,\"_127\":1063,\"_195\":-5,\"_163\":1188,\"_158\":172,\"_160\":172,\"_198\":1189,\"_139\":1190,\"_165\":1191,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1192,\"_39\":1193},{\"_46\":1126,\"_127\":1063,\"_195\":-5,\"_163\":1127,\"_158\":172,\"_160\":172,\"_198\":1128,\"_139\":1129,\"_165\":1130,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1131,\"_39\":1132},{\"_46\":1062,\"_127\":1063,\"_195\":-5,\"_163\":1064,\"_158\":172,\"_160\":172,\"_198\":1065,\"_139\":1066,\"_165\":1067,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1068,\"_39\":1069},{\"_46\":1040,\"_127\":171,\"_195\":-5,\"_163\":413,\"_158\":172,\"_160\":172,\"_198\":786,\"_139\":1041,\"_165\":1042,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1043,\"_39\":1044},{\"_46\":982,\"_127\":171,\"_195\":-5,\"_163\":785,\"_158\":172,\"_160\":172,\"_198\":983,\"_139\":984,\"_165\":985,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":986,\"_39\":987},\"d6428162-401b-40ed-933d-d05cc33bc80e\",\"406\",[1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039],[\"D\",1777593600000],{\"_163\":835,\"_36\":1026},[988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006],{\"_97\":1025,\"_41\":548},{\"_97\":1024,\"_41\":309},{\"_97\":1023,\"_41\":298},{\"_97\":1022,\"_41\":327},{\"_97\":1021,\"_41\":316},{\"_97\":1020,\"_41\":331},{\"_97\":1019,\"_41\":327},{\"_97\":1018,\"_41\":302},{\"_97\":1017,\"_41\":320},{\"_97\":1016,\"_41\":302},{\"_97\":1015,\"_41\":275},{\"_97\":1014,\"_41\":316},{\"_97\":1013,\"_41\":309},{\"_97\":1012,\"_41\":283},{\"_97\":1011,\"_41\":341},{\"_97\":1010,\"_41\":302},{\"_97\":1009,\"_41\":290},{\"_97\":1008,\"_41\":283},{\"_97\":1007,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":303,\"_21\":304},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},\"** Promotion pour un bail de 12 mois *** \",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/0__0007-007511w9a0879-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/3__0006-006461w9a0869-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/4__0009-009611w9a0889-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/2__0008-008561w9a0884-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/5__0005-005411w9a0864-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/13__0002-00211w9a0814-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/6__0004-004361w9a0859-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/7__0003-003311w9a0844-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/8__0011-011261w9a0834-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/9__0010-010211w9a0829-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/12__0012-01261w9a0819-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/10__0014-014161w9a0824-min.jpg\",\"/storage/v1/object/public/halfred/units/d6428162-401b-40ed-933d-d05cc33bc80e/11__0013-013111w9a0839-min.jpg\",\"94270273-b81d-43bc-ab11-410ccd0d3fba\",[1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061],[\"D\",1754006400000],{\"_163\":1045,\"_36\":1046},[],1695,\"Rabais spécial pour un bail de 12 mois\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/0__0007-007511w9a0879-min.jpg?version=bb7b10c0-0c28-4369-909f-4760bf756c9c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/10__0014-014161w9a0824-min.jpg?version=2f345a6b-6d28-4224-bb60-b8760e395e4b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/11__0013-013111w9a0839-min.jpg?version=a4fe4793-98c8-4d10-9b03-ce5e2238e9bf\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/12__0012-01261w9a0819-min.jpg?version=1e256725-7ad2-41ec-bbf5-5115aee913fe\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/13__0002-00211w9a0814-min.jpg?version=36bc48e1-9736-4e73-ac75-f0ae05c89c43\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/14__0001-001661w9a0899-min.jpg?version=7781f43e-0891-42a4-bac9-4d9cab73d7ef\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/15__0015-015711w9a1018-min.jpg?version=a55cf755-71bf-40b4-b96d-6cf2d85ab270\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/2__0008-008561w9a0884-min.jpg?version=f52036e8-b551-43a6-b127-a90c2f25316f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/3__0006-006461w9a0869-min.jpg?version=ce8eb42f-d034-4e71-92ee-49426d489b02\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/4__0009-009611w9a0889-min.jpg?version=8ddc0576-7009-48d1-b522-99d7379f59c9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/5__0005-005411w9a0864-min.jpg?version=1a3bfbcd-770c-459e-8e4f-e43c74c47d63\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/6__0004-004361w9a0859-min.jpg?version=b57734a8-5b01-4898-8247-f4a88adf3e1c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/7__0003-003311w9a0844-min.jpg?version=72b37ef8-64ae-407a-8b8e-30ddd3a61e7c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/8__0011-011261w9a0834-min.jpg?version=e6888187-ad7e-4458-b955-e4d48ed0c888\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/94270273-b81d-43bc-ab11-410ccd0d3fba/9__0010-010211w9a0829-min.jpg?version=8ffd53fa-0b45-4117-b0f4-a7aa0bf4ab28\",\"4e99f15e-b888-4346-a3b3-97f4d014d8d1\",747,1934,\"301\",[1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125],[\"D\",1780272000000],{\"_163\":1110,\"_36\":1111},[1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089],{\"_97\":1109,\"_41\":354},{\"_97\":1108,\"_41\":548},{\"_97\":1107,\"_41\":309},{\"_97\":1106,\"_41\":298},{\"_97\":1105,\"_41\":327},{\"_97\":1104,\"_41\":316},{\"_97\":1103,\"_41\":331},{\"_97\":1102,\"_41\":327},{\"_97\":1101,\"_41\":302},{\"_97\":1100,\"_41\":302},{\"_97\":1099,\"_41\":275},{\"_97\":1098,\"_41\":309},{\"_97\":1097,\"_41\":283},{\"_97\":1096,\"_41\":341},{\"_97\":1095,\"_41\":283},{\"_97\":1094,\"_41\":302},{\"_97\":1093,\"_41\":294},{\"_97\":1092,\"_41\":290},{\"_97\":1091,\"_41\":283},{\"_97\":1090,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},1775,\"Rabais spécial pour un bail de 12 mois \",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/0__0003-003461w9a0969-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/2__0004-004511w9a0979-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/4__0007-007661w9a0999-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/3__0005-005561w9a0984-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/6__0002-002311w9a0949-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/5__0006-006611w9a0989-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/10__0010-010161w9a0929-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/11__0011-011211w9a0934-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/7__0014-014411w9a0964-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/8__0012-012261w9a0939-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/9__0013-013361w9a0954-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/12__0008-00861w9a0914-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/13__0009-009111w9a0919-min.jpg\",\"/storage/v1/object/public/halfred/units/4e99f15e-b888-4346-a3b3-97f4d014d8d1/14__0001-00111w9a0909-min.jpg\",\"322f1010-c8dc-48a3-99e8-0e66e4d05209\",1908,\"201\",[1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186],[\"D\",1780272000000],{\"_163\":1171,\"_36\":1172},[1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151],{\"_97\":1170,\"_41\":354},{\"_97\":1169,\"_41\":548},{\"_97\":1168,\"_41\":309},{\"_97\":1167,\"_41\":327},{\"_97\":1166,\"_41\":316},{\"_97\":1165,\"_41\":331},{\"_97\":1164,\"_41\":327},{\"_97\":1163,\"_41\":302},{\"_97\":1162,\"_41\":302},{\"_97\":1161,\"_41\":275},{\"_97\":1160,\"_41\":316},{\"_97\":1159,\"_41\":309},{\"_97\":1158,\"_41\":283},{\"_97\":1157,\"_41\":341},{\"_97\":1156,\"_41\":283},{\"_97\":1155,\"_41\":294},{\"_97\":1154,\"_41\":290},{\"_97\":1153,\"_41\":283},{\"_97\":1152,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},1750,\"*** Pour un bail de 12 mois ***\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/0__0003-003461w9a0969-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/2__0004-004511w9a0979-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/4__0007-007661w9a0999-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/3__0005-005561w9a0984-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/6__0002-002311w9a0949-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/5__0006-006611w9a0989-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/10__0010-010161w9a0929-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/11__0011-011211w9a0934-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/14__0001-00111w9a0909-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/7__0014-014411w9a0964-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/8__0012-012261w9a0939-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/9__0013-013361w9a0954-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/13__0009-009111w9a0919-min.jpg\",\"/storage/v1/object/public/halfred/units/322f1010-c8dc-48a3-99e8-0e66e4d05209/12__0008-00861w9a0914-min.jpg\",\"d95144b1-2452-42d0-b2d4-4461579264ae\",1800,\"101\",[1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209],[\"D\",1775001600000],{\"_163\":1194,\"_36\":1195},[],1650,\"** Promotion pour un bail de 12 mois** \",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/0__0003-003461w9a0969-min.jpg?version=5e5925bd-811d-434f-a986-099ad8b613d9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/10__0010-010161w9a0929-min.jpg?version=cb841f26-f2cc-45b1-947e-b0222c4e7c61\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/11__0011-011211w9a0934-min.jpg?version=af3f5ab9-d5df-416e-8d23-273e442e3c21\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/12__0008-00861w9a0914-min.jpg?version=a891f76f-565d-4411-bfa7-f8e739ccb2fd\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/13__0009-009111w9a0919-min.jpg?version=baf2e424-9271-4053-b16e-7e0dc435aaf7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/14__0001-00111w9a0909-min.jpg?version=8accb998-52b2-4ca8-a3e0-3fc271b58824\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/2__0004-004511w9a0979-min.jpg?version=c447c06a-77c2-4901-bb6d-880cccf02062\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/3__0005-005561w9a0984-min.jpg?version=0949ca63-2638-4209-b84a-16c1ab1b1d56\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/4__0007-007661w9a0999-min.jpg?version=af002347-e35d-4753-bb10-b4d1f654c7b7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/5__0006-006611w9a0989-min.jpg?version=79c7bdb4-0a63-4cf1-a7dc-e1c907ac02da\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/6__0002-002311w9a0949-min.jpg?version=356845df-b5d0-4b78-abcf-90144f8c0b51\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/7__0014-014411w9a0964-min.jpg?version=890913fd-0358-41b4-a40f-6425eb079831\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/8__0012-012261w9a0939-min.jpg?version=d7a9243b-3a12-4914-a11b-9a77ffd67920\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/d95144b1-2452-42d0-b2d4-4461579264ae/9__0013-013361w9a0954-min.jpg?version=7279599b-5611-4caa-ac98-e043a9651398\",{\"_97\":1259,\"_41\":354},{\"_97\":1258,\"_41\":548},{\"_97\":1257,\"_41\":309},{\"_97\":1256,\"_41\":298},{\"_97\":1255,\"_41\":327},{\"_97\":1254,\"_41\":341},{\"_97\":1253,\"_41\":316},{\"_97\":1252,\"_41\":283},{\"_97\":1251,\"_41\":331},{\"_97\":1250,\"_41\":327},{\"_97\":1249,\"_41\":302},{\"_97\":1248,\"_41\":320},{\"_97\":1247,\"_41\":316},{\"_97\":1246,\"_41\":548},{\"_97\":1245,\"_41\":298},{\"_97\":1244,\"_41\":309},{\"_97\":1243,\"_41\":302},{\"_97\":1242,\"_41\":302},{\"_97\":1241,\"_41\":327},{\"_97\":1240,\"_41\":294},{\"_97\":1239,\"_41\":290},{\"_97\":1238,\"_41\":283},{\"_97\":1237,\"_41\":283},{\"_97\":1236,\"_41\":275},{\"_97\":1235,\"_41\":275},{\"_276\":277,\"_21\":278},{\"_276\":280,\"_21\":281},{\"_276\":284,\"_21\":285},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":541,\"_21\":542},{\"_276\":303,\"_21\":304},{\"_276\":306,\"_21\":307},{\"_276\":310,\"_21\":311},{\"_276\":313,\"_21\":314},{\"_276\":549,\"_21\":550},{\"_276\":317,\"_21\":318},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":335,\"_21\":336},{\"_276\":338,\"_21\":339},{\"_276\":342,\"_21\":343},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/3d9df40d-52f9-4494-ab7c-d544807f1181/0__edc3ec00-145a-4874-960a-5bd67978d4c4.webp?version=1fb56a00-c2d1-458f-b0b6-c99eca6885ec\",\"40a5efb0-53f5-4050-9f41-1a28066ce459\",[1590],\"933 Chemin Vanier\",[1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564],[1266,1267,1268,1269,1270],{\"_46\":1477,\"_127\":1063,\"_195\":-5,\"_163\":1127,\"_158\":172,\"_160\":172,\"_198\":1128,\"_139\":1478,\"_165\":1479,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1480,\"_39\":1481},{\"_46\":1413,\"_127\":1063,\"_195\":-5,\"_163\":1064,\"_158\":172,\"_160\":172,\"_198\":1065,\"_139\":1414,\"_165\":1415,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1416,\"_39\":1417},{\"_46\":1354,\"_127\":171,\"_195\":-5,\"_163\":1355,\"_158\":172,\"_160\":172,\"_198\":671,\"_139\":1356,\"_165\":1357,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1358,\"_39\":1359},{\"_46\":1290,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":1291,\"_165\":1292,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1293,\"_39\":1294},{\"_46\":1271,\"_127\":171,\"_195\":196,\"_163\":785,\"_158\":172,\"_160\":172,\"_198\":983,\"_139\":1272,\"_165\":1273,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1274,\"_39\":1275},\"7ee3fdb7-6a57-4669-bd01-4ce9da842f19\",[1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289],[\"D\",1788220800000],{\"_163\":835,\"_36\":1276},[],\"Promotion pour les 12 premiers mois du bail.\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/0__0007-007511w9a0879-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/10__0014-014161w9a0824-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/11__0013-013111w9a0839-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/12__0012-01261w9a0819-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/13__0002-00211w9a0814-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/2__0008-008561w9a0884-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/3__0006-006461w9a0869-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/4__0009-009611w9a0889-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/5__0005-005411w9a0864-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/6__0004-004361w9a0859-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/7__0003-003311w9a0844-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/8__0011-011261w9a0834-min.jpg\",\"/storage/v1/object/public/halfred/units/7ee3fdb7-6a57-4669-bd01-4ce9da842f19/9__0010-010211w9a0829-min.jpg\",\"6afe0b73-476b-4129-a14e-7945c2715d59\",[1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353],[\"D\",1777593600000],{\"_163\":210,\"_36\":1338},[1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314],{\"_97\":1337,\"_41\":548},{\"_97\":1336,\"_41\":309},{\"_97\":1335,\"_41\":327},{\"_97\":1334,\"_41\":316},{\"_97\":1333,\"_41\":331},{\"_97\":1332,\"_41\":327},{\"_97\":1331,\"_41\":302},{\"_97\":1330,\"_41\":320},{\"_97\":1329,\"_41\":302},{\"_97\":1328,\"_41\":275},{\"_97\":1327,\"_41\":316},{\"_97\":1326,\"_41\":283},{\"_97\":1322,\"_41\":1323},{\"_97\":1321,\"_41\":341},{\"_97\":1320,\"_41\":283},{\"_97\":1319,\"_41\":302},{\"_97\":1318,\"_41\":294},{\"_97\":1317,\"_41\":290},{\"_97\":1316,\"_41\":283},{\"_97\":1315,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",{\"_276\":284,\"_21\":285},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},\"rabais spécial pendant 12 mois \",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/0__0007-007511w9a0879-min.jpg?version=59f5693a-021b-4ffa-b493-52518b58d22d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/10__0014-014161w9a0824-min.jpg?version=3dfa4bd4-1f1b-4b64-9ce6-19bc6a712c2b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/11__0013-013111w9a0839-min.jpg?version=9eaed8e8-9c97-47ed-bd12-9c30d916f033\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/12__0012-01261w9a0819-min.jpg?version=bb8715ed-d058-4d58-bf8d-d873d877a62e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/13__0002-00211w9a0814-min.jpg?version=b5f3317a-bc9c-47fb-b497-b6226af4f2b6\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/14__0001-001661w9a0899-min.jpg?version=dd6a99e5-4712-477d-b955-8a666f236eb7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/15__0015-015711w9a1018-min.jpg?version=a4037af3-5b66-471d-82ae-b9c6d6150bc2\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/2__0008-008561w9a0884-min.jpg?version=eedaf0ce-2d11-48e4-9115-6b3ca258c157\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/3__0006-006461w9a0869-min.jpg?version=6595c0fb-623c-45c2-abb5-79646ee411b4\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/4__0009-009611w9a0889-min.jpg?version=47d183e4-a6f0-4421-bdd7-c01437f73108\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/5__0005-005411w9a0864-min.jpg?version=1b6b1665-32e5-45dd-a330-05d694e3ea73\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/6__0004-004361w9a0859-min.jpg?version=392ac606-fe88-4095-bdc2-9596c1dcf54a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/7__0003-003311w9a0844-min.jpg?version=f48cf5a4-e313-4100-9e5e-d757f9c6f98a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/8__0011-011261w9a0834-min.jpg?version=6113fa60-edca-4bdf-844a-db418073e12e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6afe0b73-476b-4129-a14e-7945c2715d59/9__0010-010211w9a0829-min.jpg?version=a3098eb7-ffe4-4c8a-ac13-2226d5ed2609\",\"3e5ad0e1-a3a8-43a4-b95a-775726c7c0ad\",1715,[1406,1407,1408,1409,1410,1411,1412],[\"D\",1780272000000],{\"_163\":1405,\"_36\":878},[1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380],{\"_97\":1404,\"_41\":354},{\"_97\":1403,\"_41\":548},{\"_97\":1402,\"_41\":309},{\"_97\":1401,\"_41\":327},{\"_97\":1400,\"_41\":316},{\"_97\":1399,\"_41\":331},{\"_97\":1398,\"_41\":327},{\"_97\":1397,\"_41\":302},{\"_97\":1393,\"_41\":1394},{\"_97\":1392,\"_41\":302},{\"_97\":1391,\"_41\":275},{\"_97\":1390,\"_41\":316},{\"_97\":1389,\"_41\":309},{\"_97\":1388,\"_41\":283},{\"_97\":1387,\"_41\":1323},{\"_97\":1386,\"_41\":341},{\"_97\":1385,\"_41\":283},{\"_97\":1384,\"_41\":302},{\"_97\":1383,\"_41\":294},{\"_97\":1382,\"_41\":290},{\"_97\":1381,\"_41\":283},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":1395,\"_21\":1396},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},1591,\"/storage/v1/object/public/halfred/units/3e5ad0e1-a3a8-43a4-b95a-775726c7c0ad/chambre-c-2.jpg\",\"/storage/v1/object/public/halfred/units/3e5ad0e1-a3a8-43a4-b95a-775726c7c0ad/chambre-c.jpg\",\"/storage/v1/object/public/halfred/units/3e5ad0e1-a3a8-43a4-b95a-775726c7c0ad/cusine-c-2.jpg\",\"/storage/v1/object/public/halfred/units/3e5ad0e1-a3a8-43a4-b95a-775726c7c0ad/cusine-c-3.jpg\",\"/storage/v1/object/public/halfred/units/3e5ad0e1-a3a8-43a4-b95a-775726c7c0ad/cusine-c-4.jpg\",\"/storage/v1/object/public/halfred/units/3e5ad0e1-a3a8-43a4-b95a-775726c7c0ad/cusine-c-5.jpg\",\"/storage/v1/object/public/halfred/units/3e5ad0e1-a3a8-43a4-b95a-775726c7c0ad/cusine-c.jpg\",\"8bc5a878-ba4e-413a-8368-3957a042f24e\",[1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476],[\"D\",1777593600000],{\"_163\":1110,\"_36\":1462},[1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439],{\"_97\":1461,\"_41\":354},{\"_97\":1460,\"_41\":548},{\"_97\":1459,\"_41\":309},{\"_97\":1458,\"_41\":327},{\"_97\":1457,\"_41\":316},{\"_97\":1456,\"_41\":331},{\"_97\":1455,\"_41\":327},{\"_97\":1454,\"_41\":302},{\"_97\":1453,\"_41\":320},{\"_97\":1452,\"_41\":302},{\"_97\":1451,\"_41\":275},{\"_97\":1450,\"_41\":316},{\"_97\":1449,\"_41\":309},{\"_97\":1448,\"_41\":283},{\"_97\":1447,\"_41\":1323},{\"_97\":1446,\"_41\":341},{\"_97\":1445,\"_41\":283},{\"_97\":1444,\"_41\":302},{\"_97\":1443,\"_41\":294},{\"_97\":1442,\"_41\":290},{\"_97\":1441,\"_41\":283},{\"_97\":1440,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"rabais spécial pour un bail de 12 mois\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/0__0003-003461w9a0969-min.jpg?version=36493c83-141b-4089-a6e6-1dfcbf2d66f3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/10__0010-010161w9a0929-min.jpg?version=b2e16a22-3c7b-4d01-83e5-bc6609526d22\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/11__0011-011211w9a0934-min.jpg?version=8c61abc8-21e8-44b5-8b61-80464715f9cf\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/12__0008-00861w9a0914-min.jpg?version=1f9dfb46-b123-48bf-881b-8a80a707fb88\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/13__0009-009111w9a0919-min.jpg?version=6221035a-5301-4577-8928-3b6155dac9d8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/14__0001-00111w9a0909-min.jpg?version=e8ea8e18-1148-4dbc-8777-c8ed40137c0a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/2__0004-004511w9a0979-min.jpg?version=43aeada7-6d63-454c-b217-e03b42f6606f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/3__0005-005561w9a0984-min.jpg?version=4490ace9-7a57-4590-b861-253f2b9c5856\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/4__0007-007661w9a0999-min.jpg?version=4f0c4341-0658-42bb-901b-40e6349c0b02\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/5__0006-006611w9a0989-min.jpg?version=9b2130ab-7466-42dd-93c5-8096d621b124\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/6__0002-002311w9a0949-min.jpg?version=9dff4ee0-38f7-49a0-bda6-65797fe95a49\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/7__0014-014411w9a0964-min.jpg?version=f5862028-22e6-4474-8fd4-8a7409ec2b7e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/8__0012-012261w9a0939-min.jpg?version=d25fda2e-5871-4b60-8a6d-27efb35e1fd0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/8bc5a878-ba4e-413a-8368-3957a042f24e/9__0013-013361w9a0954-min.jpg?version=e5c28049-2e4d-4fb1-bc21-2a1a8373e3d1\",\"5b8dec13-f31b-4a4b-b7a6-20c4699094a2\",[1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539],[\"D\",1780272000000],{\"_163\":1171,\"_36\":1462},[1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503],{\"_97\":1525,\"_41\":354},{\"_97\":1524,\"_41\":548},{\"_97\":1523,\"_41\":309},{\"_97\":1522,\"_41\":327},{\"_97\":1521,\"_41\":316},{\"_97\":1520,\"_41\":331},{\"_97\":1519,\"_41\":327},{\"_97\":1518,\"_41\":302},{\"_97\":1517,\"_41\":320},{\"_97\":1516,\"_41\":302},{\"_97\":1515,\"_41\":275},{\"_97\":1514,\"_41\":316},{\"_97\":1513,\"_41\":309},{\"_97\":1512,\"_41\":283},{\"_97\":1511,\"_41\":1323},{\"_97\":1510,\"_41\":341},{\"_97\":1509,\"_41\":283},{\"_97\":1508,\"_41\":302},{\"_97\":1507,\"_41\":294},{\"_97\":1506,\"_41\":290},{\"_97\":1505,\"_41\":283},{\"_97\":1504,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/0__0003-003461w9a0969-min.jpg?version=ddae048d-cbf3-4fcd-a53e-08457c8537df\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/10__0010-010161w9a0929-min.jpg?version=6f610a1b-02f6-46b7-ba54-10edf711b537\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/11__0011-011211w9a0934-min.jpg?version=de7a9274-4c95-4593-bc3b-45193cfd0e85\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/12__0008-00861w9a0914-min.jpg?version=d9c45185-e54f-46ab-9e9e-ef3964dae732\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/13__0009-009111w9a0919-min.jpg?version=6c39b378-6e83-42a0-8958-f7f5dee6e2a4\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/14__0001-00111w9a0909-min.jpg?version=6fbefc90-ecbf-477c-b13d-d0add2ba7bc4\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/2__0004-004511w9a0979-min.jpg?version=4aa1afa4-d239-4a17-a19c-b96b9a30bbf8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/3__0005-005561w9a0984-min.jpg?version=8ce47497-6e57-43ec-9a24-56584794fc0d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/4__0007-007661w9a0999-min.jpg?version=53240d5a-305b-4210-8574-ae354580b487\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/5__0006-006611w9a0989-min.jpg?version=a084ce22-862b-4ad5-b28f-d40671635e78\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/6__0002-002311w9a0949-min.jpg?version=e412f055-3bd2-4630-becb-23ee1b8dd0c3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/7__0014-014411w9a0964-min.jpg?version=795c1352-e6c6-402d-b4e8-af0561681f07\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/8__0012-012261w9a0939-min.jpg?version=b737ec69-fa99-45f6-8b99-fd31bc6a610a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5b8dec13-f31b-4a4b-b7a6-20c4699094a2/9__0013-013361w9a0954-min.jpg?version=54fdd191-484b-4380-b688-d399d98747f0\",{\"_97\":1589,\"_41\":302},{\"_97\":1588,\"_41\":327},{\"_97\":1587,\"_41\":294},{\"_97\":1586,\"_41\":290},{\"_97\":1585,\"_41\":283},{\"_97\":1584,\"_41\":283},{\"_97\":1583,\"_41\":275},{\"_97\":1582,\"_41\":275},{\"_97\":1581,\"_41\":354},{\"_97\":1580,\"_41\":548},{\"_97\":1579,\"_41\":309},{\"_97\":1578,\"_41\":298},{\"_97\":1577,\"_41\":327},{\"_97\":1576,\"_41\":341},{\"_97\":1575,\"_41\":316},{\"_97\":1574,\"_41\":283},{\"_97\":1573,\"_41\":331},{\"_97\":1572,\"_41\":327},{\"_97\":1571,\"_41\":302},{\"_97\":1570,\"_41\":320},{\"_97\":1569,\"_41\":316},{\"_97\":1568,\"_41\":548},{\"_97\":1567,\"_41\":298},{\"_97\":1566,\"_41\":309},{\"_97\":1565,\"_41\":302},{\"_276\":306,\"_21\":307},{\"_276\":310,\"_21\":311},{\"_276\":313,\"_21\":314},{\"_276\":549,\"_21\":550},{\"_276\":317,\"_21\":318},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":335,\"_21\":336},{\"_276\":338,\"_21\":339},{\"_276\":342,\"_21\":343},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},{\"_276\":277,\"_21\":278},{\"_276\":280,\"_21\":281},{\"_276\":284,\"_21\":285},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":541,\"_21\":542},{\"_276\":303,\"_21\":304},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/40a5efb0-53f5-4050-9f41-1a28066ce459/0__edc3ec00-145a-4874-960a-5bd67978d4c4.webp?version=3b4891f4-9bac-444e-ab97-9f8477f20848\",\"2b7e9e6b-3260-40d8-8ddf-9ef7629e1b39\",[1915],\"905 Chemin Vanier\",[1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889],[1596,1597,1598,1599,1600,1601,1602],{\"_46\":1809,\"_127\":1063,\"_195\":-5,\"_163\":1188,\"_158\":172,\"_160\":172,\"_198\":1189,\"_139\":1810,\"_165\":1811,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1812,\"_39\":1813},{\"_46\":1787,\"_127\":227,\"_195\":-5,\"_163\":1788,\"_158\":173,\"_160\":172,\"_198\":1789,\"_139\":1790,\"_165\":1791,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1792,\"_39\":1793},{\"_46\":1771,\"_127\":1649,\"_195\":-5,\"_163\":1772,\"_158\":172,\"_160\":172,\"_198\":708,\"_139\":1773,\"_165\":1774,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1775,\"_39\":1776},{\"_46\":1707,\"_127\":1063,\"_195\":-5,\"_163\":1064,\"_158\":172,\"_160\":172,\"_198\":1065,\"_139\":1708,\"_165\":1709,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1710,\"_39\":1711},{\"_46\":1648,\"_127\":1649,\"_195\":-5,\"_163\":1650,\"_158\":172,\"_160\":172,\"_198\":1651,\"_139\":1652,\"_165\":1653,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1654,\"_39\":1655},{\"_46\":1628,\"_127\":227,\"_195\":196,\"_163\":854,\"_158\":173,\"_160\":172,\"_198\":367,\"_139\":1629,\"_165\":1630,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1631,\"_39\":1632},{\"_46\":1603,\"_127\":171,\"_195\":1604,\"_163\":1605,\"_158\":172,\"_160\":172,\"_198\":786,\"_139\":1606,\"_165\":1607,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1608,\"_39\":1609},\"d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f\",4,1841,[1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627],[\"D\",1751328000000],{\"_163\":1045,\"_36\":1614},[1610,1611],{\"_97\":1613,\"_41\":331},{\"_97\":1612,\"_41\":302},{\"_276\":303,\"_21\":304},{\"_276\":332,\"_21\":333},\"*Promotion sur le loyer pour le 12 premier mois*\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/13__0002-00211w9a0814-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/6__0004-004361w9a0859-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/7__0003-003311w9a0844-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/5__0005-005411w9a0864-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/0__0007-007511w9a0879-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/2__0008-008561w9a0884-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/3__0006-006461w9a0869-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/4__0009-009611w9a0889-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/8__0011-011261w9a0834-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/9__0010-010211w9a0829-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/10__0014-014161w9a0824-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/11__0013-013111w9a0839-min.jpg\",\"/storage/v1/object/public/halfred/units/d85dde8b-bab8-4bfa-b35c-e83d9ae5a50f/12__0012-01261w9a0819-min.jpg\",\"3d303cdf-7100-4673-a6a3-6ee167d59a2c\",[1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647],[\"D\",1793491200000],{\"_163\":413,\"_36\":1633},[],\"*** Promotion pour un bail de 24 mois **\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0002-002311w9a1764-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0003-003211w9a1749-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0004-004261w9a1759-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0005-005111w9a1729-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0006-00661w9a1724-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0007-007161w9a1739-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0008-008661w9a1799-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0009-009361w9a1769-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0010-010411w9a1774-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0011-011461w9a1779-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0012-012511w9a1784-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0013-013561w9a1789-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0014-014611w9a1794-min.jpg\",\"/storage/v1/object/public/halfred/units/3d303cdf-7100-4673-a6a3-6ee167d59a2c/0015-015711w9a1804-min.jpg\",\"d37259c3-f73d-4221-b882-bad37f86dae3\",640,1970,\"305\",[1699,1700,1701,1702,1703,1704,1705,1706],[\"D\",1751328000000],{\"_163\":1698,\"_36\":878},[1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676],{\"_97\":1697,\"_41\":354},{\"_97\":1696,\"_41\":548},{\"_97\":1695,\"_41\":309},{\"_97\":1694,\"_41\":327},{\"_97\":1693,\"_41\":316},{\"_97\":1692,\"_41\":331},{\"_97\":1691,\"_41\":327},{\"_97\":1690,\"_41\":302},{\"_97\":1689,\"_41\":320},{\"_97\":1688,\"_41\":302},{\"_97\":1687,\"_41\":275},{\"_97\":1686,\"_41\":309},{\"_97\":1685,\"_41\":283},{\"_97\":1684,\"_41\":397},{\"_97\":1683,\"_41\":1323},{\"_97\":1682,\"_41\":341},{\"_97\":1681,\"_41\":283},{\"_97\":1680,\"_41\":302},{\"_97\":1679,\"_41\":294},{\"_97\":1678,\"_41\":290},{\"_97\":1677,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":398,\"_21\":399},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},1880,\"/storage/v1/object/public/halfred/units/d37259c3-f73d-4221-b882-bad37f86dae3/0007-0007.jpg\",\"/storage/v1/object/public/halfred/units/d37259c3-f73d-4221-b882-bad37f86dae3/0008-0008.jpg\",\"/storage/v1/object/public/halfred/units/d37259c3-f73d-4221-b882-bad37f86dae3/0009-0009.jpg\",\"/storage/v1/object/public/halfred/units/d37259c3-f73d-4221-b882-bad37f86dae3/0010-0010.jpg\",\"/storage/v1/object/public/halfred/units/d37259c3-f73d-4221-b882-bad37f86dae3/0017-0017.jpg\",\"/storage/v1/object/public/halfred/units/d37259c3-f73d-4221-b882-bad37f86dae3/0030-0030.jpg\",\"/storage/v1/object/public/halfred/units/d37259c3-f73d-4221-b882-bad37f86dae3/0031-0031.jpg\",\"/storage/v1/object/public/halfred/units/d37259c3-f73d-4221-b882-bad37f86dae3/0032-0032.jpg\",\"06a612cf-848c-4a5a-b30f-0034cf433209\",[1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770],[\"D\",1782864000000],{\"_163\":1110,\"_36\":1756},[1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733],{\"_97\":1755,\"_41\":354},{\"_97\":1754,\"_41\":548},{\"_97\":1753,\"_41\":309},{\"_97\":1752,\"_41\":327},{\"_97\":1751,\"_41\":316},{\"_97\":1750,\"_41\":331},{\"_97\":1749,\"_41\":327},{\"_97\":1748,\"_41\":302},{\"_97\":1747,\"_41\":320},{\"_97\":1746,\"_41\":1394},{\"_97\":1745,\"_41\":302},{\"_97\":1744,\"_41\":275},{\"_97\":1743,\"_41\":316},{\"_97\":1742,\"_41\":309},{\"_97\":1741,\"_41\":283},{\"_97\":1740,\"_41\":1323},{\"_97\":1739,\"_41\":341},{\"_97\":1738,\"_41\":302},{\"_97\":1737,\"_41\":294},{\"_97\":1736,\"_41\":290},{\"_97\":1735,\"_41\":283},{\"_97\":1734,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":1395,\"_21\":1396},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"Rabais spécial pour un bail de 12 mois \\n\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/0__0003-003461w9a0969-min.jpg?version=4fd2dfea-156c-4841-9834-793cb0cb8c4f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/10__0010-010161w9a0929-min.jpg?version=56aeec50-6037-4d6a-b614-5849ea5ca163\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/11__0011-011211w9a0934-min.jpg?version=10096017-eeca-4405-ab71-d5ec0edf2626\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/12__0008-00861w9a0914-min.jpg?version=d9248228-28a4-4e37-8425-0a4a5b3df3db\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/13__0009-009111w9a0919-min.jpg?version=ec965998-ab81-4e76-92a1-0ae4d210424f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/14__0001-00111w9a0909-min.jpg?version=3114ed82-481e-43f2-a778-a53546286ba9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/2__0004-004511w9a0979-min.jpg?version=9107d298-9411-4058-9677-7a100d06960c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/3__0005-005561w9a0984-min.jpg?version=75d34dc2-fade-42b1-ae0a-701d729bdad3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/4__0007-007661w9a0999-min.jpg?version=75f52f24-003f-4c10-bc7d-0d590ec3a1a0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/5__0006-006611w9a0989-min.jpg?version=1767587c-5125-4965-9bc4-81caa84dae7b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/6__0002-002311w9a0949-min.jpg?version=d02b5fcb-6be0-48c1-97a7-61354bdcdba8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/7__0014-014411w9a0964-min.jpg?version=bb9ade49-fda8-4d55-bb89-d398557e9c82\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/8__0012-012261w9a0939-min.jpg?version=ba0c9530-4293-4238-bc22-d5030875517b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/06a612cf-848c-4a5a-b30f-0034cf433209/9__0013-013361w9a0954-min.jpg?version=6da3d800-0fea-4079-9c12-3bf015999c02\",\"0bc3c9c2-c65b-461c-8f7c-4b832ae3d773\",1895,[1779,1780,1781,1782,1783,1784,1785,1786],[\"D\",1751328000000],{\"_163\":1777,\"_36\":1778},[],1817,\"Rabais spécial pour un bail de 12 mois \",\"/storage/v1/object/public/halfred/units/0bc3c9c2-c65b-461c-8f7c-4b832ae3d773/0007-0007.jpg\",\"/storage/v1/object/public/halfred/units/0bc3c9c2-c65b-461c-8f7c-4b832ae3d773/0009-0009.jpg\",\"/storage/v1/object/public/halfred/units/0bc3c9c2-c65b-461c-8f7c-4b832ae3d773/0010-0010.jpg\",\"/storage/v1/object/public/halfred/units/0bc3c9c2-c65b-461c-8f7c-4b832ae3d773/0030-0030.jpg\",\"/storage/v1/object/public/halfred/units/0bc3c9c2-c65b-461c-8f7c-4b832ae3d773/0017-0017.jpg\",\"/storage/v1/object/public/halfred/units/0bc3c9c2-c65b-461c-8f7c-4b832ae3d773/0008-0008.jpg\",\"/storage/v1/object/public/halfred/units/0bc3c9c2-c65b-461c-8f7c-4b832ae3d773/0032-0032.jpg\",\"/storage/v1/object/public/halfred/units/0bc3c9c2-c65b-461c-8f7c-4b832ae3d773/0031-0031.jpg\",\"0418dadb-8774-4a61-85cb-9dc2f2d9c474\",2350,\"202\",[1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808],[\"D\",1751328000000],{\"_163\":235,\"_36\":878},[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/0__0007-007161w9a1739-min.jpg?version=8a0e4097-73f8-41e0-8d1d-dadd90973818\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/10__0011-011461w9a1779-min.jpg?version=310dc1f5-9025-4820-87d1-b580aedec85d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/11__0012-012511w9a1784-min.jpg?version=a3179d28-941c-455c-ab7e-29bc32e65aaf\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/12__0013-013561w9a1789-min.jpg?version=d3af6233-6815-4a63-86e2-e4da76459708\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/13__0014-014611w9a1794-min.jpg?version=c12bd385-74a0-40bc-9b0c-dabcdf2e94e8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/14__0015-015711w9a1804-min.jpg?version=7aafe004-0359-4e23-9edd-c5d232a1f850\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/15__0001-00111w9a1719-min.jpg?version=22cf9afa-a109-4f36-974b-f6520944fc2c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/2__0008-008661w9a1799-min.jpg?version=123856fd-62d0-446f-914c-58f3e0c13b58\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/3__0006-00661w9a1724-min.jpg?version=1e93b07d-20e2-4548-8df8-4de288728314\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/4__0005-005111w9a1729-min.jpg?version=066de2ef-fe99-451f-96c5-47a1535b173f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/5__0004-004261w9a1759-min.jpg?version=fefc9a56-4fac-4ca3-aded-c19152d42aad\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/6__0003-003211w9a1749-min.jpg?version=67c0576c-1edc-4fdb-bf21-97605bef2f5f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/7__0002-002311w9a1764-min.jpg?version=2bf500ab-0703-4c2e-9b30-b88d9c5c229c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/8__0009-009361w9a1769-min.jpg?version=e290831c-f9d7-4094-ad6c-8bcac082e055\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0418dadb-8774-4a61-85cb-9dc2f2d9c474/9__0010-010411w9a1774-min.jpg?version=9876e235-82b7-44d3-80eb-3af5865e61db\",\"239792e8-d9c2-4824-bfcd-6e900cc17573\",[1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864],[\"D\",1767225600000],{\"_163\":1194,\"_36\":1850},[1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831],{\"_97\":1849,\"_41\":548},{\"_97\":1848,\"_41\":309},{\"_97\":1847,\"_41\":298},{\"_97\":1846,\"_41\":331},{\"_97\":1845,\"_41\":327},{\"_97\":1844,\"_41\":302},{\"_97\":1843,\"_41\":320},{\"_97\":1842,\"_41\":302},{\"_97\":1841,\"_41\":275},{\"_97\":1840,\"_41\":309},{\"_97\":1839,\"_41\":397},{\"_97\":1838,\"_41\":341},{\"_97\":1837,\"_41\":283},{\"_97\":1836,\"_41\":302},{\"_97\":1835,\"_41\":294},{\"_97\":1834,\"_41\":290},{\"_97\":1833,\"_41\":283},{\"_97\":1832,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":398,\"_21\":399},{\"_276\":310,\"_21\":311},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},\"Prix spécial pour un bail de 12 mois \",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/0__0003-003461w9a0969-min.jpg?version=c918d714-57ee-479f-b7a9-ff27910ed076\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/10__0010-010161w9a0929-min.jpg?version=f9074c1d-0443-468d-b0e6-d427d9cf6a3a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/11__0011-011211w9a0934-min.jpg?version=dc4915d7-89ea-496c-a931-a07fe070c37d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/12__0008-00861w9a0914-min.jpg?version=8cdbdf12-bd50-44b0-a602-0ff94480bbf9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/13__0009-009111w9a0919-min.jpg?version=382b8a21-b710-4313-a656-33dc0cef5bd8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/14__0001-00111w9a0909-min.jpg?version=193cedb5-e58f-45c7-989f-d4069e01e6f9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/2__0004-004511w9a0979-min.jpg?version=adcfe246-2447-4523-aa07-ab3188cedbeb\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/3__0005-005561w9a0984-min.jpg?version=8d02b62e-52e0-4620-9f5e-68b2331d3a64\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/4__0007-007661w9a0999-min.jpg?version=22ad8979-45eb-4be3-923a-a8ec6ce529a0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/5__0006-006611w9a0989-min.jpg?version=5b22d5d5-282f-4d4d-9f95-5aca7384fc4c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/6__0002-002311w9a0949-min.jpg?version=92b7d357-1fb2-4e55-9cb5-4929c45e78cb\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/7__0014-014411w9a0964-min.jpg?version=6c4bfa3e-75ea-4677-9e25-dda0aff365fa\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/8__0012-012261w9a0939-min.jpg?version=0e490453-8455-429c-bf4c-63f6f1a88ec7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/239792e8-d9c2-4824-bfcd-6e900cc17573/9__0013-013361w9a0954-min.jpg?version=9bb6fad0-a53a-4f6f-bf4f-bf8d8c315f1b\",{\"_97\":1914,\"_41\":354},{\"_97\":1913,\"_41\":548},{\"_97\":1912,\"_41\":309},{\"_97\":1911,\"_41\":298},{\"_97\":1910,\"_41\":327},{\"_97\":1909,\"_41\":341},{\"_97\":1908,\"_41\":316},{\"_97\":1907,\"_41\":283},{\"_97\":1906,\"_41\":331},{\"_97\":1905,\"_41\":327},{\"_97\":1904,\"_41\":302},{\"_97\":1903,\"_41\":320},{\"_97\":1902,\"_41\":316},{\"_97\":1901,\"_41\":548},{\"_97\":1900,\"_41\":298},{\"_97\":1899,\"_41\":309},{\"_97\":1898,\"_41\":302},{\"_97\":1897,\"_41\":302},{\"_97\":1896,\"_41\":327},{\"_97\":1895,\"_41\":294},{\"_97\":1894,\"_41\":290},{\"_97\":1893,\"_41\":283},{\"_97\":1892,\"_41\":283},{\"_97\":1891,\"_41\":275},{\"_97\":1890,\"_41\":275},{\"_276\":277,\"_21\":278},{\"_276\":280,\"_21\":281},{\"_276\":284,\"_21\":285},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":541,\"_21\":542},{\"_276\":303,\"_21\":304},{\"_276\":306,\"_21\":307},{\"_276\":310,\"_21\":311},{\"_276\":313,\"_21\":314},{\"_276\":549,\"_21\":550},{\"_276\":317,\"_21\":318},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":335,\"_21\":336},{\"_276\":338,\"_21\":339},{\"_276\":342,\"_21\":343},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"/storage/v1/object/public/halfred/buildings/2b7e9e6b-3260-40d8-8ddf-9ef7629e1b39/exterieur_D.jpg\",\"09e7d261-a038-4c50-9a9d-78c63f739fc1\",[2265],\"921 Chemin Vanier\",[2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242],[1921,1922,1923,1924,1925,1926,1927],{\"_46\":2174,\"_127\":128,\"_195\":228,\"_163\":487,\"_158\":173,\"_160\":172,\"_198\":488,\"_139\":2175,\"_165\":2176,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2177,\"_39\":2178},{\"_46\":2118,\"_127\":1063,\"_195\":172,\"_163\":1127,\"_158\":172,\"_160\":172,\"_198\":1128,\"_139\":2119,\"_165\":2120,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2121,\"_39\":2122},{\"_46\":2060,\"_127\":171,\"_195\":173,\"_163\":2061,\"_158\":172,\"_160\":172,\"_198\":2062,\"_139\":2063,\"_165\":2064,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2065,\"_39\":2066},{\"_46\":2042,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":671,\"_139\":2043,\"_165\":2044,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2045,\"_39\":2046},{\"_46\":2023,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":2024,\"_165\":2025,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2026,\"_39\":2027},{\"_46\":1976,\"_127\":1063,\"_195\":-5,\"_163\":1977,\"_158\":172,\"_160\":172,\"_198\":1978,\"_139\":1979,\"_165\":1980,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1981,\"_39\":1982},{\"_46\":1928,\"_127\":171,\"_195\":196,\"_163\":785,\"_158\":172,\"_160\":172,\"_198\":983,\"_139\":1929,\"_165\":1930,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":1931,\"_39\":1932},\"74b66039-ec58-425b-9d1e-43c092cacde0\",[1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975],[\"D\",1793491200000],{\"_163\":835,\"_36\":-5},[1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946],{\"_97\":1960,\"_41\":354},{\"_97\":1959,\"_41\":309},{\"_97\":1958,\"_41\":327},{\"_97\":1957,\"_41\":316},{\"_97\":1956,\"_41\":327},{\"_97\":1955,\"_41\":302},{\"_97\":1954,\"_41\":302},{\"_97\":1953,\"_41\":275},{\"_97\":1952,\"_41\":1323},{\"_97\":1951,\"_41\":283},{\"_97\":1950,\"_41\":294},{\"_97\":1949,\"_41\":290},{\"_97\":1948,\"_41\":283},{\"_97\":1947,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":335,\"_21\":336},{\"_276\":1324,\"_21\":1325},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/0__0007-007511w9a0879-min.jpg?version=250babd1-a6f4-4caf-b3e2-1d4696d670bb\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/10__0014-014161w9a0824-min.jpg?version=71529421-272a-4d60-b99d-26d3c1b4e636\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/11__0013-013111w9a0839-min.jpg?version=1b3e77c7-426c-4dfc-8066-d7d5178e9230\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/12__0012-01261w9a0819-min.jpg?version=f007a804-6743-41d2-8ce0-0141a62c3437\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/13__0002-00211w9a0814-min.jpg?version=8fd26f78-cd8a-4914-a604-5fbc2f7f21e8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/14__0001-001661w9a0899-min.jpg?version=41a97269-3692-47ba-a23f-d29edcd11f11\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/15__0015-015711w9a1018-min.jpg?version=2c229f9f-f6fe-4f9f-b916-3d5d839d42c8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/2__0008-008561w9a0884-min.jpg?version=ecb5da2f-7f5e-436a-83e2-92b2ac58b18d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/3__0006-006461w9a0869-min.jpg?version=3419dcc5-02d4-4646-9b83-f8a08deb4947\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/4__0009-009611w9a0889-min.jpg?version=e363fe17-86d0-44c3-8df8-de7d9871f193\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/5__0005-005411w9a0864-min.jpg?version=8857d654-6e2e-4549-9cba-91ba8becce98\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/6__0004-004361w9a0859-min.jpg?version=9b8fc397-fdfe-4bc5-86a0-8c168bd60906\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/7__0003-003311w9a0844-min.jpg?version=a710e288-1602-4420-8643-6ed4a28cb442\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/8__0011-011261w9a0834-min.jpg?version=85ed2ab6-1112-416b-bf52-225fa73ab1f4\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/74b66039-ec58-425b-9d1e-43c092cacde0/9__0010-010211w9a0829-min.jpg?version=576a6fe6-76ea-4895-aadb-8d8720850cae\",\"5c43bf3b-0862-418c-a8dc-a8ecc2689c1c\",1975,\"401\",[2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022],[\"D\",1772323200000],{\"_163\":1188,\"_36\":1111},[1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995],{\"_97\":2008,\"_41\":354},{\"_97\":2007,\"_41\":309},{\"_97\":2006,\"_41\":327},{\"_97\":2005,\"_41\":316},{\"_97\":2004,\"_41\":327},{\"_97\":2003,\"_41\":302},{\"_97\":2002,\"_41\":302},{\"_97\":2001,\"_41\":298},{\"_97\":2000,\"_41\":1323},{\"_97\":1999,\"_41\":294},{\"_97\":1998,\"_41\":290},{\"_97\":1997,\"_41\":283},{\"_97\":1996,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":1324,\"_21\":1325},{\"_276\":313,\"_21\":314},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/0__0003-003461w9a0969-min.jpg?version=ac5880a4-affa-41b6-8e39-f268421d310a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/10__0010-010161w9a0929-min.jpg?version=acf46e04-ea53-4fb1-9a74-613d9cf48bc8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/11__0011-011211w9a0934-min.jpg?version=00bdd6ac-a6da-4dc0-a482-ee1238422b7b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/12__0008-00861w9a0914-min.jpg?version=cc30f7f5-4e5a-40c8-b141-70c809ec8627\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/13__0009-009111w9a0919-min.jpg?version=dfa9999d-9243-4857-8a69-2ff68265f0fc\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/14__0001-00111w9a0909-min.jpg?version=f04f81fd-15bc-4829-bd43-821c08daf57a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/2__0004-004511w9a0979-min.jpg?version=acbd1cde-f358-4348-9266-c43aa943e9a2\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/3__0005-005561w9a0984-min.jpg?version=c71bba44-b382-4aea-9e47-04642273932f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/4__0007-007661w9a0999-min.jpg?version=b34533da-c310-46d8-9e3f-b6d8755d386c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/5__0006-006611w9a0989-min.jpg?version=7f579e74-3c3b-4453-b51c-075ef115f3b7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/6__0002-002311w9a0949-min.jpg?version=d8ae8291-fe92-4b2b-8329-b78407149de1\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/7__0014-014411w9a0964-min.jpg?version=2f9e3b79-e664-46da-a17a-51cbe58aaa45\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/8__0012-012261w9a0939-min.jpg?version=38ab9678-b333-46ee-95e9-a38ca27754b3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/5c43bf3b-0862-418c-a8dc-a8ecc2689c1c/9__0013-013361w9a0954-min.jpg?version=d303636a-f323-48bb-9f77-8dc1c039432f\",\"caa0aaf5-f19f-4eab-aa67-71ad1e011e2d\",[2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041],[\"D\",1777593600000],{\"_163\":210,\"_36\":2028},[],\"** Promotion pour un bail de 12 mois **\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0002-002_1_1W9A0814-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0003-003_31_1W9A0844-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0004-004_36_1W9A0859-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0005-005_41_1W9A0864-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0006-006_46_1W9A0869-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0007-007_51_1W9A0879-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0008-008_56_1W9A0884-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0009-009_61_1W9A0889-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0010-010_21_1W9A0829-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0011-011_26_1W9A0834-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0012-012_6_1W9A0819-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0013-013_11_1W9A0839-min.jpg\",\"/storage/v1/object/public/halfred/units/caa0aaf5-f19f-4eab-aa67-71ad1e011e2d/0014-014_16_1W9A0824-min.jpg\",\"2baad719-d5fe-47f1-82b1-39cc018b41f1\",[2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059],[\"D\",1790812800000],{\"_163\":210,\"_36\":472},[],\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0002-002_1_1W9A0814.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0003-003_31_1W9A0844.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0004-004_36_1W9A0859.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0005-005_41_1W9A0864.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0006-006_46_1W9A0869.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0007-007_51_1W9A0879.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0008-008_56_1W9A0884.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0009-009_61_1W9A0889.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0010-010_21_1W9A0829.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0011-011_26_1W9A0834.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0012-012_6_1W9A0819.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0013-013_11_1W9A0839.jpg\",\"/storage/v1/object/public/halfred/units/2baad719-d5fe-47f1-82b1-39cc018b41f1/0014-014_16_1W9A0824.jpg\",\"c3554475-4771-4326-8a00-3b0e686a8e6a\",1900,\"206\",[2111,2112,2113,2114,2115,2116,2117],[\"D\",1767225600000],{\"_163\":210,\"_36\":-5},[2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088],{\"_97\":2110,\"_41\":354},{\"_97\":2109,\"_41\":548},{\"_97\":2108,\"_41\":309},{\"_97\":2107,\"_41\":327},{\"_97\":2106,\"_41\":316},{\"_97\":2105,\"_41\":331},{\"_97\":2104,\"_41\":327},{\"_97\":2103,\"_41\":302},{\"_97\":2102,\"_41\":320},{\"_97\":2101,\"_41\":302},{\"_97\":2100,\"_41\":275},{\"_97\":2099,\"_41\":316},{\"_97\":2098,\"_41\":309},{\"_97\":2097,\"_41\":283},{\"_97\":2096,\"_41\":1323},{\"_97\":2095,\"_41\":341},{\"_97\":2094,\"_41\":283},{\"_97\":2093,\"_41\":302},{\"_97\":2092,\"_41\":294},{\"_97\":2091,\"_41\":290},{\"_97\":2090,\"_41\":283},{\"_97\":2089,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"/storage/v1/object/public/halfred/units/c3554475-4771-4326-8a00-3b0e686a8e6a/chambre-c-2.jpg\",\"/storage/v1/object/public/halfred/units/c3554475-4771-4326-8a00-3b0e686a8e6a/chambre-c.jpg\",\"/storage/v1/object/public/halfred/units/c3554475-4771-4326-8a00-3b0e686a8e6a/cusine-c-2.jpg\",\"/storage/v1/object/public/halfred/units/c3554475-4771-4326-8a00-3b0e686a8e6a/cusine-c-3.jpg\",\"/storage/v1/object/public/halfred/units/c3554475-4771-4326-8a00-3b0e686a8e6a/cusine-c-4.jpg\",\"/storage/v1/object/public/halfred/units/c3554475-4771-4326-8a00-3b0e686a8e6a/cusine-c-5.jpg\",\"/storage/v1/object/public/halfred/units/c3554475-4771-4326-8a00-3b0e686a8e6a/cusine-c.jpg\",\"370aa130-a375-4746-ace7-db2d96562d84\",[2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173],[\"D\",1788220800000],{\"_163\":1171,\"_36\":2159},[2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140],{\"_97\":2158,\"_41\":354},{\"_97\":2157,\"_41\":548},{\"_97\":2156,\"_41\":309},{\"_97\":2155,\"_41\":298},{\"_97\":2154,\"_41\":327},{\"_97\":2153,\"_41\":316},{\"_97\":2152,\"_41\":331},{\"_97\":2151,\"_41\":327},{\"_97\":2150,\"_41\":302},{\"_97\":2149,\"_41\":302},{\"_97\":2148,\"_41\":275},{\"_97\":2147,\"_41\":298},{\"_97\":2146,\"_41\":309},{\"_97\":2145,\"_41\":302},{\"_97\":2144,\"_41\":294},{\"_97\":2143,\"_41\":290},{\"_97\":2142,\"_41\":283},{\"_97\":2141,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":310,\"_21\":311},{\"_276\":313,\"_21\":314},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},\"*** Promotion pour un bail de 12 mois ***\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/0__0003-003461w9a0969-min.jpg?version=331f3aac-c220-4dbb-88bc-bb74bdbc761e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/10__0010-010161w9a0929-min.jpg?version=0e5b455a-be43-420d-9342-3884bee4c978\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/11__0011-011211w9a0934-min.jpg?version=b4ed8c44-1095-42e1-b1ab-5aad8b2bca3c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/12__0008-00861w9a0914-min.jpg?version=fecd5a24-1e60-4dc0-b94c-f188fd02d09a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/13__0009-009111w9a0919-min.jpg?version=9d8b7653-2ac4-4225-9b3f-b4608c120d73\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/14__0001-00111w9a0909-min.jpg?version=4f0dd03a-d269-4e81-a5ba-6d21598e55d9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/2__0004-004511w9a0979-min.jpg?version=af771284-0cf5-4447-a684-6a5189e3282b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/3__0005-005561w9a0984-min.jpg?version=cc650a4f-8325-4848-9df8-5c5523de2d4b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/4__0007-007661w9a0999-min.jpg?version=76c53a30-401a-4493-b13a-c9e684285315\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/5__0006-006611w9a0989-min.jpg?version=db959e29-1b1d-4a9b-a426-43683449acfa\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/6__0002-002311w9a0949-min.jpg?version=738bd8b9-187e-46cc-9233-70c65f70b005\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/7__0014-014411w9a0964-min.jpg?version=bdb12298-4a2b-4c0b-bd82-61476d11d670\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/8__0012-012261w9a0939-min.jpg?version=6a4eb5f7-a982-46f8-876a-708a60988c97\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/370aa130-a375-4746-ace7-db2d96562d84/9__0013-013361w9a0954-min.jpg?version=35cb64d5-3a72-49e9-a920-963663800047\",\"bb588769-b13c-4ded-a71c-0b189cd7db58\",[2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220],[\"D\",1790812800000],{\"_163\":493,\"_36\":2205},[2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191],{\"_97\":2204,\"_41\":354},{\"_97\":2203,\"_41\":309},{\"_97\":2202,\"_41\":327},{\"_97\":2201,\"_41\":316},{\"_97\":2200,\"_41\":327},{\"_97\":2199,\"_41\":302},{\"_97\":2198,\"_41\":302},{\"_97\":2197,\"_41\":298},{\"_97\":2196,\"_41\":1323},{\"_97\":2195,\"_41\":294},{\"_97\":2194,\"_41\":290},{\"_97\":2193,\"_41\":283},{\"_97\":2192,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":1324,\"_21\":1325},{\"_276\":313,\"_21\":314},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},\"*** Prix pour un bail de 12 mois ***\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/0__0007-007261w9a1846-min.jpg?version=e644dba0-d365-4fa7-8e5c-06392f86761a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/10__0010-010611w9a1886-min.jpg?version=7060f7b8-ee96-4cc7-a5c9-ebf54a26aff1\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/11__0014-014411w9a1866-min.jpg?version=29cf127f-8f52-4612-af78-cc82773bef3a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/12__0015-015461w9a1871-min.jpg?version=1526aa7e-aea9-46f9-9bdb-653bf8d60196\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/13__0013-01361w9a1816-min.jpg?version=8f00a29c-85d8-478e-8ee2-e57fc83e7731\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/14__0001-00111w9a1811-min.jpg?version=64200120-252d-425f-9693-2ff5b9aa0c0a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/1__0006-006111w9a1826-min.jpg?version=2eeb9424-8304-4285-8b76-c7e6738d6ed1\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/2__0005-005211w9a1836-min.jpg?version=982b39b9-99af-433a-a405-eae1ff3fbd77\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/3__0004-004161w9a1831-min.jpg?version=be175dcc-a53b-4bff-82c7-9c5eca643b40\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/4__0003-003361w9a1856-min.jpg?version=d29d285c-c563-40b8-be23-d698ea8e703d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/5__0002-002311w9a1851-min.jpg?version=be63af69-a3bd-41fa-834a-ea5ea934dbae\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/6__0008-008511w9a1876-min.jpg?version=14849e2b-39c9-4db8-b4c7-2c954905c40a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/7__0009-009561w9a1881-min.jpg?version=f8ab4b40-9da2-4bf8-bc64-b599a35929da\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/8__0012-012711w9a1896-min.jpg?version=c8fad616-ef4e-4f10-a60f-ae740b79330b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/bb588769-b13c-4ded-a71c-0b189cd7db58/9__0011-011661w9a1891-min.jpg?version=e5a99a1d-a939-46d1-8ed0-176e81acafe6\",{\"_97\":2264,\"_41\":354},{\"_97\":2263,\"_41\":309},{\"_97\":2262,\"_41\":298},{\"_97\":2261,\"_41\":327},{\"_97\":2260,\"_41\":341},{\"_97\":2259,\"_41\":316},{\"_97\":2258,\"_41\":283},{\"_97\":2257,\"_41\":331},{\"_97\":2256,\"_41\":327},{\"_97\":2255,\"_41\":302},{\"_97\":2254,\"_41\":320},{\"_97\":2253,\"_41\":316},{\"_97\":2252,\"_41\":309},{\"_97\":2251,\"_41\":302},{\"_97\":2250,\"_41\":302},{\"_97\":2249,\"_41\":298},{\"_97\":2248,\"_41\":327},{\"_97\":2247,\"_41\":294},{\"_97\":2246,\"_41\":283},{\"_97\":2245,\"_41\":283},{\"_97\":2244,\"_41\":275},{\"_97\":2243,\"_41\":275},{\"_276\":277,\"_21\":278},{\"_276\":280,\"_21\":281},{\"_276\":284,\"_21\":285},{\"_276\":287,\"_21\":288},{\"_276\":295,\"_21\":296},{\"_276\":541,\"_21\":542},{\"_276\":299,\"_21\":300},{\"_276\":303,\"_21\":304},{\"_276\":306,\"_21\":307},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":335,\"_21\":336},{\"_276\":338,\"_21\":339},{\"_276\":342,\"_21\":343},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/09e7d261-a038-4c50-9a9d-78c63f739fc1/0__09e7d261-a038-4c50-9a9d-78c63f739fc1.webp?version=7ff2ee86-2759-4ed9-8d5b-a8fe02dd8fff\",{\"_46\":2174,\"_127\":128,\"_195\":228,\"_163\":487,\"_158\":173,\"_160\":172,\"_198\":488,\"_139\":3212,\"_165\":3213,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3214,\"_39\":3215},{\"_46\":2118,\"_127\":1063,\"_195\":172,\"_163\":1127,\"_158\":172,\"_160\":172,\"_198\":1128,\"_139\":3172,\"_165\":3173,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3174,\"_39\":3175},{\"_46\":2060,\"_127\":171,\"_195\":173,\"_163\":2061,\"_158\":172,\"_160\":172,\"_198\":2062,\"_139\":3124,\"_165\":3125,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3126,\"_39\":3127},{\"_46\":2042,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":671,\"_139\":3120,\"_165\":3121,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3122,\"_39\":3123},{\"_46\":2023,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":3116,\"_165\":3117,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3118,\"_39\":3119},{\"_46\":1976,\"_127\":1063,\"_195\":-5,\"_163\":1977,\"_158\":172,\"_160\":172,\"_198\":1978,\"_139\":3086,\"_165\":3087,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3088,\"_39\":3089},{\"_46\":1928,\"_127\":171,\"_195\":196,\"_163\":785,\"_158\":172,\"_160\":172,\"_198\":983,\"_139\":3054,\"_165\":3055,\"_144\":60,\"_202\":1916,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3056,\"_39\":3057},{\"_46\":1809,\"_127\":1063,\"_195\":-5,\"_163\":1188,\"_158\":172,\"_160\":172,\"_198\":1189,\"_139\":3014,\"_165\":3015,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3016,\"_39\":3017},{\"_46\":1787,\"_127\":227,\"_195\":-5,\"_163\":1788,\"_158\":173,\"_160\":172,\"_198\":1789,\"_139\":3010,\"_165\":3011,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3012,\"_39\":3013},{\"_46\":1771,\"_127\":1649,\"_195\":-5,\"_163\":1772,\"_158\":172,\"_160\":172,\"_198\":708,\"_139\":3006,\"_165\":3007,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":3008,\"_39\":3009},{\"_46\":1707,\"_127\":1063,\"_195\":-5,\"_163\":1064,\"_158\":172,\"_160\":172,\"_198\":1065,\"_139\":2958,\"_165\":2959,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2960,\"_39\":2961},{\"_46\":1648,\"_127\":1649,\"_195\":-5,\"_163\":1650,\"_158\":172,\"_160\":172,\"_198\":1651,\"_139\":2912,\"_165\":2913,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2914,\"_39\":2915},{\"_46\":1628,\"_127\":227,\"_195\":196,\"_163\":854,\"_158\":173,\"_160\":172,\"_198\":367,\"_139\":2908,\"_165\":2909,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2910,\"_39\":2911},{\"_46\":1603,\"_127\":171,\"_195\":1604,\"_163\":1605,\"_158\":172,\"_160\":172,\"_198\":786,\"_139\":2900,\"_165\":2901,\"_144\":60,\"_202\":1591,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2902,\"_39\":2903},{\"_46\":1477,\"_127\":1063,\"_195\":-5,\"_163\":1127,\"_158\":172,\"_160\":172,\"_198\":1128,\"_139\":2852,\"_165\":2853,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2854,\"_39\":2855},{\"_46\":1413,\"_127\":1063,\"_195\":-5,\"_163\":1064,\"_158\":172,\"_160\":172,\"_198\":1065,\"_139\":2804,\"_165\":2805,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2806,\"_39\":2807},{\"_46\":1354,\"_127\":171,\"_195\":-5,\"_163\":1355,\"_158\":172,\"_160\":172,\"_198\":671,\"_139\":2758,\"_165\":2759,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2760,\"_39\":2761},{\"_46\":1290,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":2714,\"_165\":2715,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2716,\"_39\":2717},{\"_46\":1271,\"_127\":171,\"_195\":196,\"_163\":785,\"_158\":172,\"_160\":172,\"_198\":983,\"_139\":2710,\"_165\":2711,\"_144\":60,\"_202\":1261,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2712,\"_39\":2713},{\"_46\":1187,\"_127\":1063,\"_195\":-5,\"_163\":1188,\"_158\":172,\"_160\":172,\"_198\":1189,\"_139\":2706,\"_165\":2707,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2708,\"_39\":2709},{\"_46\":1126,\"_127\":1063,\"_195\":-5,\"_163\":1127,\"_158\":172,\"_160\":172,\"_198\":1128,\"_139\":2664,\"_165\":2665,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2666,\"_39\":2667},{\"_46\":1062,\"_127\":1063,\"_195\":-5,\"_163\":1064,\"_158\":172,\"_160\":172,\"_198\":1065,\"_139\":2620,\"_165\":2621,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2622,\"_39\":2623},{\"_46\":1040,\"_127\":171,\"_195\":-5,\"_163\":413,\"_158\":172,\"_160\":172,\"_198\":786,\"_139\":2616,\"_165\":2617,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2618,\"_39\":2619},{\"_46\":982,\"_127\":171,\"_195\":-5,\"_163\":785,\"_158\":172,\"_160\":172,\"_198\":983,\"_139\":2574,\"_165\":2575,\"_144\":60,\"_202\":972,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2576,\"_39\":2577},{\"_46\":894,\"_127\":171,\"_195\":-5,\"_163\":169,\"_158\":172,\"_160\":172,\"_198\":895,\"_139\":2557,\"_165\":2558,\"_144\":60,\"_202\":776,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":-5,\"_39\":2559},{\"_46\":852,\"_127\":853,\"_195\":-5,\"_163\":854,\"_158\":173,\"_160\":172,\"_198\":855,\"_139\":2535,\"_165\":2536,\"_144\":60,\"_202\":776,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2537,\"_39\":2538},{\"_46\":784,\"_127\":171,\"_195\":-5,\"_163\":785,\"_158\":172,\"_160\":172,\"_198\":786,\"_139\":2487,\"_165\":2488,\"_144\":60,\"_202\":776,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2489,\"_39\":2490},{\"_46\":706,\"_127\":128,\"_195\":172,\"_163\":707,\"_158\":173,\"_160\":172,\"_198\":708,\"_139\":2483,\"_165\":2484,\"_144\":60,\"_202\":567,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2485,\"_39\":2486},{\"_46\":669,\"_127\":171,\"_195\":196,\"_163\":670,\"_158\":172,\"_160\":172,\"_198\":671,\"_139\":2462,\"_165\":2463,\"_144\":60,\"_202\":567,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":-5,\"_39\":2464},{\"_46\":618,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":2418,\"_165\":2419,\"_144\":60,\"_202\":567,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2420,\"_39\":2421},{\"_46\":577,\"_127\":128,\"_195\":196,\"_163\":170,\"_158\":173,\"_160\":172,\"_198\":578,\"_139\":2396,\"_165\":2397,\"_144\":60,\"_202\":567,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2398,\"_39\":2399},{\"_46\":486,\"_127\":128,\"_195\":-5,\"_163\":487,\"_158\":173,\"_160\":172,\"_198\":488,\"_139\":2392,\"_165\":2393,\"_144\":60,\"_202\":357,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2394,\"_39\":2395},{\"_46\":429,\"_127\":171,\"_195\":-5,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":2352,\"_165\":2353,\"_144\":60,\"_202\":357,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2354,\"_39\":2355},{\"_46\":365,\"_127\":227,\"_195\":-5,\"_163\":366,\"_158\":173,\"_160\":172,\"_198\":367,\"_139\":2310,\"_165\":2311,\"_144\":60,\"_202\":357,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2312,\"_39\":2313},{\"_46\":226,\"_127\":227,\"_195\":228,\"_163\":229,\"_158\":173,\"_160\":172,\"_198\":230,\"_139\":2306,\"_165\":2307,\"_144\":60,\"_202\":182,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2308,\"_39\":2309},{\"_46\":194,\"_127\":171,\"_195\":196,\"_163\":197,\"_158\":172,\"_160\":172,\"_198\":199,\"_139\":2302,\"_165\":2303,\"_144\":60,\"_202\":182,\"_203\":-5,\"_204\":-5,\"_205\":206,\"_207\":2304,\"_39\":2305},[212,213,214,215,216,217,218,219,220,221,222,223,224,225],[\"D\",1793491200000],{\"_163\":210,\"_36\":211},[],[237,238,239,240,241,242,243,244,245,246,247,248,249,250],[\"D\",1788220800000],{\"_163\":235,\"_36\":236},[],[415,416,417,418,419,420,421,422,423,424,425,426,427,428],[\"D\",1780272000000],{\"_163\":413,\"_36\":414},[2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332],{\"_97\":2351,\"_41\":354},{\"_97\":2350,\"_41\":309},{\"_97\":2349,\"_41\":327},{\"_97\":2348,\"_41\":316},{\"_97\":2347,\"_41\":331},{\"_97\":2346,\"_41\":327},{\"_97\":2345,\"_41\":302},{\"_97\":2344,\"_41\":320},{\"_97\":2343,\"_41\":302},{\"_97\":2342,\"_41\":275},{\"_97\":2341,\"_41\":316},{\"_97\":2340,\"_41\":309},{\"_97\":2339,\"_41\":283},{\"_97\":2338,\"_41\":397},{\"_97\":2337,\"_41\":341},{\"_97\":2336,\"_41\":283},{\"_97\":2335,\"_41\":290},{\"_97\":2334,\"_41\":283},{\"_97\":2333,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":398,\"_21\":399},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},[473,474,475,476,477,478,479,480,481,482,483,484,485],[\"D\",1780272000000],{\"_163\":210,\"_36\":472},[2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373],{\"_97\":2391,\"_41\":354},{\"_97\":2390,\"_41\":309},{\"_97\":2389,\"_41\":327},{\"_97\":2388,\"_41\":316},{\"_97\":2387,\"_41\":331},{\"_97\":2386,\"_41\":327},{\"_97\":2385,\"_41\":302},{\"_97\":2384,\"_41\":302},{\"_97\":2383,\"_41\":275},{\"_97\":2382,\"_41\":316},{\"_97\":2381,\"_41\":309},{\"_97\":2380,\"_41\":275},{\"_97\":2379,\"_41\":341},{\"_97\":2378,\"_41\":283},{\"_97\":2377,\"_41\":302},{\"_97\":2376,\"_41\":294},{\"_97\":2375,\"_41\":290},{\"_97\":2374,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":459,\"_21\":460},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},[494,495,496,497,498,499,500,501,502,503,504,505,506,507,508],[\"D\",1780272000000],{\"_163\":493,\"_36\":414},[],[603,604,605,606,607,608,609,610,611,612,613,614,615,616,617],[\"D\",1790812800000],{\"_163\":601,\"_36\":602},[2400,2401,2402,2403,2404,2405,2406,2407,2408],{\"_97\":2417,\"_41\":354},{\"_97\":2416,\"_41\":309},{\"_97\":2415,\"_41\":327},{\"_97\":2414,\"_41\":316},{\"_97\":2413,\"_41\":327},{\"_97\":2412,\"_41\":302},{\"_97\":2411,\"_41\":341},{\"_97\":2410,\"_41\":290},{\"_97\":2409,\"_41\":283},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":342,\"_21\":343},{\"_276\":306,\"_21\":307},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},[664,665,666,667,668],[\"D\",1785542400000],{\"_163\":210,\"_36\":663},[2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441],{\"_97\":2461,\"_41\":354},{\"_97\":2460,\"_41\":548},{\"_97\":2459,\"_41\":309},{\"_97\":2458,\"_41\":327},{\"_97\":2457,\"_41\":316},{\"_97\":2456,\"_41\":327},{\"_97\":2455,\"_41\":302},{\"_97\":2454,\"_41\":320},{\"_97\":2453,\"_41\":302},{\"_97\":2452,\"_41\":275},{\"_97\":2451,\"_41\":316},{\"_97\":2450,\"_41\":309},{\"_97\":2449,\"_41\":283},{\"_97\":2448,\"_41\":341},{\"_97\":2447,\"_41\":283},{\"_97\":2446,\"_41\":302},{\"_97\":2445,\"_41\":294},{\"_97\":2444,\"_41\":290},{\"_97\":2443,\"_41\":283},{\"_97\":2442,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[693,694,695,696,697,698,699,700,701,702,703,704,705],[\"D\",1764547200000],[2465,2466,2467,2468,2469,2470,2471,2472,2473],{\"_97\":2482,\"_41\":354},{\"_97\":2481,\"_41\":309},{\"_97\":2480,\"_41\":327},{\"_97\":2479,\"_41\":316},{\"_97\":2478,\"_41\":327},{\"_97\":2477,\"_41\":302},{\"_97\":2476,\"_41\":341},{\"_97\":2475,\"_41\":290},{\"_97\":2474,\"_41\":283},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":342,\"_21\":343},{\"_276\":306,\"_21\":307},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},[713,714,715,716,717,718,719,720,721,722,723,724,725,726,727],[\"D\",1797292800000],{\"_163\":493,\"_36\":-5},[],[837,838,839,840,841,842,843,844,845,846,847,848,849,850,851],[\"D\",1780272000000],{\"_163\":835,\"_36\":836},[2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512],{\"_97\":2534,\"_41\":354},{\"_97\":2533,\"_41\":548},{\"_97\":2532,\"_41\":309},{\"_97\":2531,\"_41\":327},{\"_97\":2530,\"_41\":316},{\"_97\":2529,\"_41\":331},{\"_97\":2528,\"_41\":327},{\"_97\":2527,\"_41\":302},{\"_97\":2526,\"_41\":320},{\"_97\":2525,\"_41\":302},{\"_97\":2524,\"_41\":275},{\"_97\":2523,\"_41\":316},{\"_97\":2522,\"_41\":309},{\"_97\":2521,\"_41\":327},{\"_97\":2520,\"_41\":283},{\"_97\":2519,\"_41\":341},{\"_97\":2518,\"_41\":283},{\"_97\":2517,\"_41\":302},{\"_97\":2516,\"_41\":294},{\"_97\":2515,\"_41\":290},{\"_97\":2514,\"_41\":283},{\"_97\":2513,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":541,\"_21\":542},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[879,880,881,882,883,884,885,886,887,888,889,890,891,892,893],[\"D\",1798761600000],{\"_163\":413,\"_36\":878},[2539,2540,2541,2542,2543,2544,2545,2546,2547],{\"_97\":2556,\"_41\":309},{\"_97\":2555,\"_41\":327},{\"_97\":2554,\"_41\":331},{\"_97\":2553,\"_41\":327},{\"_97\":2552,\"_41\":302},{\"_97\":2551,\"_41\":316},{\"_97\":2550,\"_41\":341},{\"_97\":2549,\"_41\":294},{\"_97\":2548,\"_41\":290},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":342,\"_21\":343},{\"_276\":317,\"_21\":318},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},[913,914,915,916,917,918,919,920],[\"D\",1801440000000],[2560,2561,2562,2563,2564,2565,2566],{\"_97\":2573,\"_41\":309},{\"_97\":2572,\"_41\":331},{\"_97\":2571,\"_41\":327},{\"_97\":2570,\"_41\":302},{\"_97\":2569,\"_41\":283},{\"_97\":2568,\"_41\":294},{\"_97\":2567,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":295,\"_21\":296},{\"_276\":335,\"_21\":336},{\"_276\":306,\"_21\":307},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":351,\"_21\":352},[1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039],[\"D\",1777593600000],{\"_163\":835,\"_36\":1026},[2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596],{\"_97\":2615,\"_41\":548},{\"_97\":2614,\"_41\":309},{\"_97\":2613,\"_41\":298},{\"_97\":2612,\"_41\":327},{\"_97\":2611,\"_41\":316},{\"_97\":2610,\"_41\":331},{\"_97\":2609,\"_41\":327},{\"_97\":2608,\"_41\":302},{\"_97\":2607,\"_41\":320},{\"_97\":2606,\"_41\":302},{\"_97\":2605,\"_41\":275},{\"_97\":2604,\"_41\":316},{\"_97\":2603,\"_41\":309},{\"_97\":2602,\"_41\":283},{\"_97\":2601,\"_41\":341},{\"_97\":2600,\"_41\":302},{\"_97\":2599,\"_41\":290},{\"_97\":2598,\"_41\":283},{\"_97\":2597,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":303,\"_21\":304},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},[1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061],[\"D\",1754006400000],{\"_163\":1045,\"_36\":1046},[],[1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125],[\"D\",1780272000000],{\"_163\":1110,\"_36\":1111},[2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643],{\"_97\":2663,\"_41\":354},{\"_97\":2662,\"_41\":548},{\"_97\":2661,\"_41\":309},{\"_97\":2660,\"_41\":298},{\"_97\":2659,\"_41\":327},{\"_97\":2658,\"_41\":316},{\"_97\":2657,\"_41\":331},{\"_97\":2656,\"_41\":327},{\"_97\":2655,\"_41\":302},{\"_97\":2654,\"_41\":302},{\"_97\":2653,\"_41\":275},{\"_97\":2652,\"_41\":309},{\"_97\":2651,\"_41\":283},{\"_97\":2650,\"_41\":341},{\"_97\":2649,\"_41\":283},{\"_97\":2648,\"_41\":302},{\"_97\":2647,\"_41\":294},{\"_97\":2646,\"_41\":290},{\"_97\":2645,\"_41\":283},{\"_97\":2644,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186],[\"D\",1780272000000],{\"_163\":1171,\"_36\":1172},[2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686],{\"_97\":2705,\"_41\":354},{\"_97\":2704,\"_41\":548},{\"_97\":2703,\"_41\":309},{\"_97\":2702,\"_41\":327},{\"_97\":2701,\"_41\":316},{\"_97\":2700,\"_41\":331},{\"_97\":2699,\"_41\":327},{\"_97\":2698,\"_41\":302},{\"_97\":2697,\"_41\":302},{\"_97\":2696,\"_41\":275},{\"_97\":2695,\"_41\":316},{\"_97\":2694,\"_41\":309},{\"_97\":2693,\"_41\":283},{\"_97\":2692,\"_41\":341},{\"_97\":2691,\"_41\":283},{\"_97\":2690,\"_41\":294},{\"_97\":2689,\"_41\":290},{\"_97\":2688,\"_41\":283},{\"_97\":2687,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209],[\"D\",1775001600000],{\"_163\":1194,\"_36\":1195},[],[1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289],[\"D\",1788220800000],{\"_163\":835,\"_36\":1276},[],[1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353],[\"D\",1777593600000],{\"_163\":210,\"_36\":1338},[2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737],{\"_97\":2757,\"_41\":548},{\"_97\":2756,\"_41\":309},{\"_97\":2755,\"_41\":327},{\"_97\":2754,\"_41\":316},{\"_97\":2753,\"_41\":331},{\"_97\":2752,\"_41\":327},{\"_97\":2751,\"_41\":302},{\"_97\":2750,\"_41\":320},{\"_97\":2749,\"_41\":302},{\"_97\":2748,\"_41\":275},{\"_97\":2747,\"_41\":316},{\"_97\":2746,\"_41\":283},{\"_97\":2745,\"_41\":1323},{\"_97\":2744,\"_41\":341},{\"_97\":2743,\"_41\":283},{\"_97\":2742,\"_41\":302},{\"_97\":2741,\"_41\":294},{\"_97\":2740,\"_41\":290},{\"_97\":2739,\"_41\":283},{\"_97\":2738,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},[1406,1407,1408,1409,1410,1411,1412],[\"D\",1780272000000],{\"_163\":1405,\"_36\":878},[2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782],{\"_97\":2803,\"_41\":354},{\"_97\":2802,\"_41\":548},{\"_97\":2801,\"_41\":309},{\"_97\":2800,\"_41\":327},{\"_97\":2799,\"_41\":316},{\"_97\":2798,\"_41\":331},{\"_97\":2797,\"_41\":327},{\"_97\":2796,\"_41\":302},{\"_97\":2795,\"_41\":1394},{\"_97\":2794,\"_41\":302},{\"_97\":2793,\"_41\":275},{\"_97\":2792,\"_41\":316},{\"_97\":2791,\"_41\":309},{\"_97\":2790,\"_41\":283},{\"_97\":2789,\"_41\":1323},{\"_97\":2788,\"_41\":341},{\"_97\":2787,\"_41\":283},{\"_97\":2786,\"_41\":302},{\"_97\":2785,\"_41\":294},{\"_97\":2784,\"_41\":290},{\"_97\":2783,\"_41\":283},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":1395,\"_21\":1396},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476],[\"D\",1777593600000],{\"_163\":1110,\"_36\":1462},[2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829],{\"_97\":2851,\"_41\":354},{\"_97\":2850,\"_41\":548},{\"_97\":2849,\"_41\":309},{\"_97\":2848,\"_41\":327},{\"_97\":2847,\"_41\":316},{\"_97\":2846,\"_41\":331},{\"_97\":2845,\"_41\":327},{\"_97\":2844,\"_41\":302},{\"_97\":2843,\"_41\":320},{\"_97\":2842,\"_41\":302},{\"_97\":2841,\"_41\":275},{\"_97\":2840,\"_41\":316},{\"_97\":2839,\"_41\":309},{\"_97\":2838,\"_41\":283},{\"_97\":2837,\"_41\":1323},{\"_97\":2836,\"_41\":341},{\"_97\":2835,\"_41\":283},{\"_97\":2834,\"_41\":302},{\"_97\":2833,\"_41\":294},{\"_97\":2832,\"_41\":290},{\"_97\":2831,\"_41\":283},{\"_97\":2830,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539],[\"D\",1780272000000],{\"_163\":1171,\"_36\":1462},[2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877],{\"_97\":2899,\"_41\":354},{\"_97\":2898,\"_41\":548},{\"_97\":2897,\"_41\":309},{\"_97\":2896,\"_41\":327},{\"_97\":2895,\"_41\":316},{\"_97\":2894,\"_41\":331},{\"_97\":2893,\"_41\":327},{\"_97\":2892,\"_41\":302},{\"_97\":2891,\"_41\":320},{\"_97\":2890,\"_41\":302},{\"_97\":2889,\"_41\":275},{\"_97\":2888,\"_41\":316},{\"_97\":2887,\"_41\":309},{\"_97\":2886,\"_41\":283},{\"_97\":2885,\"_41\":1323},{\"_97\":2884,\"_41\":341},{\"_97\":2883,\"_41\":283},{\"_97\":2882,\"_41\":302},{\"_97\":2881,\"_41\":294},{\"_97\":2880,\"_41\":290},{\"_97\":2879,\"_41\":283},{\"_97\":2878,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627],[\"D\",1751328000000],{\"_163\":1045,\"_36\":1614},[2904,2905],{\"_97\":2907,\"_41\":331},{\"_97\":2906,\"_41\":302},{\"_276\":303,\"_21\":304},{\"_276\":332,\"_21\":333},[1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647],[\"D\",1793491200000],{\"_163\":413,\"_36\":1633},[],[1699,1700,1701,1702,1703,1704,1705,1706],[\"D\",1751328000000],{\"_163\":1698,\"_36\":878},[2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936],{\"_97\":2957,\"_41\":354},{\"_97\":2956,\"_41\":548},{\"_97\":2955,\"_41\":309},{\"_97\":2954,\"_41\":327},{\"_97\":2953,\"_41\":316},{\"_97\":2952,\"_41\":331},{\"_97\":2951,\"_41\":327},{\"_97\":2950,\"_41\":302},{\"_97\":2949,\"_41\":320},{\"_97\":2948,\"_41\":302},{\"_97\":2947,\"_41\":275},{\"_97\":2946,\"_41\":309},{\"_97\":2945,\"_41\":283},{\"_97\":2944,\"_41\":397},{\"_97\":2943,\"_41\":1323},{\"_97\":2942,\"_41\":341},{\"_97\":2941,\"_41\":283},{\"_97\":2940,\"_41\":302},{\"_97\":2939,\"_41\":294},{\"_97\":2938,\"_41\":290},{\"_97\":2937,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":398,\"_21\":399},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770],[\"D\",1782864000000],{\"_163\":1110,\"_36\":1756},[2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983],{\"_97\":3005,\"_41\":354},{\"_97\":3004,\"_41\":548},{\"_97\":3003,\"_41\":309},{\"_97\":3002,\"_41\":327},{\"_97\":3001,\"_41\":316},{\"_97\":3000,\"_41\":331},{\"_97\":2999,\"_41\":327},{\"_97\":2998,\"_41\":302},{\"_97\":2997,\"_41\":320},{\"_97\":2996,\"_41\":1394},{\"_97\":2995,\"_41\":302},{\"_97\":2994,\"_41\":275},{\"_97\":2993,\"_41\":316},{\"_97\":2992,\"_41\":309},{\"_97\":2991,\"_41\":283},{\"_97\":2990,\"_41\":1323},{\"_97\":2989,\"_41\":341},{\"_97\":2988,\"_41\":302},{\"_97\":2987,\"_41\":294},{\"_97\":2986,\"_41\":290},{\"_97\":2985,\"_41\":283},{\"_97\":2984,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":1395,\"_21\":1396},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[1779,1780,1781,1782,1783,1784,1785,1786],[\"D\",1751328000000],{\"_163\":1777,\"_36\":1778},[],[1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808],[\"D\",1751328000000],{\"_163\":235,\"_36\":878},[],[1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864],[\"D\",1767225600000],{\"_163\":1194,\"_36\":1850},[3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035],{\"_97\":3053,\"_41\":548},{\"_97\":3052,\"_41\":309},{\"_97\":3051,\"_41\":298},{\"_97\":3050,\"_41\":331},{\"_97\":3049,\"_41\":327},{\"_97\":3048,\"_41\":302},{\"_97\":3047,\"_41\":320},{\"_97\":3046,\"_41\":302},{\"_97\":3045,\"_41\":275},{\"_97\":3044,\"_41\":309},{\"_97\":3043,\"_41\":397},{\"_97\":3042,\"_41\":341},{\"_97\":3041,\"_41\":283},{\"_97\":3040,\"_41\":302},{\"_97\":3039,\"_41\":294},{\"_97\":3038,\"_41\":290},{\"_97\":3037,\"_41\":283},{\"_97\":3036,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":398,\"_21\":399},{\"_276\":310,\"_21\":311},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},[1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975],[\"D\",1793491200000],{\"_163\":835,\"_36\":-5},[3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071],{\"_97\":3085,\"_41\":354},{\"_97\":3084,\"_41\":309},{\"_97\":3083,\"_41\":327},{\"_97\":3082,\"_41\":316},{\"_97\":3081,\"_41\":327},{\"_97\":3080,\"_41\":302},{\"_97\":3079,\"_41\":302},{\"_97\":3078,\"_41\":275},{\"_97\":3077,\"_41\":1323},{\"_97\":3076,\"_41\":283},{\"_97\":3075,\"_41\":294},{\"_97\":3074,\"_41\":290},{\"_97\":3073,\"_41\":283},{\"_97\":3072,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":335,\"_21\":336},{\"_276\":1324,\"_21\":1325},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},[2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022],[\"D\",1772323200000],{\"_163\":1188,\"_36\":1111},[3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102],{\"_97\":3115,\"_41\":354},{\"_97\":3114,\"_41\":309},{\"_97\":3113,\"_41\":327},{\"_97\":3112,\"_41\":316},{\"_97\":3111,\"_41\":327},{\"_97\":3110,\"_41\":302},{\"_97\":3109,\"_41\":302},{\"_97\":3108,\"_41\":298},{\"_97\":3107,\"_41\":1323},{\"_97\":3106,\"_41\":294},{\"_97\":3105,\"_41\":290},{\"_97\":3104,\"_41\":283},{\"_97\":3103,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":1324,\"_21\":1325},{\"_276\":313,\"_21\":314},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},[2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041],[\"D\",1777593600000],{\"_163\":210,\"_36\":2028},[],[2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059],[\"D\",1790812800000],{\"_163\":210,\"_36\":472},[],[2111,2112,2113,2114,2115,2116,2117],[\"D\",1767225600000],{\"_163\":210,\"_36\":-5},[3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149],{\"_97\":3171,\"_41\":354},{\"_97\":3170,\"_41\":548},{\"_97\":3169,\"_41\":309},{\"_97\":3168,\"_41\":327},{\"_97\":3167,\"_41\":316},{\"_97\":3166,\"_41\":331},{\"_97\":3165,\"_41\":327},{\"_97\":3164,\"_41\":302},{\"_97\":3163,\"_41\":320},{\"_97\":3162,\"_41\":302},{\"_97\":3161,\"_41\":275},{\"_97\":3160,\"_41\":316},{\"_97\":3159,\"_41\":309},{\"_97\":3158,\"_41\":283},{\"_97\":3157,\"_41\":1323},{\"_97\":3156,\"_41\":341},{\"_97\":3155,\"_41\":283},{\"_97\":3154,\"_41\":302},{\"_97\":3153,\"_41\":294},{\"_97\":3152,\"_41\":290},{\"_97\":3151,\"_41\":283},{\"_97\":3150,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":335,\"_21\":336},{\"_276\":342,\"_21\":343},{\"_276\":1324,\"_21\":1325},{\"_276\":284,\"_21\":285},{\"_276\":310,\"_21\":311},{\"_276\":317,\"_21\":318},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":321,\"_21\":322},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173],[\"D\",1788220800000],{\"_163\":1171,\"_36\":2159},[3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193],{\"_97\":3211,\"_41\":354},{\"_97\":3210,\"_41\":548},{\"_97\":3209,\"_41\":309},{\"_97\":3208,\"_41\":298},{\"_97\":3207,\"_41\":327},{\"_97\":3206,\"_41\":316},{\"_97\":3205,\"_41\":331},{\"_97\":3204,\"_41\":327},{\"_97\":3203,\"_41\":302},{\"_97\":3202,\"_41\":302},{\"_97\":3201,\"_41\":275},{\"_97\":3200,\"_41\":298},{\"_97\":3199,\"_41\":309},{\"_97\":3198,\"_41\":302},{\"_97\":3197,\"_41\":294},{\"_97\":3196,\"_41\":290},{\"_97\":3195,\"_41\":283},{\"_97\":3194,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":303,\"_21\":304},{\"_276\":310,\"_21\":311},{\"_276\":313,\"_21\":314},{\"_276\":277,\"_21\":278},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":332,\"_21\":333},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":348,\"_21\":349},{\"_276\":351,\"_21\":352},{\"_276\":563,\"_21\":564},{\"_276\":355,\"_21\":355},[2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220],[\"D\",1790812800000],{\"_163\":493,\"_36\":2205},[3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228],{\"_97\":3241,\"_41\":354},{\"_97\":3240,\"_41\":309},{\"_97\":3239,\"_41\":327},{\"_97\":3238,\"_41\":316},{\"_97\":3237,\"_41\":327},{\"_97\":3236,\"_41\":302},{\"_97\":3235,\"_41\":302},{\"_97\":3234,\"_41\":298},{\"_97\":3233,\"_41\":1323},{\"_97\":3232,\"_41\":294},{\"_97\":3231,\"_41\":290},{\"_97\":3230,\"_41\":283},{\"_97\":3229,\"_41\":275},{\"_276\":280,\"_21\":281},{\"_276\":287,\"_21\":288},{\"_276\":291,\"_21\":292},{\"_276\":295,\"_21\":296},{\"_276\":1324,\"_21\":1325},{\"_276\":313,\"_21\":314},{\"_276\":306,\"_21\":307},{\"_276\":324,\"_21\":325},{\"_276\":328,\"_21\":329},{\"_276\":338,\"_21\":339},{\"_276\":345,\"_21\":346},{\"_276\":351,\"_21\":352},{\"_276\":355,\"_21\":355},\"custom\",[],\"system\",{\"_3246\":3247,\"_3248\":3249,\"_3250\":3251,\"_3252\":3253,\"_3254\":3255,\"_3256\":3257},\"pets\",{\"_3258\":25},\"budgetRange\",{\"_3258\":25},\"parkingType\",{\"_3258\":60},\"parkingCount\",{\"_3258\":60},\"apartmentTypes\",{\"_3258\":60},\"moveInTimeline\",{\"_3258\":60},\"isEnabled\",\"/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocam2.jpg\",\"/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/ultymocamoverall.jpg\",\"/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/gym-d.jpg\",\"/storage/v1/object/public/halfred/buildings/c46d9a2d-8f66-45d9-a2cd-c9cb3b440b39/exterieurgym.jpg\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Beautiful New Contemporary Apartments – PURE Project in the Plateau!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover a modern and upscale living experience in one of the most desirable areas of the Plateau! ✨ Located only \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"8 minutes from Ottawa\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", the \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"PURE Project\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" offers an all-inclusive urban lifestyle in a vibrant and modern community.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Exceptional location:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏫 Close to daycares and a high school\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 Several parks and green spaces within walking distance\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🛍️ Near shops, restaurants, and all essential services\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚌 Quick access to public transportation and major roadways\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏢 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"PURE complex features:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ High-quality modern apartments\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Shared rooftop terrace\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Gym and coworking space\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Large underground garage\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Secure entrances\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Elevator access to all floors\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Everything is included:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Internet \u0026 cable\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Electricity, heating, and air conditioning\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ 5 appliances included: refrigerator, stove, dishwasher, washer, and dryer\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Parking options:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Indoor parking available ($)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Electric vehicle charging stations available ($)\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love PURE:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"A modern project designed to offer comfort, tranquility, and quality living in one of Gatineau’s best neighborhoods.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚫 No pets allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚭 Non-smoking complex\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📑 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📆 Minimum 12-month lease\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" for more information or to schedule your visit!\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Magnifiques appartements neufs et contemporains – Projet PURE au Plateau!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez une expérience de vie moderne et haut de gamme au cœur du secteur le plus recherché du Plateau! ✨ Situé à seulement \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"8 minutes d’Ottawa\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", le projet \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"PURE\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" vous offre un mode de vie urbain, pratique et tout inclus dans une communauté dynamique et moderne.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Emplacement exceptionnel :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏫 À proximité de garderies et d’une école secondaire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 Plusieurs parcs et espaces verts accessibles à pied\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🛍️ Près de tous les commerces, restaurants et services essentiels\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚌 Accès rapide au transport en commun et aux grands axes routiers\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏢 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Les avantages du complexe PURE :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Appartements modernes de qualité supérieure\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Terrasse commune\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Gym et espace de coworking\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Grand garage souterrain\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Entrées sécurisées\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Ascenseur pour un accès facile à tous les étages\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Tout est inclus :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Internet \u0026 câble\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Électricité, chauffage et climatisation\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ 5 électroménagers inclus : réfrigérateur, cuisinière, lave-vaisselle, laveuse et sécheuse\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Options de stationnement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Stationnement intérieur disponible ($)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✔️ Bornes électriques disponibles ($)\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez adorer PURE :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Un projet moderne pensé pour offrir confort, tranquillité et qualité de vie dans l’un des meilleurs secteurs de Gatineau.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚫 Animaux non acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚭 Complexe non-fumeur\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📑 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📆 Bail minimum de 12 mois\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour plus d’informations ou pour planifier votre visite!\\\"}]}]}\",{\"_26\":27,\"_28\":3569,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":3570,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"listings\",[],\"listingsByView\",{\"_3564\":3267,\"_3565\":3566,\"_3567\":3568},\"explodeProjects\",\"initialFilters\",{\"_163\":3395,\"_3396\":3397,\"_3398\":3399,\"_127\":3400,\"_195\":3401,\"_3402\":60,\"_160\":3403,\"_158\":3404,\"_3405\":25,\"_3406\":60,\"_3407\":3408,\"_3409\":3410},\"defaultView\",\"count\",\"filters\",{},\"configs\",{\"_3282\":3283,\"_3284\":3285,\"_3286\":3287,\"_3288\":3289,\"_3290\":3283,\"_3291\":3292,\"_3293\":3294},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[3376],\"analysisProductsPrice\",{\"_3376\":3377,\"_3378\":3379,\"_3380\":3381,\"_3382\":3383,\"_3384\":3385,\"_3386\":3387,\"_3388\":3389,\"_3390\":3389,\"_3391\":3392,\"_3393\":3387,\"_3394\":3385},\"notifications\",{\"_3353\":3354},\"form\",{\"_3346\":60,\"_3347\":25,\"_3348\":60,\"_3349\":60,\"_3350\":25,\"_3351\":25,\"_3352\":25},\"enabledSkus\",\"submissions\",{\"_3296\":3297,\"_3298\":3299,\"_3300\":3301,\"_3302\":3303,\"_30\":3304,\"_3305\":-5},\"agent\",{\"_3295\":25},\"hideAgentNewSubmissionBtn\",\"all\",[3332,3333,3334,3335,3336,3337,3338,3342,3343,3344,3345],\"steps\",[3332,3333,3334,3335,3336,3337,3338],\"badges\",[3322,3323,3324,3325,3326,3327],\"statuses\",[3316,3306,3308,3310,3312,3314,3317,3318,3319,3320,3321],{\"_3306\":3307,\"_3308\":3309,\"_3310\":3311,\"_3312\":3313,\"_3314\":3315},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_3328\":3306,\"_3330\":3307},{\"_3328\":3308,\"_3330\":3309},{\"_3328\":3310,\"_3330\":3311},{\"_3328\":3312,\"_3330\":3313},{\"_3328\":3314,\"_3330\":3315},{\"_3328\":3329,\"_3330\":3331},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_3328\":3316,\"_3330\":-5,\"_3339\":25},{\"_3328\":3306,\"_3330\":3307,\"_3339\":60,\"_3340\":25,\"_3341\":25},{\"_3328\":3308,\"_3330\":3309,\"_3339\":60,\"_3340\":25,\"_3341\":25},{\"_3328\":3310,\"_3330\":3311,\"_3339\":60,\"_3340\":25,\"_3341\":25},{\"_3328\":3312,\"_3330\":3313,\"_3339\":60,\"_3340\":25,\"_3341\":25},{\"_3328\":3314,\"_3330\":3315,\"_3339\":60,\"_3340\":25,\"_3341\":25},{\"_3328\":3317,\"_3330\":-5,\"_3339\":60},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_3328\":3318,\"_3330\":-5,\"_3339\":25},{\"_3328\":3319,\"_3330\":-5,\"_3339\":25},{\"_3328\":3320,\"_3330\":-5,\"_3339\":25},{\"_3328\":3321,\"_3330\":-5,\"_3339\":25},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_3293\":3355,\"_3356\":3357,\"_18\":3358,\"_3359\":3360},[3368,3369,3370,3371,3372,3373,3363,3364,3374,3375],\"manager\",[],[3362,3363,3364,3365,3366,3367],\"admin\",[3361],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"agent-submission-snoozed\",\"agent-submission-snoozed-reminder\",\"agent-submission-snoozed-expired\",\"application-deadline-reminder\",\"application-deadline-expired\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1299,\"qc_citizen_criminal_plumitif_municipal_check\",699,\"qc_citizen_rental_board_check\",799,\"on_citizen_rental_board_check\",999,\"ca_citizen_workplace_reference_verification\",1499,\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",\"qc_citizen_rental_board_extended_check\",[172,170],\"pricePerMonth\",[172,170],\"pricePerSqft\",[228,228],[228,3563],[3561,3562],\"hasFloor\",[228,173],[228,196],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484],\"availableNeighborhoods\",[3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427],{\"_3428\":3450,\"_3274\":172},{\"_3428\":570,\"_3274\":3449},{\"_3428\":3448,\"_3274\":173},{\"_3428\":3447,\"_3274\":173},{\"_3428\":3446,\"_3274\":196},{\"_3428\":103,\"_3274\":3445},{\"_3428\":3443,\"_3274\":3444},{\"_3428\":3442,\"_3274\":172},{\"_3428\":3441,\"_3274\":173},{\"_3428\":3440,\"_3274\":172},{\"_3428\":3438,\"_3274\":3439},{\"_3428\":3437,\"_3274\":172},{\"_3428\":3435,\"_3274\":3436},{\"_3428\":3434,\"_3274\":173},{\"_3428\":3433,\"_3274\":172},{\"_3428\":3431,\"_3274\":3432},{\"_3428\":3429,\"_3274\":3430},\"name\",\"Touraine\",7,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",8,\"Plateau \",\"Plateau\",30,\"plateau\",\"Old Gatineau\",\"Masson\",\"Hull\",21,37,\"East Templeton\",\"East Buckingham\",\"Buckingham\",20,\"angers\",{\"_46\":3559,\"_3428\":3560,\"_41\":298},{\"_46\":3557,\"_3428\":3558,\"_41\":397},{\"_46\":3555,\"_3428\":3556,\"_41\":302},{\"_46\":3553,\"_3428\":3554,\"_41\":327},{\"_46\":3551,\"_3428\":3552,\"_41\":302},{\"_46\":3549,\"_3428\":3550,\"_41\":275},{\"_46\":3547,\"_3428\":3548,\"_41\":283},{\"_46\":3545,\"_3428\":3546,\"_41\":341},{\"_46\":3543,\"_3428\":3544,\"_41\":283},{\"_46\":3541,\"_3428\":3542,\"_41\":290},{\"_46\":3539,\"_3428\":3540,\"_41\":294},{\"_46\":3537,\"_3428\":3538,\"_41\":309},{\"_46\":3535,\"_3428\":3536,\"_41\":316},{\"_46\":3533,\"_3428\":3534,\"_41\":275},{\"_46\":3531,\"_3428\":3532,\"_41\":354},{\"_46\":3529,\"_3428\":3530,\"_41\":548},{\"_46\":3527,\"_3428\":3528,\"_41\":327},{\"_46\":3525,\"_3428\":3526,\"_41\":316},{\"_46\":3523,\"_3428\":3524,\"_41\":331},{\"_46\":3521,\"_3428\":3522,\"_41\":320},{\"_46\":3519,\"_3428\":3520,\"_41\":309},{\"_46\":3517,\"_3428\":3518,\"_41\":302},{\"_46\":3515,\"_3428\":3516,\"_41\":298},{\"_46\":3513,\"_3428\":3514,\"_41\":327},{\"_46\":3511,\"_3428\":3512,\"_41\":283},{\"_46\":3509,\"_3428\":3510,\"_41\":1394},{\"_46\":3505,\"_3428\":3506,\"_41\":548},{\"_46\":3503,\"_3428\":3504,\"_41\":548},{\"_46\":3501,\"_3428\":3502,\"_41\":298},{\"_46\":3499,\"_3428\":3500,\"_41\":275},{\"_46\":3497,\"_3428\":3498,\"_41\":1323},{\"_46\":3493,\"_3428\":3494,\"_41\":3495},{\"_46\":3489,\"_3428\":3490,\"_41\":316},{\"_46\":3485,\"_3428\":3486,\"_41\":302},\"counter-type\",{\"_276\":3487,\"_21\":3488},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_276\":3491,\"_21\":3492},\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_276\":3496,\"_21\":3496},\"lucide:armchair\",\"Commodes\",\"disabled-access\",{\"_276\":1324,\"_21\":1325},\"gas-heating\",{\"_276\":459,\"_21\":460},\"underground-garage\",{\"_276\":313,\"_21\":314},\"small-dogs-allowed\",{\"_276\":549,\"_21\":550},\"large-dogs-allowed\",{\"_276\":3507,\"_21\":3508},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"washer-dryer-outlet\",{\"_276\":1395,\"_21\":1396},\"cable-internet\",{\"_276\":287,\"_21\":288},\"laundry-room\",{\"_276\":541,\"_21\":542},\"garage-parking\",{\"_276\":299,\"_21\":300},\"water-tank\",{\"_276\":303,\"_21\":304},\"microwave\",{\"_276\":310,\"_21\":311},\"blinds\",{\"_276\":321,\"_21\":322},\"water\",{\"_276\":332,\"_21\":333},\"building-terrace\",{\"_276\":338,\"_21\":339},\"dryer\",{\"_276\":345,\"_21\":346},\"cats-allowed\",{\"_276\":563,\"_21\":564},\"gym\",{\"_276\":355,\"_21\":355},\"electric-heating\",{\"_276\":280,\"_21\":281},\"balcony\",{\"_276\":317,\"_21\":318},\"oven\",{\"_276\":351,\"_21\":352},\"electricity\",{\"_276\":295,\"_21\":296},\"refrigerator\",{\"_276\":291,\"_21\":292},\"cable\",{\"_276\":335,\"_21\":336},\"stove\",{\"_276\":342,\"_21\":343},\"fiber-internet\",{\"_276\":284,\"_21\":285},\"central-air-conditioning\",{\"_276\":277,\"_21\":278},\"dishwasher\",{\"_276\":306,\"_21\":307},\"washer\",{\"_276\":328,\"_21\":329},\"elevator\",{\"_276\":324,\"_21\":325},\"locker-storage-space\",{\"_276\":398,\"_21\":399},\"parking\",{\"_276\":348,\"_21\":349},-1,6,2063,\"list\",\"map\",[],\"explode\",[],{\"_108\":109,\"_110\":111,\"_112\":113},{\"_58\":25,\"_59\":60,\"_61\":25},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_3328\":3597,\"_46\":47,\"_3598\":3599,\"_52\":53,\"_36\":37,\"_30\":31,\"_3600\":3601,\"_26\":27,\"_32\":33,\"_3284\":3602,\"_3603\":3604,\"_3605\":3606,\"_3607\":3608,\"_43\":44,\"_3609\":3610,\"_3611\":3612,\"_45\":-5,\"_3613\":-5,\"_3614\":-5,\"_3615\":-5,\"_50\":51,\"_48\":49,\"_34\":35,\"_3616\":-5,\"_3617\":-5,\"_3277\":3278,\"_3618\":3619,\"_3620\":3621,\"_3622\":3623,\"_41\":42,\"_3624\":3625,\"_38\":-7,\"_3626\":3627,\"_39\":3628,\"_3629\":3630,\"_3631\":-7,\"_3632\":3633,\"_28\":3634,\"_3282\":3635,\"_3636\":3637,\"_3638\":3639},\"toast\",\"user\",{\"_3583\":25,\"_3584\":-5,\"_3585\":-5,\"_3586\":-5,\"_3587\":-5,\"_3588\":-5,\"_3589\":-5,\"_3590\":-5,\"_3591\":-5,\"_3592\":-5,\"_69\":-5,\"_71\":-5,\"_3593\":-5,\"_125\":25,\"_3594\":25,\"_3595\":-5,\"_3596\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_41\":3727},\"social\",{\"_3724\":3725,\"_3726\":79},{\"_3376\":3377,\"_3378\":3379,\"_3380\":3381,\"_3382\":3383,\"_3384\":3385,\"_3386\":3387,\"_3388\":3389,\"_3390\":3389,\"_3391\":3392,\"_3393\":3387,\"_3394\":3385},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_3721\":-5,\"_3314\":60,\"_3722\":25,\"_3723\":3677},\"plan\",{\"_3428\":3701,\"_3702\":79,\"_3703\":3704,\"_3705\":3706,\"_3707\":3708,\"_3709\":3710,\"_3711\":228,\"_3712\":3713,\"_3714\":228,\"_3715\":3716,\"_3717\":3718,\"_3719\":3720},\"metadata\",{\"_28\":3634},\"consentConditionsText\",\"consentConditionsEn\",\"consentConditionsFr\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_3694\":3695,\"_3603\":3604,\"_3696\":3697,\"_43\":44,\"_3698\":3699,\"_74\":3700},\"bucket\",{\"_3691\":47,\"_3692\":3693},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_3576\":3688,\"_3689\":3690},\"tosHistory\",[3677],{\"_3648\":60,\"_3649\":-7,\"_59\":60,\"_3650\":25,\"_3651\":25,\"_3652\":60,\"_3653\":60,\"_3654\":25,\"_3655\":-7,\"_3656\":25,\"_3657\":-7,\"_3658\":25,\"_3659\":25,\"_3660\":25,\"_3661\":3662,\"_3663\":25,\"_3295\":25,\"_3664\":-7,\"_3665\":-7,\"_3666\":-7,\"_3667\":25,\"_58\":25,\"_3668\":25,\"_61\":25,\"_3669\":3670,\"_3671\":60,\"_3672\":25,\"_3673\":25,\"_3674\":25,\"_3675\":25,\"_3676\":25},\"disabledModules\",[],\"rolePermissions\",\"banner\",{\"_276\":3646,\"_21\":3647},{\"_110\":111,\"_3644\":3645,\"_108\":109,\"_112\":113},[3376],\"payments\",{\"_3640\":60,\"_3641\":60,\"_3642\":25,\"_3643\":25},\"version\",\"prod-20260917-9ad1803\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"hasAddressVariants\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"hopemIntegrationEnabled\",\"voltixIntegrationEnabled\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_3678\":3679,\"_3680\":3681,\"_3638\":3682,\"_3314\":60,\"_3312\":3683,\"_3684\":3685,\"_3686\":3687},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",39,\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_3728\":3729},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("P17:[{\"_3731\":172,\"_3732\":3562,\"_36\":3733,\"_3734\":3735,\"_3736\":3737,\"_3738\":3739,\"_3740\":3741,\"_3742\":3743,\"_3744\":3741,\"_3745\":3746,\"_3747\":3748,\"_3749\":3750,\"_3751\":3752},\"status\",\"walkscore\",\"Car-Dependent\",\"updated\",\"2026-08-27 11:04:44.755390\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/929Vanier-Road/lat=45.434211/lng=-75.817957/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.4335,\"snapped_lon\",-75.8175,\"transit\",{\"_36\":-5,\"_3756\":-5,\"_3754\":-5},\"bike\",{\"_36\":3753,\"_3754\":3755},\"Somewhat Bikeable\",\"score\",38,\"summary\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--><!--/$--><script id="_R_">requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Walk Score®<!-- --> <!-- -->6</a><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Bike Score®<!-- --> <!-- -->38</a></div></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
1047 +$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><div hidden id="S:1"><div class="flex min-w-[240px] flex-1 basis-[280px] flex-col gap-4 sm:gap-6" data-sentry-component="EditorialScores" data-sentry-source-file="location.tsx"><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Walk Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">6</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:6%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Car-Dependent</div></div><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Bike Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">38</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:38%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Somewhat Bikeable</div></div></div></div><script>$RC("B:1","S:1")</script></body></html>
\ No newline at end of file
added tests/fixtures/halfred/84b82e48b0842c9e046d.html +1047 −0
@@ -0,0 +1,1047 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png?width=1024&amp;height=1280&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/4448486b-cbbe-4381-9685-be561b1a50ae/1.jpg?width=232&amp;height=168&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 190 Rue Henri-Matisse, Gatineau</title><meta name="description" content="🔥 Magnifique appartement à louer – 190 rue Henri-Matisse | Secteur recherché! 🔥 Découvrez ce superbe logement situé dans un nouveau quartier paisible de..."/><meta property="og:title" content="Halfred | Apartment rentals | 190 Rue Henri-Matisse, Gatineau"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="🔥 Magnifique appartement à louer – 190 rue Henri-Matisse | Secteur recherché! 🔥 Découvrez ce superbe logement situé dans un nouveau quartier paisible de..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png"/><meta property="og:url" content="https://www.halfred.ca/fr/listings/190-rue-henri-matisse/details"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/190-rue-henri-matisse/details"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/190-rue-henri-matisse/details"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/190-rue-henri-matisse/details"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/190-rue-henri-matisse/details"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/listing-detail.page-Bodk8trl.js"/><link rel="modulepreload" href="/assets/detail-error-boundary-C3TWahqB.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="20a02a2f3a4b4863ce46d1a98b13eafe-1c678c4f2b7935c5-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=20a02a2f3a4b4863ce46d1a98b13eafe,sentry-org_id=476518,sentry-transaction=GET%20%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.18475561314196676,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="max-lg:hidden order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex"><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Retour à la liste</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="px-3.5" data-sentry-component="EditorialDetailsPage" data-sentry-source-file="details.tsx"><main class="mx-auto max-w-[1320px] px-1 pb-10 pt-3 sm:px-[clamp(20px,4.5vw,64px)] sm:pb-[clamp(48px,5.5vw,84px)] sm:pt-[clamp(24px,3.2vw,44px)]"><div class="flex flex-wrap items-start gap-x-[clamp(40px,5vw,72px)] gap-y-7 sm:gap-y-14 lg:flex-nowrap"><div class="order-2 min-w-0 max-w-[660px] flex-[1_1_440px] lg:order-1"><div data-ed-rise="true" class="ed-kicker mb-2 sm:mb-3">Templeton · Gatineau</div><h1 class="ed-serif m-0 mb-5 overflow-hidden pb-[0.05em] text-[length:var(--ed-text-h1)] font-medium leading-[1.12] tracking-[-0.012em] text-[var(--ed-ink)] sm:mb-6"><span data-ed-mask="true" class="block">190 Rue Henri-Matisse</span></h1><div data-ed-rise="4" class="mb-8 sm:mb-10" id="details-cta"><div data-sentry-component="ConversionRail" data-sentry-source-file="conversion-rail.tsx"><div class="flex flex-col items-stretch gap-2.5 sm:flex-row sm:flex-wrap sm:items-center sm:gap-3"><a href="#units" class="inline-flex w-full min-h-12 items-center justify-center gap-2.5 rounded-full bg-[var(--ed-ink)] px-7 py-1 shadow-[0_8px_20px_rgba(26,26,23,0.16)] transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto"><span class="text-[14px] font-semibold leading-snug text-white"><span class="whitespace-nowrap">Postuler en ligne</span></span><span></span></a><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div></div></div><div data-ed-rise="5"><div data-sentry-component="HomeTypeRows" data-sentry-source-file="home-types.tsx"><div class="ed-kicker mb-2 text-[10.5px] tracking-[0.13em]">Logements disponibles</div><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">2 chambres</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">1 disponible</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,443<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a></div></div><div data-ed-rise="9" class="mt-8 sm:mt-10"><div class="text-[length:var(--ed-text-copy)] leading-[var(--ed-copy-leading)] text-[var(--ed-body)] [&amp;_p:empty]:hidden [&amp;_p:has(&gt;br:only-child)]:hidden line-clamp-4"><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Beautiful Apartment for Rent – 190 Henri-Matisse Street | Prime Location!</strong> 🔥</p><p>Discover this beautiful apartment located in a <strong>new and peaceful neighborhood in Gatineau</strong>, on <strong>Henri-Matisse Street</strong>, close to <strong>Lorrain Boulevard</strong> and only <strong>1 minute from Highway 50</strong>. Enjoy a convenient location near <strong>all essential services</strong> including grocery stores, banks, gas stations, Dollarama, as well as <strong>Raymond-Madore Park</strong> and <strong>Lac-Beauchamp Park</strong>.</p><p>🏡 <strong>A modern unit that stands out:</strong><br>• Spacious and functional living area<br>• 🛁 Separate bathtub and shower for added comfort<br>• 🪨 Elegant granite countertops<br>• ❄️ Air conditioning<br>• 🧺 Washer/dryer hookups<br>• 🌬️ Air exchanger<br>• 🚗 1 parking space included</p><p>📍 <strong>Why you’ll love it:</strong><br>The perfect balance of <strong>comfort, modern living, and convenience</strong> in a highly desirable area.</p><p>📌 <strong>Important details:</strong><br>• ⚡ Not heated / not electricity included<br>• ❌ No dogs allowed<br>• 📋 Credit check required<br>• 📆 Minimum 12-month lease</p><p>📞 <strong>Don’t miss out!</strong><br>Contact <strong>Halfred</strong> today at <strong>819-593-3304</strong> to schedule your visit.</p></div></div></div></div></div><!--$?--><template id="B:0"></template><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Washer/Dryer Outlet</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water Tank</span></div><!--/$--><div data-ed-rise="9" class="mt-6 sm:mt-8"><div data-sentry-component="ContactPanel" data-sentry-source-file="conversion-rail.tsx"><div class="rounded-[18px] border border-[var(--ed-hairline)] bg-[var(--ed-card-alt)] p-4 sm:p-5" data-sentry-component="ContactActions" data-sentry-source-file="conversion-rail.tsx"><div class="mb-4 flex items-center gap-3"><span class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-chip)] text-[13px] font-semibold tracking-[0.02em] text-[var(--ed-strong)]">H|</span><span class="min-w-0"><span class="block truncate text-[15px] font-semibold text-[var(--ed-ink)]">Halfred | Apartment rentals</span><span class="block text-[12.5px] text-[var(--ed-secondary)]">Gestionnaire immobilier</span></span></div><div class="flex flex-wrap gap-2"><a href="mailto:info@halfred.ca" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full bg-[var(--ed-ink)] px-4 text-[13.5px] font-medium text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto sm:flex-1"><span></span>Message</a><a href="tel:(819) 593-3304" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[13.5px] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)] sm:w-auto sm:flex-1"><span></span><span class="truncate">Appeler (819) 593-3304</span></a></div><form class="mt-2.5 flex items-center gap-2" data-sentry-component="QuickQuestion" data-sentry-source-file="conversion-rail.tsx"><input type="text" placeholder="Or ask a quick question…" class="h-10 min-w-0 flex-1 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[16px] text-[var(--ed-ink)] outline-none transition-colors placeholder:text-[var(--ed-tertiary)] focus:border-[var(--ed-ink)] sm:text-[13.5px]" value=""/><button type="submit" aria-label="Send your question" class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form></div><div class="mt-6 border-t border-[var(--ed-hairline)]" data-sentry-component="FeesDisclosure" data-sentry-source-file="conversion-rail.tsx"><button type="button" aria-expanded="false" class="flex w-full items-center justify-between gap-3 py-3.5 text-left"><span class="text-[15px] font-medium text-[var(--ed-ink)]">Frais et politiques</span><span></span></button></div></div></div><div data-ed-rise="10" id="amenities" class="mt-8 scroll-mt-[calc(var(--ed-header-h,0px)+16px)] sm:mt-10"><div class="ed-kicker mb-5">Commodités</div><div class="grid grid-cols-1 gap-x-8 gap-y-3 text-[15px] text-[var(--ed-strong)] sm:grid-cols-2 sm:gap-y-4 sm:text-[15.5px]"><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Parking</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Washer/Dryer Outlet</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Water Tank</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Central Air Conditioning</div><div class="flex items-center gap-3" data-sentry-component="AmenityLine" data-sentry-source-file="amenities.tsx"><span></span>Dishwasher</div></div></div></div><div class="order-1 min-w-0 flex-[1.15_1_480px] lg:sticky lg:top-[92px] lg:order-2 lg:self-start" data-sentry-component="GalleryCollage" data-sentry-source-file="gallery-collage.tsx"><div class="-mx-[1.125rem] flex snap-x snap-mandatory gap-3 overflow-x-auto px-[1.125rem] pb-1 sm:hidden"><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-full" href="/fr/listings/190-rue-henri-matisse/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png?width=800&amp;height=520&amp;quality=80" alt="190 Rue Henri-Matisse" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="hidden sm:block"><a data-ed-img="true" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[20px]" style="aspect-ratio:4/5" data-sentry-element="RemixLink" data-sentry-source-file="gallery-collage.tsx" href="/fr/listings/190-rue-henri-matisse/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png?width=1024&amp;height=1280&amp;quality=80" alt="190 Rue Henri-Matisse" data-ed-imgzoom="true" class="absolute inset-0 h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/><div class="absolute bottom-3.5 right-3.5 flex items-center gap-2 rounded-full bg-[rgba(26,26,23,0.78)] px-3.5 py-2"><span></span><span class="text-[13px] font-semibold text-white">1 photo</span></div></a></div></div></div><div id="units" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t pt-[var(--ed-section-pad)] border-[var(--ed-hairline)]"><div data-ed-reveal="true" class="flex flex-wrap items-baseline justify-between gap-x-4 gap-y-0.5 sm:flex-nowrap sm:items-end mb-2"><h2 tabindex="-1" class="ed-serif m-0 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] outline-none">Choisissez votre unité</h2><span class="whitespace-nowrap text-[14.5px] text-[var(--ed-secondary)]">1 sur 1 disponibles</span></div><div class="mb-5 text-[length:var(--ed-text-lede)] text-[var(--ed-secondary)] sm:mb-7">Sélectionnez le logement souhaité, puis cliquez sur Postuler sur sa ligne.</div><div class="mb-5 sm:mb-7"><div class="flex flex-col gap-2 sm:flex-row sm:flex-wrap sm:items-center" data-sentry-component="UnitsToolbar" data-sentry-source-file="units-toolbar.tsx"><label class="flex h-10 w-full items-center gap-2 rounded-full border border-[var(--ed-border)] bg-white pl-3.5 pr-3 transition-colors focus-within:border-[var(--ed-ink)] sm:h-9 sm:w-auto sm:min-w-[190px] sm:max-w-[260px] sm:flex-none"><span></span><input type="search" placeholder="Search homes" class="w-full min-w-0 bg-transparent text-[16px] text-[var(--ed-ink)] outline-none placeholder:text-[var(--ed-tertiary)] sm:text-[13.5px]" value=""/></label><div class="ed-scroll-rail -mx-[1.125rem] flex items-center gap-2 overflow-x-auto px-[1.125rem] sm:contents"><button type="button" data-type-chip="all" aria-pressed="true" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-transparent bg-[var(--ed-ink)] font-medium text-white">Tous les types</button><button type="button" data-type-chip="bed-2" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">2 chambres<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">1</span></button><button type="button" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Disponible maintenant</button><span class="inline-flex shrink-0 items-center gap-1.5" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Dates d&#x27;emménagement</button></span></div></div></div><div class="flex flex-col gap-6 sm:gap-8" data-sentry-component="UnitGroupsSection" data-sentry-source-file="unit-groups.tsx"><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2 sm:mb-3"><span class="ed-serif text-[var(--ed-ink)] text-[length:var(--ed-text-h3)]">2 chambres</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-thumb-w:68px] hover:bg-[var(--ed-hover-fill)] sm:px-4 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[58px] rounded-[12px] sm:h-[62px] block" href="/fr/listings/190-rue-henri-matisse/details/gallery?unit=4448486b-cbbe-4381-9685-be561b1a50ae" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/4448486b-cbbe-4381-9685-be561b1a50ae/1.jpg?width=232&amp;height=168&amp;quality=80" alt="3" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">6 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">3</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>1,260 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 6 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->3</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,575</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,443</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div><a class="ed-unit-chev inline-flex h-10 items-center gap-1.5 whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-4 text-[13.5px] font-semibold text-[var(--ed-ink)] transition-colors hover:bg-[var(--ed-ink)] hover:text-white sm:h-9" href="/fr/listings/4448486b-cbbe-4381-9685-be561b1a50ae/apply/personal" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div id="location" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,0px)+16px)] border-t border-[var(--ed-hairline)] pt-[var(--ed-section-pad)]"><h2 data-ed-reveal="true" class="ed-serif m-0 mb-6 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] sm:mb-8">Emplacement</h2><div class="flex flex-wrap items-stretch gap-6 sm:gap-9"><!--$?--><template id="B:1"></template><!--/$--><div data-ed-reveal="true" class="relative min-h-[260px] flex-1 basis-[420px] overflow-hidden rounded-[18px] border border-[var(--ed-hairline)] bg-[#efede6] sm:min-h-[320px]" data-sentry-component="EditorialMap" data-sentry-source-file="location.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div aria-hidden="true" class="absolute left-1/2 top-[48%] -translate-x-1/2 -translate-y-full"><svg width="40" height="40" viewBox="0 0 24 24" fill="#1A1A17" stroke="#fff" stroke-width="1.4" role="presentation" data-sentry-element="svg" data-sentry-component="InkPin" data-sentry-source-file="location.tsx"><path d="M12 22s-7-7.2-7-12a7 7 0 1 1 14 0c0 4.8-7 12-7 12z" data-sentry-element="path" data-sentry-source-file="location.tsx"></path><circle cx="12" cy="10" r="2.4" fill="#fff" stroke="none" data-sentry-element="circle" data-sentry-source-file="location.tsx"></circle></svg></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div class="ed-caption ed-caption-on-map pointer-events-none absolute bottom-3.5 left-4 rounded-full bg-white/85 px-3 py-1.5 backdrop-blur-[2px]">TEMPLETON, GATINEAU</div></div></div><a href="https://www.google.com/maps/dir/?api=1&amp;destination=45.503035,-75.61233" target="_blank" rel="noopener noreferrer" class="mt-2.5 inline-block py-2.5 text-[14.5px] text-[var(--ed-secondary)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink)] sm:mt-5 sm:py-0" data-sentry-component="EditorialDirectionsLink" data-sentry-source-file="location.tsx">Obtenir l&#x27;itinéraire<!-- --> ↗</a></div></main><div aria-hidden="true" class="sticky bottom-[calc(var(--footer-height)+env(safe-area-inset-bottom))] z-40 -mx-3.5 border-t border-[var(--ed-band-line)] bg-white px-3.5 transition-[transform,visibility] duration-300 lg:bottom-0 pointer-events-none invisible translate-y-[110%]" data-sentry-component="DetailsActionBar" data-sentry-source-file="action-bar.tsx"><div class="mx-auto flex h-[var(--ed-action-bar-height)] max-w-[1320px] items-center justify-between gap-3 px-1 sm:gap-4 sm:px-[clamp(20px,4.5vw,64px)]"><div class="min-w-0 overflow-hidden"><div class="truncate"><span class="text-[16px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[18px] lg:text-[19px]">À partir de $1,443</span><span class="hidden text-[13px] text-[var(--ed-secondary)] sm:inline"> <!-- -->/ mois</span></div></div><div class="flex shrink-0 items-center gap-5"><div class="hidden lg:block"><span class="flex w-full items-center gap-1.5 sm:inline-flex sm:w-auto" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased inline-flex min-h-12 flex-1 items-center justify-center gap-2 rounded-full border px-5 text-[14px] font-medium transition-colors sm:flex-initial border-[var(--ed-border)] bg-white text-[var(--ed-ink)] hover:border-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Vérifier les dates d&#x27;emménagement</button></span></div><a href="#units" class="inline-flex h-11 shrink-0 items-center gap-2 whitespace-nowrap rounded-full bg-[var(--ed-ink)] px-4 text-[14px] font-semibold text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:gap-2.5 sm:px-6 sm:text-[14.5px]"><span class="sm:hidden">Postuler</span><span class="hidden sm:inline">Postulez et réservez votre logement en ligne</span><span></span></a></div></div></div><div aria-hidden="true" data-testid="units-spotlight-scrim" class="fixed inset-0 z-[45] bg-[rgba(26,26,23,0.35)] transition-opacity duration-300 motion-reduce:transition-none pointer-events-none opacity-0" data-sentry-component="UnitsSpotlightScrim" data-sentry-source-file="units-spotlight.tsx"></div></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/listing-detail.page-Bodk8trl.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",
323 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
324 + "/assets/index-DGzYOEP8.js",
325 + "/assets/Item-DuavYi1u.js",
326 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
327 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
328 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
329 + "/assets/useControlledState-C6ovzWeF.js",
330 + "/assets/useField-CBKMx-DQ.js",
331 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
332 + "/assets/chunk-M3MASYO7-COH9P04M.js",
333 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
334 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
335 + "/assets/useToggleState-DY8z2i0t.js",
336 + "/assets/index-BzZ-MzUq.js",
337 + "/assets/useToggle-QKKEqo_x.js",
338 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
339 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
340 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
341 + "/assets/use-tenant-wE0zDJ1a.js",
342 + "/assets/use-debounce-D23YJQRM.js",
343 + "/assets/use-debounced-callback-Do1iUmMt.js",
344 + "/assets/locale-switcher-kD-MOI9x.js",
345 + "/assets/use-show-profile-modal-Cgfts1ut.js",
346 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
347 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
348 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
349 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
350 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
351 + "/assets/getItemCount-BQolBIkZ.js",
352 + "/assets/useSelectableItem-Ds0Ihirs.js",
353 + "/assets/useDescription-DF6TDnVi.js",
354 + "/assets/index-D8QbWu84.js",
355 + "/assets/useMenuTriggerState-CHKcWOlC.js",
356 + "/assets/useMenuTrigger-DKFjnCNZ.js",
357 + "/assets/show-BOEsnqQk.js",
358 + "/assets/index-BxwHZyk5.js",
359 + "/assets/use-screenshot-mode-RoZeXH-d.js",
360 + "/assets/storage-image-BRiFwsnF.js",
361 + "/assets/debug-build-VZlf1Aof.js",
362 + "/assets/empty-image-DeSmMdF3.js",
363 + "/assets/storage-JzkTKPy4.js",
364 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
365 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
366 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
367 + "/assets/use-auth-D_t8q_v4.js",
368 + "/assets/OtpInput-CJhAm1Gc.js",
369 + "/assets/roles-Cde3N6LE.js",
370 + "/assets/chunk-T45N425O-CCF24x8B.js",
371 + "/assets/index-CwlnhZHs.js",
372 + "/assets/tooltip-_QqyKTfK.js",
373 + "/assets/eversa-logo-DmkjJgjq.js",
374 + "/assets/exports-mapbox-Dy-MMXYe.js",
375 + "/assets/client-CpT78rmL.js",
376 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
377 + "/assets/useProgressBar-DhWwJb16.js",
378 + "/assets/index-Cy2bmlj7.js",
379 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
380 + "/assets/std-cron-C0Hf3jWh.js",
381 + "/assets/legacy-date-D-X4tG6T.js",
382 + "/assets/use-is-iframe-DIKEri2l.js",
383 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
384 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
385 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
386 + "/assets/link-CrZmIZC6.js",
387 + "/assets/rich-text-display--Qas76Hg.js",
388 + "/assets/utils-D0p-v41w.js",
389 + "/assets/signature-block-8SMePIUg.js",
390 + "/assets/index-DqzG1Q9x.js",
391 + "/assets/client-only-BGvaz0Jn.js",
392 + "/assets/use-hydrated-nn_6IPIK.js",
393 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
394 + "/assets/settings.types-CTRD0B_j.js",
395 + "/assets/input-CkQmsiJb.js",
396 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
397 + "/assets/extends-BSSSaanF.js",
398 + "/assets/user-menu-BuoWMPG0.js",
399 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
400 + "/assets/index-CRabYQb-.js",
401 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
402 + "/assets/Section-CaP3oBph.js",
403 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
404 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
405 + "/assets/LiveAnnouncer-CnNJa9NI.js",
406 + "/assets/useUpdateEffect-DsCDOPa2.js",
407 + "/assets/index-BT5H2sjL.js",
408 + "/assets/features-animation-BCPmlPPs.js",
409 + "/assets/index-8boKsGvQ.js",
410 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
411 + "/assets/use-server-command-DJ0CxbuT.js",
412 + "/assets/create-rpc-stub-SmqOCk37.js",
413 + "/assets/index-BoeY4VQ9.js",
414 + "/assets/app-form-CRPZmLNY.js",
415 + "/assets/button-KaTnxiWj.js",
416 + "/assets/spinner-DDyy7LQF.js",
417 + "/assets/zod-CmeTJI5u.js",
418 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
419 + "/assets/form-hidden-input-DI5aJPYE.js",
420 + "/assets/form-input-C6s4itpV.js",
421 + "/assets/system-preferences-DL4TO29S.js",
422 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
423 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
424 + "/assets/use-in-view-BNnh4L6M.js",
425 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js",
426 + "/assets/should-revalidate-for-modal-BjoLrI2F.js"
427 + ],
428 + "css": [
429 + "/assets/rich-text-editor-D9Rskyfk.css#",
430 + "/assets/listing-card-CI-uxcFh.css"
431 + ]
432 + },
433 + "PublicListingDetailPage": {
434 + "id": "PublicListingDetailPage",
435 + "parentId": "PublicListingsLayoutPage",
436 + "path": ":slug/details",
437 + "hasAction": false,
438 + "hasLoader": true,
439 + "hasClientAction": false,
440 + "hasClientLoader": false,
441 + "hasClientMiddleware": false,
442 + "hasDefaultExport": true,
443 + "hasErrorBoundary": true,
444 + "module": "/assets/listing-detail.page-Bodk8trl.js",
445 + "imports": [
446 + "/assets/chunk-QUQL4437-m7Whu12z.js",
447 + "/assets/jsx-runtime-umhk6iWe.js",
448 + "/assets/runtime-MtUT-9pW.js",
449 + "/assets/instance-Dwq5XJYG.js",
450 + "/assets/locale-rlhQ6FjN.js",
451 + "/assets/i18n-CTdcZBaW.js",
452 + "/assets/use-localized-path-BMxKZwMg.js",
453 + "/assets/detail-error-boundary-C3TWahqB.js",
454 + "/assets/seo.helpers-rKbdQkhM.js",
455 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
456 + "/assets/listing-card-Cg3TPyWe.js",
457 + "/assets/types-BKXG3Vd5.js",
458 + "/assets/date-C7fQmg2U.js",
459 + "/assets/format-BKStloXP.js",
460 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
461 + "/assets/formatDistanceToNow-BvwR-I5H.js",
462 + "/assets/paths-CiQnXl4X.js",
463 + "/assets/use-tenant-wE0zDJ1a.js",
464 + "/assets/icon-D77RBjQx.js",
465 + "/assets/index-blsAimsU.js",
466 + "/assets/chunk-T45N425O-CCF24x8B.js",
467 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
468 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
469 + "/assets/preload-helper-Cer9inx8.js",
470 + "/assets/index-DmhvH8SD.js",
471 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
472 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
473 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
474 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
475 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
476 + "/assets/runtime-TD3m583z.js",
477 + "/assets/exports-mapbox-Dy-MMXYe.js",
478 + "/assets/index-DJnVLKJF.js",
479 + "/assets/use-locale-BnwvbFV-.js",
480 + "/assets/show-BOEsnqQk.js",
481 + "/assets/client-CpT78rmL.js",
482 + "/assets/index-CXP4lC37.js",
483 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
484 + "/assets/useProgressBar-DhWwJb16.js",
485 + "/assets/number-lhSI2oqU.js",
486 + "/assets/useLabel-FzyH2LZi.js",
487 + "/assets/useLabels-BL4rQGMb.js",
488 + "/assets/useNumberFormatter-DG2VO0C1.js",
489 + "/assets/context-C7uvIu_A.js",
490 + "/assets/NumberFormatter-BWU_gJyt.js",
491 + "/assets/index-Cy2bmlj7.js",
492 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
493 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
494 + "/assets/mergeRefs-C8xtGVp3.js",
495 + "/assets/useControlledState-Dl_rDvO0.js",
496 + "/assets/FocusScope-CWuTxhav.js",
497 + "/assets/useField-CBKMx-DQ.js",
498 + "/assets/useFormValidation-BlL8vXtt.js",
499 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
500 + "/assets/std-cron-C0Hf3jWh.js",
501 + "/assets/legacy-date-D-X4tG6T.js",
502 + "/assets/listingTypes-CkyCgPCr.js",
503 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
504 + "/assets/useButton-DZK-beuH.js",
505 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
506 + "/assets/useOverlayTriggerState-woQJgDxB.js",
507 + "/assets/index-B915wqUE.js",
508 + "/assets/accelerated-values-ClBEnI7v.js",
509 + "/assets/useTreeState-Dx1W0YuM.js",
510 + "/assets/SelectionManager-BmJrKgY4.js",
511 + "/assets/scrollIntoView-BWAA50rI.js",
512 + "/assets/isScrollable-Dnxj3NSq.js",
513 + "/assets/useSelectableList-BOP0KhmN.js",
514 + "/assets/DOMLayoutDelegate-Brany3qe.js",
515 + "/assets/useCollator-CbJkpXG2.js",
516 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
517 + "/assets/index-DGzYOEP8.js",
518 + "/assets/Item-DuavYi1u.js",
519 + "/assets/use-is-iframe-DIKEri2l.js",
520 + "/assets/floor-label-CGeBlKR2.js",
521 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
522 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
523 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
524 + "/assets/storage-image-BRiFwsnF.js",
525 + "/assets/debug-build-VZlf1Aof.js",
526 + "/assets/empty-image-DeSmMdF3.js",
527 + "/assets/storage-JzkTKPy4.js",
528 + "/assets/link-CrZmIZC6.js",
529 + "/assets/modal-BG3X61k6.js",
530 + "/assets/modal-root-haL454LR.js",
531 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
532 + "/assets/useDialog-Bh9KG6MB.js",
533 + "/assets/VisuallyHidden-D-Q2SU4O.js",
534 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
535 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
536 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
537 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
538 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
539 + "/assets/proxy-BlmPTkqy.js",
540 + "/assets/create-visual-element-Cc1-iv7S.js",
541 + "/assets/layout-CqatgvGE.js",
542 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
543 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
544 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
545 + "/assets/index-DuhTrrt1.js",
546 + "/assets/useModal-C3khzgYn.js",
547 + "/assets/index-BxwHZyk5.js",
548 + "/assets/rich-text-display--Qas76Hg.js",
549 + "/assets/utils-D0p-v41w.js",
550 + "/assets/signature-block-8SMePIUg.js",
551 + "/assets/index-DqzG1Q9x.js",
552 + "/assets/client-only-BGvaz0Jn.js",
553 + "/assets/use-hydrated-nn_6IPIK.js",
554 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
555 + "/assets/chunk-M3MASYO7-COH9P04M.js",
556 + "/assets/settings.types-CTRD0B_j.js",
557 + "/assets/use-show-profile-modal-Cgfts1ut.js",
558 + "/assets/input-CkQmsiJb.js",
559 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
560 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
561 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
562 + "/assets/useControlledState-C6ovzWeF.js",
563 + "/assets/extends-BSSSaanF.js",
564 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
565 + "/assets/use-debounce-D23YJQRM.js",
566 + "/assets/use-debounced-callback-Do1iUmMt.js",
567 + "/assets/use-auth-D_t8q_v4.js",
568 + "/assets/OtpInput-CJhAm1Gc.js",
569 + "/assets/roles-Cde3N6LE.js",
570 + "/assets/index-CwlnhZHs.js",
571 + "/assets/index-BzZ-MzUq.js",
572 + "/assets/powered-by-eversa-BF980dJS.js",
573 + "/assets/tooltip-_QqyKTfK.js",
574 + "/assets/eversa-logo-DmkjJgjq.js",
575 + "/assets/use-screenshot-mode-RoZeXH-d.js",
576 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
577 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
578 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
579 + "/assets/getItemCount-BQolBIkZ.js",
580 + "/assets/useSelectableItem-Ds0Ihirs.js",
581 + "/assets/useDescription-DF6TDnVi.js",
582 + "/assets/index-D8QbWu84.js",
583 + "/assets/useMenuTriggerState-CHKcWOlC.js",
584 + "/assets/useMenuTrigger-DKFjnCNZ.js",
585 + "/assets/user-menu-BuoWMPG0.js",
586 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
587 + "/assets/index-CRabYQb-.js",
588 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
589 + "/assets/Section-CaP3oBph.js",
590 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
591 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
592 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
593 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
594 + "/assets/LiveAnnouncer-CnNJa9NI.js",
595 + "/assets/useUpdateEffect-DsCDOPa2.js",
596 + "/assets/index-BT5H2sjL.js",
597 + "/assets/features-animation-BCPmlPPs.js",
598 + "/assets/index-8boKsGvQ.js",
599 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
600 + "/assets/use-server-command-DJ0CxbuT.js",
601 + "/assets/create-rpc-stub-SmqOCk37.js",
602 + "/assets/index-BoeY4VQ9.js",
603 + "/assets/app-form-CRPZmLNY.js",
604 + "/assets/button-KaTnxiWj.js",
605 + "/assets/spinner-DDyy7LQF.js",
606 + "/assets/zod-CmeTJI5u.js",
607 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
608 + "/assets/form-hidden-input-DI5aJPYE.js",
609 + "/assets/form-input-C6s4itpV.js",
610 + "/assets/system-preferences-DL4TO29S.js",
611 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
612 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
613 + "/assets/use-in-view-BNnh4L6M.js",
614 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
615 + ],
616 + "css": [
617 + "/assets/rich-text-editor-D9Rskyfk.css#",
618 + "/assets/listing-card-CI-uxcFh.css"
619 + ]
620 + },
621 + "PublicHomePage": {
622 + "id": "PublicHomePage",
623 + "parentId": "public-language",
624 + "path": "",
625 + "hasAction": false,
626 + "hasLoader": true,
627 + "hasClientAction": false,
628 + "hasClientLoader": false,
629 + "hasClientMiddleware": false,
630 + "hasDefaultExport": true,
631 + "hasErrorBoundary": false,
632 + "module": "/assets/home.page-CEey5s8m.js",
633 + "imports": [
634 + "/assets/chunk-QUQL4437-m7Whu12z.js",
635 + "/assets/jsx-runtime-umhk6iWe.js",
636 + "/assets/runtime-MtUT-9pW.js",
637 + "/assets/facebook-pixel-B5MxbSaJ.js",
638 + "/assets/google-analytics-D-bO2gMa.js",
639 + "/assets/lead-capture-config.helpers-DpZ6az3C.js",
640 + "/assets/global-progress-CjDASA7T.js",
641 + "/assets/header-BBMyfPB0.js",
642 + "/assets/footer-Byz07yjl.js",
643 + "/assets/listing-card-Cg3TPyWe.js",
644 + "/assets/seo.helpers-rKbdQkhM.js",
645 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
646 + "/assets/types-BKXG3Vd5.js",
647 + "/assets/index-CXP4lC37.js",
648 + "/assets/use-locale-BnwvbFV-.js",
649 + "/assets/instance-Dwq5XJYG.js",
650 + "/assets/locale-rlhQ6FjN.js",
651 + "/assets/lead-capture-layout-D9cSW77z.js",
652 + "/assets/locale-switcher-kD-MOI9x.js",
653 + "/assets/use-show-profile-modal-Cgfts1ut.js",
654 + "/assets/i18n-CTdcZBaW.js",
655 + "/assets/date-C7fQmg2U.js",
656 + "/assets/format-BKStloXP.js",
657 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
658 + "/assets/formatDistanceToNow-BvwR-I5H.js",
659 + "/assets/paths-CiQnXl4X.js",
660 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
661 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
662 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
663 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
664 + "/assets/preload-helper-Cer9inx8.js",
665 + "/assets/index-DmhvH8SD.js",
666 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
667 + "/assets/Item-DuavYi1u.js",
668 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
669 + "/assets/useDialog-Bh9KG6MB.js",
670 + "/assets/VisuallyHidden-D-Q2SU4O.js",
671 + "/assets/isScrollable-Dnxj3NSq.js",
672 + "/assets/useLabels-BL4rQGMb.js",
673 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
674 + "/assets/context-C7uvIu_A.js",
675 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
676 + "/assets/FocusScope-CWuTxhav.js",
677 + "/assets/index-DJnVLKJF.js",
678 + "/assets/useOverlayTriggerState-woQJgDxB.js",
679 + "/assets/useControlledState-Dl_rDvO0.js",
680 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
681 + "/assets/number-lhSI2oqU.js",
682 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
683 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
684 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
685 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
686 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
687 + "/assets/index-DuhTrrt1.js",
688 + "/assets/mergeRefs-C8xtGVp3.js",
689 + "/assets/getItemCount-BQolBIkZ.js",
690 + "/assets/SelectionManager-BmJrKgY4.js",
691 + "/assets/scrollIntoView-BWAA50rI.js",
692 + "/assets/useSelectableItem-Ds0Ihirs.js",
693 + "/assets/useDescription-DF6TDnVi.js",
694 + "/assets/index-D8QbWu84.js",
695 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
696 + "/assets/useSelectableList-BOP0KhmN.js",
697 + "/assets/DOMLayoutDelegate-Brany3qe.js",
698 + "/assets/useCollator-CbJkpXG2.js",
699 + "/assets/useTreeState-Dx1W0YuM.js",
700 + "/assets/useMenuTriggerState-CHKcWOlC.js",
701 + "/assets/useMenuTrigger-DKFjnCNZ.js",
702 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
703 + "/assets/index-blsAimsU.js",
704 + "/assets/storage-image-BRiFwsnF.js",
705 + "/assets/icon-D77RBjQx.js",
706 + "/assets/debug-build-VZlf1Aof.js",
707 + "/assets/empty-image-DeSmMdF3.js",
708 + "/assets/storage-JzkTKPy4.js",
709 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
710 + "/assets/use-tenant-wE0zDJ1a.js",
711 + "/assets/use-localized-path-BMxKZwMg.js",
712 + "/assets/modal-BG3X61k6.js",
713 + "/assets/runtime-TD3m583z.js",
714 + "/assets/modal-root-haL454LR.js",
715 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
716 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
717 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
718 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
719 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
720 + "/assets/proxy-BlmPTkqy.js",
721 + "/assets/create-visual-element-Cc1-iv7S.js",
722 + "/assets/accelerated-values-ClBEnI7v.js",
723 + "/assets/layout-CqatgvGE.js",
724 + "/assets/listingTypes-CkyCgPCr.js",
725 + "/assets/floor-label-CGeBlKR2.js",
726 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
727 + "/assets/useFormValidation-BlL8vXtt.js",
728 + "/assets/useLabel-FzyH2LZi.js",
729 + "/assets/useNumberFormatter-DG2VO0C1.js",
730 + "/assets/NumberFormatter-BWU_gJyt.js",
731 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
732 + "/assets/useModal-C3khzgYn.js",
733 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
734 + "/assets/useButton-DZK-beuH.js",
735 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
736 + "/assets/index-B915wqUE.js",
737 + "/assets/index-DGzYOEP8.js",
738 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
739 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
740 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
741 + "/assets/useControlledState-C6ovzWeF.js",
742 + "/assets/useField-CBKMx-DQ.js",
743 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
744 + "/assets/chunk-M3MASYO7-COH9P04M.js",
745 + "/assets/chunk-D7WRZFSP-cqLhFDYn.js",
746 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
747 + "/assets/useToggleState-DY8z2i0t.js",
748 + "/assets/index-BzZ-MzUq.js",
749 + "/assets/useToggle-QKKEqo_x.js",
750 + "/assets/use-debounce-D23YJQRM.js",
751 + "/assets/use-debounced-callback-Do1iUmMt.js",
752 + "/assets/show-BOEsnqQk.js",
753 + "/assets/index-BxwHZyk5.js",
754 + "/assets/use-screenshot-mode-RoZeXH-d.js",
755 + "/assets/chunk-UYTDJMPP-w_Hx60qF.js",
756 + "/assets/chunk-4DMBHLGU-BGQrDZEF.js",
757 + "/assets/chunk-TLGNVWIG-DUXnPsRX.js",
758 + "/assets/powered-by-eversa-BF980dJS.js",
759 + "/assets/tooltip-_QqyKTfK.js",
760 + "/assets/eversa-logo-DmkjJgjq.js",
761 + "/assets/use-auth-D_t8q_v4.js",
762 + "/assets/OtpInput-CJhAm1Gc.js",
763 + "/assets/roles-Cde3N6LE.js",
764 + "/assets/chunk-T45N425O-CCF24x8B.js",
765 + "/assets/index-CwlnhZHs.js",
766 + "/assets/exports-mapbox-Dy-MMXYe.js",
767 + "/assets/client-CpT78rmL.js",
768 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
769 + "/assets/useProgressBar-DhWwJb16.js",
770 + "/assets/index-Cy2bmlj7.js",
771 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
772 + "/assets/std-cron-C0Hf3jWh.js",
773 + "/assets/legacy-date-D-X4tG6T.js",
774 + "/assets/use-is-iframe-DIKEri2l.js",
775 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
776 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
777 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
778 + "/assets/link-CrZmIZC6.js",
779 + "/assets/rich-text-display--Qas76Hg.js",
780 + "/assets/utils-D0p-v41w.js",
781 + "/assets/signature-block-8SMePIUg.js",
782 + "/assets/index-DqzG1Q9x.js",
783 + "/assets/client-only-BGvaz0Jn.js",
784 + "/assets/use-hydrated-nn_6IPIK.js",
785 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
786 + "/assets/settings.types-CTRD0B_j.js",
787 + "/assets/input-CkQmsiJb.js",
788 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
789 + "/assets/extends-BSSSaanF.js",
790 + "/assets/user-menu-BuoWMPG0.js",
791 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
792 + "/assets/index-CRabYQb-.js",
793 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
794 + "/assets/Section-CaP3oBph.js",
795 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
796 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
797 + "/assets/LiveAnnouncer-CnNJa9NI.js",
798 + "/assets/useUpdateEffect-DsCDOPa2.js",
799 + "/assets/index-BT5H2sjL.js",
800 + "/assets/features-animation-BCPmlPPs.js",
801 + "/assets/index-8boKsGvQ.js",
802 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
803 + "/assets/use-server-command-DJ0CxbuT.js",
804 + "/assets/create-rpc-stub-SmqOCk37.js",
805 + "/assets/index-BoeY4VQ9.js",
806 + "/assets/app-form-CRPZmLNY.js",
807 + "/assets/button-KaTnxiWj.js",
808 + "/assets/spinner-DDyy7LQF.js",
809 + "/assets/zod-CmeTJI5u.js",
810 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
811 + "/assets/form-hidden-input-DI5aJPYE.js",
812 + "/assets/form-input-C6s4itpV.js",
813 + "/assets/system-preferences-DL4TO29S.js",
814 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
815 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
816 + "/assets/use-in-view-BNnh4L6M.js",
817 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
818 + ],
819 + "css": [
820 + "/assets/rich-text-editor-D9Rskyfk.css#",
821 + "/assets/listing-card-CI-uxcFh.css"
822 + ]
823 + },
824 + "root.not-found": {
825 + "id": "root.not-found",
826 + "parentId": "root",
827 + "path": "*",
828 + "hasAction": false,
829 + "hasLoader": false,
830 + "hasClientAction": false,
831 + "hasClientLoader": false,
832 + "hasClientMiddleware": false,
833 + "hasDefaultExport": true,
834 + "hasErrorBoundary": false,
835 + "module": "/assets/root.not-found-D01c4GbZ.js",
836 + "imports": [
837 + "/assets/root.not-found-DP5tZm2i.js",
838 + "/assets/chunk-QUQL4437-m7Whu12z.js",
839 + "/assets/jsx-runtime-umhk6iWe.js",
840 + "/assets/icon-D77RBjQx.js",
841 + "/assets/index-blsAimsU.js",
842 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
843 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
844 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
845 + "/assets/preload-helper-Cer9inx8.js",
846 + "/assets/index-DmhvH8SD.js",
847 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
848 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
849 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
850 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
851 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js"
852 + ],
853 + "css": []
854 + },
855 + "PublicListingsIndexPage": {
856 + "id": "PublicListingsIndexPage",
857 + "parentId": "PublicListingsLayoutPage",
858 + "path": "",
859 + "hasAction": false,
860 + "hasLoader": false,
861 + "hasClientAction": false,
862 + "hasClientLoader": false,
863 + "hasClientMiddleware": false,
864 + "hasDefaultExport": true,
865 + "hasErrorBoundary": false,
866 + "module": "/assets/listings-index.page-DjplF3AX.js",
867 + "imports": [
868 + "/assets/chunk-QUQL4437-m7Whu12z.js",
869 + "/assets/jsx-runtime-umhk6iWe.js",
870 + "/assets/runtime-MtUT-9pW.js",
871 + "/assets/instance-Dwq5XJYG.js",
872 + "/assets/locale-rlhQ6FjN.js",
873 + "/assets/use-localized-path-BMxKZwMg.js",
874 + "/assets/listing-card-Cg3TPyWe.js",
875 + "/assets/types-BKXG3Vd5.js",
876 + "/assets/i18n-CTdcZBaW.js",
877 + "/assets/date-C7fQmg2U.js",
878 + "/assets/format-BKStloXP.js",
879 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
880 + "/assets/formatDistanceToNow-BvwR-I5H.js",
881 + "/assets/paths-CiQnXl4X.js",
882 + "/assets/use-tenant-wE0zDJ1a.js",
883 + "/assets/runtime-TD3m583z.js",
884 + "/assets/exports-mapbox-Dy-MMXYe.js",
885 + "/assets/index-DJnVLKJF.js",
886 + "/assets/use-locale-BnwvbFV-.js",
887 + "/assets/icon-D77RBjQx.js",
888 + "/assets/show-BOEsnqQk.js",
889 + "/assets/client-CpT78rmL.js",
890 + "/assets/index-CXP4lC37.js",
891 + "/assets/chunk-H4M2ZVHB-CKd8CziD.js",
892 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
893 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
894 + "/assets/useProgressBar-DhWwJb16.js",
895 + "/assets/preload-helper-Cer9inx8.js",
896 + "/assets/index-DmhvH8SD.js",
897 + "/assets/number-lhSI2oqU.js",
898 + "/assets/useLabel-FzyH2LZi.js",
899 + "/assets/useLabels-BL4rQGMb.js",
900 + "/assets/useNumberFormatter-DG2VO0C1.js",
901 + "/assets/context-C7uvIu_A.js",
902 + "/assets/NumberFormatter-BWU_gJyt.js",
903 + "/assets/index-Cy2bmlj7.js",
904 + "/assets/index-blsAimsU.js",
905 + "/assets/chunk-6NGXL2PC-CZx5wfNy.js",
906 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
907 + "/assets/mergeRefs-C8xtGVp3.js",
908 + "/assets/useControlledState-Dl_rDvO0.js",
909 + "/assets/FocusScope-CWuTxhav.js",
910 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
911 + "/assets/useField-CBKMx-DQ.js",
912 + "/assets/useFormValidation-BlL8vXtt.js",
913 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
914 + "/assets/std-cron-C0Hf3jWh.js",
915 + "/assets/legacy-date-D-X4tG6T.js",
916 + "/assets/listingTypes-CkyCgPCr.js",
917 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
918 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
919 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
920 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
921 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
922 + "/assets/useButton-DZK-beuH.js",
923 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
924 + "/assets/useOverlayTriggerState-woQJgDxB.js",
925 + "/assets/index-B915wqUE.js",
926 + "/assets/accelerated-values-ClBEnI7v.js",
927 + "/assets/useTreeState-Dx1W0YuM.js",
928 + "/assets/SelectionManager-BmJrKgY4.js",
929 + "/assets/scrollIntoView-BWAA50rI.js",
930 + "/assets/isScrollable-Dnxj3NSq.js",
931 + "/assets/useSelectableList-BOP0KhmN.js",
932 + "/assets/DOMLayoutDelegate-Brany3qe.js",
933 + "/assets/useCollator-CbJkpXG2.js",
934 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
935 + "/assets/index-DGzYOEP8.js",
936 + "/assets/Item-DuavYi1u.js",
937 + "/assets/use-is-iframe-DIKEri2l.js",
938 + "/assets/floor-label-CGeBlKR2.js",
939 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
940 + "/assets/chunk-D5XJWRAV-Deu-Z5uA.js",
941 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
942 + "/assets/storage-image-BRiFwsnF.js",
943 + "/assets/debug-build-VZlf1Aof.js",
944 + "/assets/empty-image-DeSmMdF3.js",
945 + "/assets/storage-JzkTKPy4.js",
946 + "/assets/link-CrZmIZC6.js",
947 + "/assets/chunk-T45N425O-CCF24x8B.js",
948 + "/assets/modal-BG3X61k6.js",
949 + "/assets/modal-root-haL454LR.js",
950 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
951 + "/assets/useDialog-Bh9KG6MB.js",
952 + "/assets/VisuallyHidden-D-Q2SU4O.js",
953 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
954 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
955 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
956 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
957 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
958 + "/assets/proxy-BlmPTkqy.js",
959 + "/assets/create-visual-element-Cc1-iv7S.js",
960 + "/assets/layout-CqatgvGE.js",
961 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
962 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
963 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
964 + "/assets/index-DuhTrrt1.js",
965 + "/assets/useModal-C3khzgYn.js",
966 + "/assets/index-BxwHZyk5.js",
967 + "/assets/rich-text-display--Qas76Hg.js",
968 + "/assets/utils-D0p-v41w.js",
969 + "/assets/signature-block-8SMePIUg.js",
970 + "/assets/index-DqzG1Q9x.js",
971 + "/assets/client-only-BGvaz0Jn.js",
972 + "/assets/use-hydrated-nn_6IPIK.js",
973 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
974 + "/assets/chunk-M3MASYO7-COH9P04M.js",
975 + "/assets/settings.types-CTRD0B_j.js",
976 + "/assets/use-show-profile-modal-Cgfts1ut.js",
977 + "/assets/input-CkQmsiJb.js",
978 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
979 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
980 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
981 + "/assets/useControlledState-C6ovzWeF.js",
982 + "/assets/extends-BSSSaanF.js",
983 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
984 + "/assets/use-debounce-D23YJQRM.js",
985 + "/assets/use-debounced-callback-Do1iUmMt.js",
986 + "/assets/use-auth-D_t8q_v4.js",
987 + "/assets/OtpInput-CJhAm1Gc.js",
988 + "/assets/roles-Cde3N6LE.js",
989 + "/assets/index-CwlnhZHs.js",
990 + "/assets/index-BzZ-MzUq.js",
991 + "/assets/powered-by-eversa-BF980dJS.js",
992 + "/assets/tooltip-_QqyKTfK.js",
993 + "/assets/eversa-logo-DmkjJgjq.js",
994 + "/assets/use-screenshot-mode-RoZeXH-d.js",
995 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
996 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
997 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
998 + "/assets/getItemCount-BQolBIkZ.js",
999 + "/assets/useSelectableItem-Ds0Ihirs.js",
1000 + "/assets/useDescription-DF6TDnVi.js",
1001 + "/assets/index-D8QbWu84.js",
1002 + "/assets/useMenuTriggerState-CHKcWOlC.js",
1003 + "/assets/useMenuTrigger-DKFjnCNZ.js",
1004 + "/assets/user-menu-BuoWMPG0.js",
1005 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
1006 + "/assets/index-CRabYQb-.js",
1007 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
1008 + "/assets/Section-CaP3oBph.js",
1009 + "/assets/chunk-R6AK6OQ4-C4Vp7qrO.js",
1010 + "/assets/chunk-5LMKFFWA-GEW8N4pt.js",
1011 + "/assets/chunk-IGERPFKH-BDJ90PZL.js",
1012 + "/assets/chunk-XPMFI4TR-B3n8vMuC.js",
1013 + "/assets/LiveAnnouncer-CnNJa9NI.js",
1014 + "/assets/useUpdateEffect-DsCDOPa2.js",
1015 + "/assets/index-BT5H2sjL.js",
1016 + "/assets/features-animation-BCPmlPPs.js",
1017 + "/assets/index-8boKsGvQ.js",
1018 + "/assets/chunk-G5VRPE3T-DQ9dVtGk.js",
1019 + "/assets/use-server-command-DJ0CxbuT.js",
1020 + "/assets/create-rpc-stub-SmqOCk37.js",
1021 + "/assets/index-BoeY4VQ9.js",
1022 + "/assets/app-form-CRPZmLNY.js",
1023 + "/assets/button-KaTnxiWj.js",
1024 + "/assets/spinner-DDyy7LQF.js",
1025 + "/assets/zod-CmeTJI5u.js",
1026 + "/assets/lead-preferences-renderer-Efc5v0j9.js",
1027 + "/assets/form-hidden-input-DI5aJPYE.js",
1028 + "/assets/form-input-C6s4itpV.js",
1029 + "/assets/system-preferences-DL4TO29S.js",
1030 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
1031 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
1032 + "/assets/use-in-view-BNnh4L6M.js",
1033 + "/assets/chunk-CXOJTH5M-BzSfmy9K.js"
1034 + ],
1035 + "css": [
1036 + "/assets/rich-text-editor-D9Rskyfk.css#",
1037 + "/assets/listing-card-CI-uxcFh.css"
1038 + ]
1039 + }
1040 + },
1041 + "url": "/assets/manifest-2b2cda1e.js",
1042 + "version": "2b2cda1e"
1043 +};
1044 + window.__reactRouterRouteModules = {"root":route0,"public-language":route1,"PublicListingsLayoutPage":route2,"PublicListingDetailPage":route3};
1045 +
1046 +import("/assets/entry.client-BIJa3TY3.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":-5,\"_8\":9,\"_10\":11},\"actionData\",\"errors\",\"root\",{\"_592\":-5,\"_593\":-7,\"_594\":595,\"_596\":597,\"_20\":21,\"_18\":598,\"_599\":-5,\"_600\":601,\"_238\":239,\"_602\":-5,\"_603\":-5},\"public-language\",\"PublicListingsLayoutPage\",{\"_18\":225,\"_226\":227,\"_228\":229,\"_230\":25,\"_231\":232,\"_233\":60,\"_234\":235,\"_236\":237,\"_238\":239,\"_240\":25,\"_241\":25,\"_242\":25},\"PublicListingDetailPage\",{\"_12\":13,\"_14\":15,\"_16\":17,\"_18\":19,\"_20\":21,\"_22\":23,\"_24\":25},\"listing\",{\"_46\":126,\"_127\":128,\"_96\":129,\"_130\":129,\"_84\":103,\"_131\":132,\"_133\":134,\"_115\":135,\"_118\":136,\"_116\":137,\"_36\":138,\"_139\":140,\"_141\":142,\"_143\":-5,\"_144\":-5,\"_145\":146,\"_147\":60,\"_148\":149,\"_150\":151},\"auth\",{\"_124\":60,\"_125\":25},\"walkScore\",[\"P\",17],\"tenant\",{\"_26\":27,\"_28\":29,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":40,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"lang\",\"fr\",\"pageUrl\",\"https://www.halfred.ca/fr/listings/190-rue-henri-matisse/details\",\"noindex\",false,\"address\",{\"_96\":114,\"_84\":103,\"_115\":79,\"_116\":117,\"_118\":119,\"_120\":101,\"_121\":87,\"_90\":98,\"_122\":123},\"analytics\",{\"_108\":109,\"_110\":111,\"_112\":113},\"colors\",{\"_104\":105,\"_106\":107},\"contact\",{\"_69\":70,\"_71\":72,\"_26\":73},\"customDomains\",[62,63],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_58\":25,\"_59\":60,\"_61\":25},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{\"_54\":55,\"_56\":57},\"templateId\",\"editorial\",\"title\",\"Halfred | Apartment rentals\",\"showcase\",{},\"listingSortOrder\",\"smart\",\"buildingVisibilityOverride\",\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_64\":68},{\"_64\":65,\"_66\":67},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_74\":75,\"_76\":77,\"_78\":79,\"_80\":81,\"_82\":83,\"_84\":85,\"_86\":87,\"_88\":89,\"_90\":91,\"_92\":93,\"_94\":95,\"_96\":79},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_97\":103,\"_99\":103},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_97\":101,\"_99\":102},\"country\",{\"_97\":98,\"_99\":100},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"loggedIn\",\"isStaff\",\"190-rue-henri-matisse\",\"area\",1260,\"190 Rue Henri-Matisse\",\"name\",\"buildingId\",\"7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14\",\"availabilty\",[\"D\",1780272000000],\"Templeton\",-75.61233,45.503035,{\"_200\":223,\"_21\":224},\"images\",[222],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[192,193,194,195,196,197],\"listed\",\"units\",[167],\"cardData\",{\"_46\":126,\"_96\":129,\"_84\":103,\"_115\":135,\"_116\":137,\"_118\":136,\"_152\":153,\"_154\":155,\"_156\":157,\"_127\":158,\"_159\":160,\"_161\":162},\"unitId\",\"4448486b-cbbe-4381-9685-be561b1a50ae\",\"bedrooms\",[166],\"bathrooms\",[165],[128],\"price\",[164],\"availability\",[163],\"2026-06-01T00:00:00.000Z\",1575,1,2,{\"_46\":153,\"_127\":128,\"_168\":-5,\"_159\":164,\"_154\":166,\"_156\":165,\"_169\":170,\"_139\":171,\"_147\":60,\"_172\":173,\"_174\":175,\"_176\":177,\"_161\":178,\"_179\":-5,\"_180\":-5,\"_181\":182,\"_39\":183},\"floor\",\"alias\",\"3\",[186,187,188,189,190,191],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1780272000000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_159\":184,\"_36\":185},[],1443,\"*** prix promotionnelle pour un bail de 12 mois ***\",\"/storage/v1/object/public/halfred/units/4448486b-cbbe-4381-9685-be561b1a50ae/1.jpg\",\"/storage/v1/object/public/halfred/units/4448486b-cbbe-4381-9685-be561b1a50ae/3.jpg\",\"/storage/v1/object/public/halfred/units/4448486b-cbbe-4381-9685-be561b1a50ae/4.jpg\",\"/storage/v1/object/public/halfred/units/4448486b-cbbe-4381-9685-be561b1a50ae/5.jpg\",\"/storage/v1/object/public/halfred/units/4448486b-cbbe-4381-9685-be561b1a50ae/7.jpg\",\"/storage/v1/object/public/halfred/units/4448486b-cbbe-4381-9685-be561b1a50ae/8.jpg\",{\"_97\":218,\"_41\":219},{\"_97\":214,\"_41\":215},{\"_97\":210,\"_41\":211},{\"_97\":207,\"_41\":199},{\"_97\":203,\"_41\":204},{\"_97\":198,\"_41\":199},{\"_200\":201,\"_21\":202},\"lucide:check\",\"en\",\"Dishwasher\",\"Lave-vaisselle\",{\"_200\":205,\"_21\":206},\"lucide:thermometer-sun\",\"Central Air Conditioning\",\"Climatisation centrale\",{\"_200\":208,\"_21\":209},\"Water Tank\",\"Réservoir d'eau\",{\"_200\":212,\"_21\":213},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_200\":216,\"_21\":217},\"lucide:droplet\",\"Water\",\"Eau\",{\"_200\":220,\"_21\":221},\"lucide:car\",\"Parking\",\"Stationnement\",\"/storage/v1/object/public/halfred/buildings/7e4b5e3c-8dcc-47ab-9a8f-00dd1627ac14/chatgpt-image-7-mai-2026-123729.png\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Beautiful Apartment for Rent – 190 Henri-Matisse Street | Prime Location!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover this beautiful apartment located in a \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"new and peaceful neighborhood in Gatineau\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", on \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Henri-Matisse Street\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", close to \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Lorrain Boulevard\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and only \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"1 minute from Highway 50\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\". Enjoy a convenient location near \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"all essential services\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" including grocery stores, banks, gas stations, Dollarama, as well as \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Raymond-Madore Park\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Lac-Beauchamp Park\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"A modern unit that stands out:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Spacious and functional living area\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🛁 Separate bathtub and shower for added comfort\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🪨 Elegant granite countertops\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❄️ Air conditioning\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Washer/dryer hookups\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🌬️ Air exchanger\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 parking space included\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"The perfect balance of \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"comfort, modern living, and convenience\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" in a highly desirable area.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Not heated / not electricity included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ No dogs allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Minimum 12-month lease\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Don’t miss out!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" to schedule your visit.\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Magnifique appartement à louer – 190 rue Henri-Matisse | Secteur recherché!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ce superbe logement situé dans un \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"nouveau quartier paisible de Gatineau\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", sur la \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"rue Henri-Matisse\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", à proximité du \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"boulevard Lorrain\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" et à seulement \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"1 minute de l’autoroute 50\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\". Profitez d’un emplacement idéal près de \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"tous les services essentiels\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" : épicerie, banque, station-service, Dollarama, ainsi que du \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"parc Raymond-Madore\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" et du \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"parc du Lac-Beauchamp\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Un logement moderne qui se démarque :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Espace de vie spacieux et bien aménagé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🛁 Bain et douche séparés pour plus de confort\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🪨 Comptoirs en granite élégants\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❄️ Air climatisé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🧺 Entrées laveuse/sécheuse\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🌬️ Échangeur d’air\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 stationnement inclus\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’adorer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Un parfait équilibre entre \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"tranquillité, modernité et accessibilité\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", dans un secteur en forte demande.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Non chauffé / non éclairé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ Chiens interdits\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Bail minimum de 12 mois\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ne manquez pas cette opportunité!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dès maintenant au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour planifier votre visite.\\\"}]}]}\",{\"_26\":27,\"_28\":590,\"_30\":31,\"_32\":33,\"_34\":35,\"_36\":37,\"_38\":-7,\"_39\":591,\"_41\":42,\"_43\":44,\"_45\":-5,\"_46\":47,\"_48\":49,\"_50\":51,\"_52\":53},\"listings\",[],\"listingsByView\",{\"_585\":227,\"_586\":587,\"_588\":589},\"explodeProjects\",\"initialFilters\",{\"_159\":356,\"_357\":358,\"_359\":360,\"_127\":361,\"_168\":362,\"_363\":60,\"_156\":364,\"_154\":365,\"_366\":25,\"_367\":60,\"_368\":369,\"_370\":371},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_243\":244,\"_245\":246,\"_247\":248,\"_249\":250,\"_251\":244,\"_252\":253,\"_254\":255},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[337],\"analysisProductsPrice\",{\"_337\":338,\"_339\":340,\"_341\":342,\"_343\":344,\"_345\":346,\"_347\":348,\"_349\":350,\"_351\":350,\"_352\":353,\"_354\":348,\"_355\":346},\"notifications\",{\"_314\":315},\"form\",{\"_307\":60,\"_308\":25,\"_309\":60,\"_310\":60,\"_311\":25,\"_312\":25,\"_313\":25},\"enabledSkus\",\"submissions\",{\"_257\":258,\"_259\":260,\"_261\":262,\"_263\":264,\"_30\":265,\"_266\":-5},\"agent\",{\"_256\":25},\"hideAgentNewSubmissionBtn\",\"all\",[293,294,295,296,297,298,299,303,304,305,306],\"steps\",[293,294,295,296,297,298,299],\"badges\",[283,284,285,286,287,288],\"statuses\",[277,267,269,271,273,275,278,279,280,281,282],{\"_267\":268,\"_269\":270,\"_271\":272,\"_273\":274,\"_275\":276},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_289\":267,\"_291\":268},{\"_289\":269,\"_291\":270},{\"_289\":271,\"_291\":272},{\"_289\":273,\"_291\":274},{\"_289\":275,\"_291\":276},{\"_289\":290,\"_291\":292},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_289\":277,\"_291\":-5,\"_300\":25},{\"_289\":267,\"_291\":268,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":269,\"_291\":270,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":271,\"_291\":272,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":273,\"_291\":274,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":275,\"_291\":276,\"_300\":60,\"_301\":25,\"_302\":25},{\"_289\":278,\"_291\":-5,\"_300\":60},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_289\":279,\"_291\":-5,\"_300\":25},{\"_289\":280,\"_291\":-5,\"_300\":25},{\"_289\":281,\"_291\":-5,\"_300\":25},{\"_289\":282,\"_291\":-5,\"_300\":25},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_254\":316,\"_317\":318,\"_18\":319,\"_320\":321},[329,330,331,332,333,334,324,325,335,336],\"manager\",[],[323,324,325,326,327,328],\"admin\",[322],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"agent-submission-snoozed\",\"agent-submission-snoozed-reminder\",\"agent-submission-snoozed-expired\",\"application-deadline-reminder\",\"application-deadline-expired\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1299,\"qc_citizen_criminal_plumitif_municipal_check\",699,\"qc_citizen_rental_board_check\",799,\"on_citizen_rental_board_check\",999,\"ca_citizen_workplace_reference_verification\",1499,\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",\"qc_citizen_rental_board_extended_check\",[165,584],\"pricePerMonth\",[165,584],\"pricePerSqft\",[235,235],[235,583],[581,582],\"hasFloor\",[235,166],[235,406],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445],\"availableNeighborhoods\",[372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388],{\"_130\":411,\"_234\":165},{\"_130\":409,\"_234\":410},{\"_130\":408,\"_234\":166},{\"_130\":407,\"_234\":166},{\"_130\":405,\"_234\":406},{\"_130\":103,\"_234\":404},{\"_130\":402,\"_234\":403},{\"_130\":401,\"_234\":165},{\"_130\":400,\"_234\":166},{\"_130\":399,\"_234\":165},{\"_130\":397,\"_234\":398},{\"_130\":396,\"_234\":165},{\"_130\":394,\"_234\":395},{\"_130\":393,\"_234\":166},{\"_130\":392,\"_234\":165},{\"_130\":135,\"_234\":391},{\"_130\":389,\"_234\":390},\"Touraine\",7,14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",8,\"Plateau \",\"Plateau\",30,\"plateau\",\"Old Gatineau\",\"Masson\",\"Hull\",21,37,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",20,\"angers\",{\"_46\":579,\"_130\":580,\"_41\":219},{\"_46\":574,\"_130\":575,\"_41\":576},{\"_46\":570,\"_130\":571,\"_41\":199},{\"_46\":566,\"_130\":567,\"_41\":490},{\"_46\":564,\"_130\":565,\"_41\":199},{\"_46\":562,\"_130\":563,\"_41\":204},{\"_46\":558,\"_130\":559,\"_41\":485},{\"_46\":553,\"_130\":554,\"_41\":555},{\"_46\":549,\"_130\":550,\"_41\":485},{\"_46\":544,\"_130\":545,\"_41\":546},{\"_46\":539,\"_130\":540,\"_41\":541},{\"_46\":535,\"_130\":536,\"_41\":501},{\"_46\":531,\"_130\":532,\"_41\":452},{\"_46\":527,\"_130\":528,\"_41\":204},{\"_46\":523,\"_130\":524,\"_41\":525},{\"_46\":519,\"_130\":520,\"_41\":474},{\"_46\":515,\"_130\":516,\"_41\":490},{\"_46\":511,\"_130\":512,\"_41\":452},{\"_46\":509,\"_130\":510,\"_41\":215},{\"_46\":504,\"_130\":505,\"_41\":506},{\"_46\":499,\"_130\":500,\"_41\":501},{\"_46\":497,\"_130\":498,\"_41\":199},{\"_46\":493,\"_130\":494,\"_41\":219},{\"_46\":488,\"_130\":489,\"_41\":490},{\"_46\":483,\"_130\":484,\"_41\":485},{\"_46\":481,\"_130\":482,\"_41\":211},{\"_46\":477,\"_130\":478,\"_41\":474},{\"_46\":472,\"_130\":473,\"_41\":474},{\"_46\":468,\"_130\":469,\"_41\":219},{\"_46\":464,\"_130\":465,\"_41\":204},{\"_46\":459,\"_130\":460,\"_41\":461},{\"_46\":455,\"_130\":456,\"_41\":457},{\"_46\":450,\"_130\":451,\"_41\":452},{\"_46\":446,\"_130\":447,\"_41\":199},\"counter-type\",{\"_200\":448,\"_21\":449},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_200\":453,\"_21\":454},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_200\":458,\"_21\":458},\"lucide:armchair\",\"Commodes\",\"disabled-access\",{\"_200\":462,\"_21\":463},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"gas-heating\",{\"_200\":466,\"_21\":467},\"Gas Heating\",\"Chauffage au gaz\",\"underground-garage\",{\"_200\":470,\"_21\":471},\"Underground Garage\",\"Garage souterrain\",\"small-dogs-allowed\",{\"_200\":475,\"_21\":476},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_200\":479,\"_21\":480},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"washer-dryer-outlet\",{\"_200\":212,\"_21\":213},\"cable-internet\",{\"_200\":486,\"_21\":487},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"laundry-room\",{\"_200\":491,\"_21\":492},\"lucide:washing-machine\",\"Laundry Room\",\"Buanderie\",\"garage-parking\",{\"_200\":495,\"_21\":496},\"Garage Parking\",\"Parking garage\",\"water-tank\",{\"_200\":208,\"_21\":209},\"microwave\",{\"_200\":502,\"_21\":503},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"blinds\",{\"_200\":507,\"_21\":508},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water\",{\"_200\":216,\"_21\":217},\"building-terrace\",{\"_200\":513,\"_21\":514},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_200\":517,\"_21\":518},\"Dryer\",\"Sèche-linge\",\"cats-allowed\",{\"_200\":521,\"_21\":522},\"Cats Allowed\",\"Chats autorisés\",\"gym\",{\"_200\":526,\"_21\":526},\"lucide:dumbbell\",\"Gym\",\"electric-heating\",{\"_200\":529,\"_21\":530},\"Electric Heating\",\"Chauffage Électrique\",\"balcony\",{\"_200\":533,\"_21\":534},\"Balcony\",\"Balcon\",\"oven\",{\"_200\":537,\"_21\":538},\"Oven\",\"Four\",\"electricity\",{\"_200\":542,\"_21\":543},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"refrigerator\",{\"_200\":547,\"_21\":548},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_200\":551,\"_21\":552},\"Cable\",\"Câble\",\"stove\",{\"_200\":556,\"_21\":557},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_200\":560,\"_21\":561},\"Fiber Internet\",\"Internet fibre\",\"central-air-conditioning\",{\"_200\":205,\"_21\":206},\"dishwasher\",{\"_200\":201,\"_21\":202},\"washer\",{\"_200\":568,\"_21\":569},\"Washer\",\"Laveuse\",\"elevator\",{\"_200\":572,\"_21\":573},\"Elevator\",\"Ascenseur\",\"locker-storage-space\",{\"_200\":577,\"_21\":578},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"parking\",{\"_200\":220,\"_21\":221},-1,6,2063,3050,\"list\",\"map\",[],\"explode\",[],{\"_108\":109,\"_110\":111,\"_112\":113},{\"_58\":25,\"_59\":60,\"_61\":25},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_289\":618,\"_46\":47,\"_619\":620,\"_52\":53,\"_36\":37,\"_30\":31,\"_621\":622,\"_26\":27,\"_32\":33,\"_245\":623,\"_624\":625,\"_626\":627,\"_628\":629,\"_43\":44,\"_630\":631,\"_632\":633,\"_45\":-5,\"_634\":-5,\"_635\":-5,\"_636\":-5,\"_50\":51,\"_48\":49,\"_34\":35,\"_637\":-5,\"_638\":-5,\"_238\":239,\"_639\":640,\"_641\":642,\"_643\":644,\"_41\":42,\"_645\":646,\"_38\":-7,\"_647\":648,\"_39\":649,\"_650\":651,\"_652\":-7,\"_653\":654,\"_28\":655,\"_243\":656,\"_657\":658,\"_659\":660},\"toast\",\"user\",{\"_604\":25,\"_605\":-5,\"_606\":-5,\"_607\":-5,\"_608\":-5,\"_609\":-5,\"_610\":-5,\"_611\":-5,\"_612\":-5,\"_613\":-5,\"_69\":-5,\"_71\":-5,\"_614\":-5,\"_125\":25,\"_615\":25,\"_616\":-5,\"_617\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_41\":748},\"social\",{\"_745\":746,\"_747\":79},{\"_337\":338,\"_339\":340,\"_341\":342,\"_343\":344,\"_345\":346,\"_347\":348,\"_349\":350,\"_351\":350,\"_352\":353,\"_354\":348,\"_355\":346},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_742\":-5,\"_275\":60,\"_743\":25,\"_744\":698},\"plan\",{\"_130\":722,\"_723\":79,\"_724\":725,\"_726\":727,\"_728\":729,\"_730\":731,\"_732\":235,\"_733\":734,\"_735\":235,\"_736\":737,\"_738\":739,\"_740\":741},\"metadata\",{\"_28\":655},\"consentConditionsText\",\"consentConditionsEn\",\"consentConditionsFr\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_715\":716,\"_624\":625,\"_717\":718,\"_43\":44,\"_719\":720,\"_74\":721},\"bucket\",{\"_712\":47,\"_713\":714},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_597\":709,\"_710\":711},\"tosHistory\",[698],{\"_669\":60,\"_670\":-7,\"_59\":60,\"_671\":25,\"_672\":25,\"_673\":60,\"_674\":60,\"_675\":25,\"_676\":-7,\"_677\":25,\"_678\":-7,\"_679\":25,\"_680\":25,\"_681\":25,\"_682\":683,\"_684\":25,\"_256\":25,\"_685\":-7,\"_686\":-7,\"_687\":-7,\"_688\":25,\"_58\":25,\"_689\":25,\"_61\":25,\"_690\":691,\"_692\":60,\"_693\":25,\"_694\":25,\"_695\":25,\"_696\":25,\"_697\":25},\"disabledModules\",[],\"rolePermissions\",\"banner\",{\"_200\":667,\"_21\":668},{\"_110\":111,\"_665\":666,\"_108\":109,\"_112\":113},[337],\"payments\",{\"_661\":60,\"_662\":60,\"_663\":25,\"_664\":25},\"version\",\"prod-20260917-9ad1803\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"hasAddressVariants\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"hopemIntegrationEnabled\",\"voltixIntegrationEnabled\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_699\":700,\"_701\":702,\"_659\":703,\"_275\":60,\"_273\":704,\"_705\":706,\"_707\":708},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",39,\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_749\":750},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("P17:[{\"_752\":165,\"_753\":754,\"_36\":755,\"_756\":757,\"_758\":759,\"_760\":761,\"_762\":763,\"_764\":765,\"_766\":763,\"_767\":768,\"_769\":770,\"_771\":772,\"_773\":774},\"status\",\"walkscore\",54,\"Somewhat Walkable\",\"updated\",\"2026-08-28 05:28:01.795519\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/190Rue-Henri.dash.Matisse/lat=45.503035/lng=-75.61233/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.5025,\"snapped_lon\",-75.612,\"transit\",{\"_36\":-5,\"_778\":-5,\"_776\":-5},\"bike\",{\"_36\":775,\"_776\":777},\"Somewhat Bikeable\",\"score\",49,\"summary\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--><!--/$--><script id="_R_">requestAnimationFrame(function(){$RT=performance.now()});</script><div hidden id="S:0"><div class="mt-5 flex flex-wrap gap-3 sm:mt-7 sm:gap-2.5" data-sentry-component="HighlightChips" data-sentry-source-file="home-types.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Walk Score®<!-- --> <!-- -->54</a><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Bike Score®<!-- --> <!-- -->49</a><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Parking</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Washer/Dryer Outlet</span><span class="inline-flex items-center rounded-full bg-[var(--ed-chip)] px-3 py-2 text-[12.5px] text-[var(--ed-strong)] sm:py-1.5">Water Tank</span></div></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
1047 +$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><div hidden id="S:1"><div class="flex min-w-[240px] flex-1 basis-[280px] flex-col gap-4 sm:gap-6" data-sentry-component="EditorialScores" data-sentry-source-file="location.tsx"><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Walk Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">54</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:54%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Somewhat Walkable</div></div><div data-sentry-component="ScoreBar" data-sentry-source-file="location.tsx"><a href="https://www.redfin.com/how-walk-score-works" target="_blank" rel="noreferrer" class="mb-2 flex items-baseline gap-2.5"><span class="text-[15px] text-[var(--ed-strong)]">Bike Score®</span><span class="text-[22px] font-bold text-[var(--ed-ink)] sm:text-[26px]">49</span></a><div class="h-[5px] overflow-hidden rounded-full bg-[#edeae3]"><div data-ed-bar="true" class="h-full bg-[var(--ed-ink)]" style="width:49%"></div></div><div class="mt-2 text-[13.5px] text-[var(--ed-secondary)]">Somewhat Bikeable</div></div></div></div><script>$RC("B:1","S:1")</script></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/8b89e195fde193bbe5d3.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png?width=1200&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/0__e69fb3b4-c140-4f2b-b460-27a143275483.webp?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/10__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 239 Rue De Liverpool, Gatineau</title><meta description="🔥 Beautiful 2-Bedroom Apartment for Rent – 239 Liverpool, Plateau! 🔥 📍 Only 10 Minutes from Ottawa ✨ Enjoy an exceptional lifestyle in..."/><meta property="og:title" content="Halfred | Apartment rentals | Appartement à louer 239 Rue De Liverpool, Gatineau"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content="🔥 Beautiful 2-Bedroom Apartment for Rent – 239 Liverpool, Plateau! 🔥 📍 Only 10 Minutes from Ottawa ✨ Enjoy an exceptional lifestyle in..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png"/><meta property="og:url" content="www.halfred.ca/listings/239-rue-de-liverpool/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/listing-detail.page-D34BzzZ7.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="693c1d5d59cfc5f7b8cf6110b0c7aaa3-0cc31f29cb0728c2-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=693c1d5d59cfc5f7b8cf6110b0c7aaa3,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.515773957597137,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/239-rue-de-liverpool/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png?width=800&amp;height=600&amp;quality=80" alt="Location Gatineau: appartement 2 chambres à louer par Halfred | Apartment rentals" class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->1</div></div></div><div class="hidden sm:block"><div class="relative overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-96" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/239-rue-de-liverpool/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png?width=1200&amp;height=600&amp;quality=80" alt="Location Gatineau: appartement 2 chambres à louer par Halfred | Apartment rentals" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">239 Rue De Liverpool</h1><p class="text-sm text-foreground-600">Gatineau (Plateau)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>1513$</b> à <b>1650$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1200<!-- --> <!-- --> - <!-- -->1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 mai 2025</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_eiiiuatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description de l&#x27;annonce</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Superbe 4 ½ à louer – 239 Liverpool, Plateau!</strong> 🔥</p><p>📍 <strong>À seulement 10 minutes d’Ottawa</strong></p><p>✨ Offrez-vous un mode de vie exceptionnel dans l’un des secteurs les plus recherchés du Plateau! Ce magnifique appartement de 2 chambres vous propose un parfait équilibre entre confort, tranquillité et accessibilité.</p><p>🌳 Situé à proximité du <strong>Parc de la Gatineau</strong>, des écoles, commerces, restaurants, services essentiels et des principaux axes routiers.</p><p>🏡 <strong>Ce que vous offre le logement :</strong><br>🛏️ 2 chambres spacieuses et bien aménagées<br>❄️ Air climatisé pour un confort optimal toute l’année<br>🌬️ Échangeur d’air<br>🚗 1 stationnement inclus<br>🌞 Espace lumineux et fonctionnel<br>✨ Secteur paisible et sécuritaire</p><p>💡 <strong>Pourquoi vous allez l’aimer :</strong><br>Profitez d’un quartier dynamique où tout est à portée de main, tout en bénéficiant d’un environnement calme et agréable.</p><p>📌 <strong>Informations importantes :</strong><br>⚡ Chauffage et électricité non inclus<br>🚭 Logement non-fumeur<br>❌ Aucun animal accepté (chiens interdits)<br>📋 Enquête de crédit obligatoire<br>📆 Bail minimum de 12 mois<br>🍽️ Possibilité de location avec électroménagers</p><p>📸 <em>Les photos proviennent d’une unité modèle et peuvent différer du logement disponible.</em></p><p>📞 Contactez <strong>Halfred</strong> au <strong>819-593-3304</strong> dès aujourd’hui pour planifier votre visite!</p></div></div></div></div><div class="border-b-[1px] pt-8 pb-8"><div class="space-y-3" data-sentry-component="UnitsSection" data-sentry-source-file="units-section.tsx"><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/239-rue-de-liverpool/details/gallery?unit=e69fb3b4-c140-4f2b-b460-27a143275483" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/0__e69fb3b4-c140-4f2b-b460-27a143275483.webp?width=96&amp;height=72&amp;quality=80" alt="2 chambres, maison Halfred | Apartment rentals à louer à Gatineau, 239 Rue De Liverpool" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">27 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->1</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1200<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>Sous-sol</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->4</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1513<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1650<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/e69fb3b4-c140-4f2b-b460-27a143275483/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/239-rue-de-liverpool/details/gallery?unit=530ef297-e5a3-4d3e-b002-4b43dbbe9414" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/10__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?width=96&amp;height=72&amp;quality=80" alt="Location Gatineau: appartement 2 chambres à louer par Halfred | Apartment rentals" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">18 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->3</span></div></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 septembre 2026</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1260<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>2e étage</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->4</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-foreground sm:text-base">1650<!-- -->$<!-- --> <span class="text-xs font-normal text-foreground-500">/<!-- --> <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/530ef297-e5a3-4d3e-b002-4b43dbbe9414/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="pr-8"><div class="flex justify-center space-x-8 pb-4 lg:justify-start" data-sentry-component="WalkScore" data-sentry-source-file="walk-score.tsx"><div class="flex flex-col items-center space-y-2 "><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de mobilité</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3b8uatij5_" aria-label="Walk score of 11" aria-valuenow="11" aria-valuemin="0" aria-valuemax="100" aria-valuetext="11" role="progressbar" data-sentry-element="CircularProgress" data-sentry-source-file="walk-score.tsx"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-danger w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">11</span></div></div></div><div class="flex flex-col items-center space-y-2"><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de vélo</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3j8uatij5_" aria-label="Bike score of 38" aria-valuenow="38" aria-valuemin="0" aria-valuemax="100" aria-valuetext="38" role="progressbar"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-warning w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">38</span></div></div></div></div></div><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">239 Rue De Liverpool</h1><p class="text-sm text-foreground-600">Gatineau (Plateau)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>1513$</b> à <b>1650$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1200<!-- --> <!-- --> - <!-- -->1260<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 mai 2025</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_1qabeatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/listing-detail.page-D34BzzZ7.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicListingDetailPage": {
338 − "id": "PublicListingDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/:slug/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/listing-detail.page-D34BzzZ7.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/index-C5vezUBD.js",
354 − "/assets/seo.helpers-DUWcGrSj.js",
355 − "/assets/should-revalidate-for-modal-CqioTNup.js",
356 − "/assets/listing-card-vLpuwroq.js",
357 − "/assets/types-BlrrbiGM.js",
358 − "/assets/use-tenant-BWWCVgWC.js",
359 − "/assets/index-DoORTE4j.js",
360 − "/assets/icon-ChitaFhd.js",
361 − "/assets/chunk-T45N425O-C34bNx0L.js",
362 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
363 − "/assets/preload-helper-Djj1Qpxo.js",
364 − "/assets/index-yaZ7Ke31.js",
365 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
366 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
367 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
368 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
369 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
370 − "/assets/settings.types-DE5bLdHg.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicListingDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_644\":-5,\"_645\":-7,\"_646\":647,\"_648\":649,\"_19\":20,\"_17\":650,\"_651\":-5,\"_652\":653,\"_308\":309,\"_654\":-5,\"_655\":-5},\"PublicListingsLayoutPage\",{\"_17\":298,\"_299\":300,\"_301\":302,\"_303\":53,\"_304\":305,\"_306\":307,\"_308\":309,\"_310\":51,\"_311\":51,\"_312\":51},\"PublicListingDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":147,\"_148\":149,\"_89\":150,\"_151\":150,\"_77\":96,\"_152\":153,\"_154\":155,\"_108\":156,\"_111\":157,\"_109\":158,\"_33\":159,\"_160\":161,\"_162\":163,\"_164\":-5,\"_165\":-5,\"_166\":167,\"_168\":53,\"_169\":170,\"_171\":172},\"auth\",{\"_145\":53,\"_146\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136,\"_137\":138,\"_139\":140},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/239-rue-de-liverpool/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",11,\"Car-Dependent\",\"updated\",\"2026-03-02 17:51:39.078429\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/239Rue-De-Liverpool/lat=45.429726/lng=-75.813499/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.429,\"snapped_lon\",-75.813,\"transit\",{\"_33\":-5,\"_144\":-5,\"_142\":-5},\"bike\",{\"_33\":141,\"_142\":143},\"Somewhat Bikeable\",\"score\",38,\"summary\",\"loggedIn\",\"isStaff\",\"239-rue-de-liverpool\",\"area\",1200,\"239 Rue De Liverpool\",\"name\",\"buildingId\",\"2f872116-e778-423e-93ba-8ce6339e7256\",\"availabilty\",[\"D\",1746057600000],\"Plateau\",-75.813499,45.429726,{\"_269\":296,\"_20\":297},\"images\",[295],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[260,261,262,263,264,265,266],\"listed\",\"units\",[188,189],\"cardData\",{\"_43\":147,\"_89\":150,\"_77\":96,\"_108\":156,\"_109\":158,\"_111\":157,\"_173\":-5,\"_174\":175,\"_176\":177,\"_148\":178,\"_179\":180,\"_181\":182},\"unitId\",\"bedrooms\",[187],\"bathrooms\",[118],[149,186],\"price\",[185],\"availability\",[183,184],\"2025-05-01T00:00:00.000Z\",\"2026-09-01T00:00:00.000Z\",1650,1260,2,{\"_43\":224,\"_148\":149,\"_191\":225,\"_179\":185,\"_174\":187,\"_176\":118,\"_192\":226,\"_160\":227,\"_168\":53,\"_195\":196,\"_197\":198,\"_199\":200,\"_181\":228,\"_202\":-5,\"_203\":-5,\"_204\":229,\"_36\":230},{\"_43\":190,\"_148\":186,\"_191\":187,\"_179\":185,\"_174\":187,\"_176\":118,\"_192\":193,\"_160\":194,\"_168\":53,\"_195\":196,\"_197\":198,\"_199\":200,\"_181\":201,\"_202\":-5,\"_203\":-5,\"_204\":-5,\"_36\":205},\"530ef297-e5a3-4d3e-b002-4b43dbbe9414\",\"floor\",\"alias\",\"3\",[206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1788220800000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/10__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=3647fa5d-8425-4bca-8039-bd8b33c29dc8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/11__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=ef1d77c4-18f1-4830-a758-9dea60afc82c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/12__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=10a0512e-272d-4273-8d51-74c7882d7ae2\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/13__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=d8e22de3-65ac-44fd-850d-a9701ac6c2c0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/14__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=5cc86fd9-5139-4b4a-9c5d-b3770cf5a45f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/15__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=5d68b9ab-96ce-4841-a9c4-0d134a1392fa\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/16__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=16933481-7f98-4cd0-8815-d0b536563a8e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/17__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=a019fff7-d3d6-47b3-a737-7b17d2eadf09\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/18__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=2c8d5dfd-f319-4f25-b2cb-1bcca07b829d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/1__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=bcc3e0f0-7852-432d-97d8-1562f964f9f5\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/2__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=531ff770-eb38-4c1d-b7dc-0ed32d39cd4a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/3__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=745601b1-add4-4d0a-aa61-4b73b411658e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/4__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=ddcbd661-f25d-46a4-947f-e950c3c09b32\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/5__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=19cf24d0-ec8e-4e1a-8f78-901d04cf2de1\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/6__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=ac766ca7-2c20-4d15-8fcb-50ef4d72b527\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/7__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=088067db-14b2-46e7-be25-59c10f73538a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/8__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=1dea383b-30e3-45b0-a4d4-ba8f34f1e90d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/530ef297-e5a3-4d3e-b002-4b43dbbe9414/9__530ef297-e5a3-4d3e-b002-4b43dbbe9414.webp?version=ba539761-424a-4f44-b589-e19a555a27bc\",\"e69fb3b4-c140-4f2b-b460-27a143275483\",-1,\"1\",[233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259],[\"D\",1746057600000],{\"_179\":231,\"_33\":232},[],1513,\"undefined\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/0__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=d6e3e54a-5c1d-4f03-85d1-e5450cd993e2\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/10__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=2a2c587d-be80-4a76-a682-3b71b5ebda00\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/11__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=4db6cdb5-96e9-47c3-95f6-b725f4010f89\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/12__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=cff489e7-bd9c-443b-9c3a-6dee0348416c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/13__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=196a1a0b-a9d8-4361-9c38-dbdd3ac093fa\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/14__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=8a61aa7e-a839-4b64-864c-c84db33364e0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/15__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=6bd807d8-518d-41b3-a77c-b227ac399842\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/16__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=23270ce1-e006-4bb4-9b32-7d3b2f12cd83\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/17__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=4c68b632-39af-4ffa-90a6-aba5cd7c330b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/18__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=e6f5326d-9eb8-45cb-9a21-6e2cf855c464\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/19__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=715b560e-a750-448d-8691-0fa9fbaece90\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/1__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=de09851f-72c1-423e-9285-1ac9f7216f7f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/20__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=25806b4f-a490-4123-9353-91aa1d8bbb45\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/21__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=b1461695-95f9-4524-b735-3a8063fa2803\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/22__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=40b0469a-6bc2-42e1-ba9d-550fa2c0d54b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/23__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=e1ea64fb-f3db-444a-874c-f36199811152\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/24__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=93920ce9-5b74-405a-afe2-90c0f9f4f183\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/25__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=969ec146-ea06-4087-8d86-5e591c6695a3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/26__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=25ccdcde-fa0b-46bc-8b18-564db34201ed\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/2__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=d5365e57-869b-49c0-8711-74fc7c6e2e1c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/3__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=b7b4c4ea-33d3-4c11-8185-abb27c185ecd\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/4__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=7a244813-5131-4178-84bd-da5eb030d50f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/5__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=ab9d0cac-be26-4170-bf2d-707d10e62f0d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/6__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=8a3da0a3-d1d0-42e7-9cd5-4a6a0c8935c9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/7__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=48967b4a-401c-45b7-885c-a1d6d634f868\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/8__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=eda11451-4687-41da-913f-0345a026b0e6\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/e69fb3b4-c140-4f2b-b460-27a143275483/9__e69fb3b4-c140-4f2b-b460-27a143275483.webp?version=8faa7708-da95-4430-bb63-80f8973c15ca\",{\"_90\":291,\"_38\":292},{\"_90\":287,\"_38\":288},{\"_90\":283,\"_38\":284},{\"_90\":280,\"_38\":277},{\"_90\":276,\"_38\":277},{\"_90\":272,\"_38\":273},{\"_90\":267,\"_38\":268},{\"_269\":270,\"_20\":271},\"lucide:plug\",\"en\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_269\":274,\"_20\":275},\"lucide:droplet\",\"Water\",\"Eau\",{\"_269\":278,\"_20\":279},\"lucide:thermometer-sun\",\"Central Air Conditioning\",\"Climatisation centrale\",{\"_269\":281,\"_20\":282},\"Electric Heating\",\"Chauffage Électrique\",{\"_269\":285,\"_20\":286},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_269\":289,\"_20\":290},\"lucide:car\",\"Parking\",\"Stationnement\",{\"_269\":293,\"_20\":294},\"lucide:paw-print\",\"Cats Allowed\",\"Chats autorisés\",\"/storage/v1/object/public/halfred/buildings/2f872116-e778-423e-93ba-8ce6339e7256/chatgpt-image-5-juin-2026-161238.png\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Beautiful 2-Bedroom Apartment for Rent – 239 Liverpool, Plateau!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Only 10 Minutes from Ottawa\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ Enjoy an exceptional lifestyle in one of the most sought-after areas of the Plateau! This beautiful 2-bedroom apartment offers the perfect combination of comfort, convenience, and tranquility.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 Located close to \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Gatineau Park\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", schools, shops, restaurants, essential services, and major roadways.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What this unit offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🛏️ 2 spacious and well-designed bedrooms\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❄️ Air conditioning for year-round comfort\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌬️ Air exchanger\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 1 parking space included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌞 Bright and functional living space\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ Peaceful and secure neighborhood\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Enjoy living in a vibrant community where everything is within reach while benefiting from a quiet and comfortable environment.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"⚡ Heating and electricity not included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚭 Non-smoking unit\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❌ No pets allowed (dogs prohibited)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📋 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📆 Minimum 12-month lease\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🍽️ Appliances available for rent\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📸 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"italic\\\"}],\\\"text\\\":\\\"Photos are from a model unit and may vary from the available apartment.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" to schedule your visit!\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Superbe 4 ½ à louer – 239 Liverpool, Plateau!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"À seulement 10 minutes d’Ottawa\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ Offrez-vous un mode de vie exceptionnel dans l’un des secteurs les plus recherchés du Plateau! Ce magnifique appartement de 2 chambres vous propose un parfait équilibre entre confort, tranquillité et accessibilité.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 Situé à proximité du \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Parc de la Gatineau\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", des écoles, commerces, restaurants, services essentiels et des principaux axes routiers.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce que vous offre le logement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🛏️ 2 chambres spacieuses et bien aménagées\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❄️ Air climatisé pour un confort optimal toute l’année\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌬️ Échangeur d’air\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚗 1 stationnement inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌞 Espace lumineux et fonctionnel\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ Secteur paisible et sécuritaire\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’aimer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Profitez d’un quartier dynamique où tout est à portée de main, tout en bénéficiant d’un environnement calme et agréable.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"⚡ Chauffage et électricité non inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🚭 Logement non-fumeur\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"❌ Aucun animal accepté (chiens interdits)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📋 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📆 Bail minimum de 12 mois\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🍽️ Possibilité de location avec électroménagers\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📸 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"italic\\\"}],\\\"text\\\":\\\"Les photos proviennent d’une unité modèle et peuvent différer du logement disponible.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dès aujourd’hui pour planifier votre visite!\\\"}]}]}\",{\"_23\":24,\"_25\":642,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":643,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_179\":416,\"_417\":418,\"_419\":420,\"_148\":421,\"_191\":422,\"_423\":53,\"_176\":424,\"_174\":425,\"_426\":51,\"_427\":53,\"_428\":429,\"_430\":431},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_313\":314,\"_315\":316,\"_317\":318,\"_319\":320,\"_321\":314,\"_322\":323,\"_324\":325},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[402],\"analysisProductsPrice\",{\"_402\":403,\"_404\":405,\"_406\":407,\"_408\":409,\"_410\":407,\"_411\":407,\"_412\":413,\"_414\":415},\"notifications\",{\"_384\":385},\"form\",{\"_377\":53,\"_378\":51,\"_379\":53,\"_380\":53,\"_381\":51,\"_382\":51,\"_383\":51},\"enabledSkus\",\"submissions\",{\"_327\":328,\"_329\":330,\"_331\":332,\"_333\":334,\"_27\":335,\"_336\":-5},\"agent\",{\"_326\":51},\"hideAgentNewSubmissionBtn\",\"all\",[363,364,365,366,367,368,369,373,374,375,376],\"steps\",[363,364,365,366,367,368,369],\"badges\",[353,354,355,356,357,358],\"statuses\",[347,337,339,341,343,345,348,349,350,351,352],{\"_337\":338,\"_339\":340,\"_341\":342,\"_343\":344,\"_345\":346},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_359\":337,\"_361\":338},{\"_359\":339,\"_361\":340},{\"_359\":341,\"_361\":342},{\"_359\":343,\"_361\":344},{\"_359\":345,\"_361\":346},{\"_359\":360,\"_361\":362},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_359\":347,\"_361\":-5,\"_370\":51},{\"_359\":337,\"_361\":338,\"_370\":53,\"_371\":51,\"_372\":51},{\"_359\":339,\"_361\":340,\"_370\":53,\"_371\":51,\"_372\":51},{\"_359\":341,\"_361\":342,\"_370\":53,\"_371\":51,\"_372\":51},{\"_359\":343,\"_361\":344,\"_370\":53,\"_371\":51,\"_372\":51},{\"_359\":345,\"_361\":346,\"_370\":53,\"_371\":51,\"_372\":51},{\"_359\":348,\"_361\":-5,\"_370\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_359\":349,\"_361\":-5,\"_370\":51},{\"_359\":350,\"_361\":-5,\"_370\":51},{\"_359\":351,\"_361\":-5,\"_370\":51},{\"_359\":352,\"_361\":-5,\"_370\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_324\":386,\"_387\":388,\"_17\":389,\"_390\":391},[399,400,401],\"manager\",[],[393,394,395,396,397,398],\"admin\",[392],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,[118,641],\"pricePerMonth\",[118,641],\"pricePerSqft\",[305,305],[305,640],[225,451],\"hasFloor\",[305,187],[305,639],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506],\"availableNeighborhoods\",[432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449],{\"_151\":226,\"_304\":118},{\"_151\":472,\"_304\":118},{\"_151\":471,\"_304\":118},{\"_151\":469,\"_304\":470},{\"_151\":468,\"_304\":118},{\"_151\":467,\"_304\":187},{\"_151\":465,\"_304\":466},{\"_151\":96,\"_304\":464},{\"_151\":462,\"_304\":463},{\"_151\":461,\"_304\":187},{\"_151\":460,\"_304\":118},{\"_151\":156,\"_304\":459},{\"_151\":458,\"_304\":118},{\"_151\":456,\"_304\":457},{\"_151\":455,\"_304\":187},{\"_151\":454,\"_304\":118},{\"_151\":452,\"_304\":453},{\"_151\":450,\"_304\":451},\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",5,\"Plateau \",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"2\",{\"_43\":637,\"_151\":638,\"_38\":288},{\"_43\":635,\"_151\":636,\"_38\":273},{\"_43\":631,\"_151\":632,\"_38\":284},{\"_43\":629,\"_151\":630,\"_38\":277},{\"_43\":627,\"_151\":628,\"_38\":268},{\"_43\":625,\"_151\":626,\"_38\":284},{\"_43\":620,\"_151\":621,\"_38\":622},{\"_43\":618,\"_151\":619,\"_38\":292},{\"_43\":616,\"_151\":617,\"_38\":277},{\"_43\":611,\"_151\":612,\"_38\":613},{\"_43\":607,\"_151\":608,\"_38\":513},{\"_43\":603,\"_151\":604,\"_38\":284},{\"_43\":599,\"_151\":600,\"_38\":553},{\"_43\":595,\"_151\":596,\"_38\":535},{\"_43\":590,\"_151\":591,\"_38\":592},{\"_43\":586,\"_151\":587,\"_38\":535},{\"_43\":581,\"_151\":582,\"_38\":583},{\"_43\":577,\"_151\":578,\"_38\":540},{\"_43\":572,\"_151\":573,\"_38\":574},{\"_43\":568,\"_151\":569,\"_38\":292},{\"_43\":564,\"_151\":565,\"_38\":292},{\"_43\":560,\"_151\":561,\"_38\":553},{\"_43\":556,\"_151\":557,\"_38\":558},{\"_43\":551,\"_151\":552,\"_38\":553},{\"_43\":547,\"_151\":548,\"_38\":513},{\"_43\":543,\"_151\":544,\"_38\":288},{\"_43\":538,\"_151\":539,\"_38\":540},{\"_43\":533,\"_151\":534,\"_38\":535},{\"_43\":528,\"_151\":529,\"_38\":530},{\"_43\":524,\"_151\":525,\"_38\":288},{\"_43\":520,\"_151\":521,\"_38\":277},{\"_43\":516,\"_151\":517,\"_38\":518},{\"_43\":511,\"_151\":512,\"_38\":513},{\"_43\":507,\"_151\":508,\"_38\":284},\"counter-type\",{\"_269\":509,\"_20\":510},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_269\":514,\"_20\":515},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_269\":519,\"_20\":519},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_269\":522,\"_20\":523},\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_269\":526,\"_20\":527},\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_269\":531,\"_20\":532},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_269\":536,\"_20\":537},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_269\":541,\"_20\":542},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_269\":545,\"_20\":546},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_269\":549,\"_20\":550},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_269\":554,\"_20\":555},\"lucide:washing-machine\",\"Dryer\",\"Sèche-linge\",\"gym\",{\"_269\":559,\"_20\":559},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_269\":562,\"_20\":563},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_269\":566,\"_20\":567},\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_269\":570,\"_20\":571},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_269\":575,\"_20\":576},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_269\":579,\"_20\":580},\"Oven\",\"Four\",\"refrigerator\",{\"_269\":584,\"_20\":585},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_269\":588,\"_20\":589},\"Cable\",\"Câble\",\"stove\",{\"_269\":593,\"_20\":594},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_269\":597,\"_20\":598},\"Fiber Internet\",\"Internet fibre\",\"washer\",{\"_269\":601,\"_20\":602},\"Washer\",\"Laveuse\",\"elevator\",{\"_269\":605,\"_20\":606},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_269\":609,\"_20\":610},\"Balcony\",\"Balcon\",\"electricity\",{\"_269\":614,\"_20\":615},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"electric-heating\",{\"_269\":281,\"_20\":282},\"cats-allowed\",{\"_269\":293,\"_20\":294},\"blinds\",{\"_269\":623,\"_20\":624},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_269\":285,\"_20\":286},\"washer-dryer-outlet\",{\"_269\":270,\"_20\":271},\"central-air-conditioning\",{\"_269\":278,\"_20\":279},\"dishwasher\",{\"_269\":633,\"_20\":634},\"Dishwasher\",\"Lave-vaisselle\",\"water\",{\"_269\":274,\"_20\":275},\"parking\",{\"_269\":289,\"_20\":290},4,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_359\":670,\"_43\":44,\"_671\":672,\"_48\":49,\"_33\":34,\"_27\":28,\"_673\":674,\"_23\":24,\"_29\":30,\"_315\":675,\"_676\":677,\"_678\":679,\"_680\":681,\"_40\":41,\"_682\":683,\"_684\":685,\"_42\":-5,\"_686\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_687\":-5,\"_688\":-5,\"_308\":309,\"_689\":690,\"_691\":692,\"_693\":694,\"_38\":39,\"_695\":696,\"_35\":-7,\"_697\":698,\"_36\":699,\"_700\":701,\"_702\":703,\"_25\":704,\"_313\":705,\"_706\":707,\"_708\":709},\"toast\",\"user\",{\"_656\":51,\"_657\":-5,\"_658\":-5,\"_659\":-5,\"_660\":-5,\"_661\":-5,\"_662\":-5,\"_663\":-5,\"_664\":-5,\"_665\":-5,\"_62\":-5,\"_64\":-5,\"_666\":-5,\"_146\":51,\"_667\":51,\"_668\":-5,\"_669\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":793},\"social\",{\"_790\":791,\"_792\":72},{\"_402\":403,\"_404\":405,\"_406\":407,\"_408\":409,\"_410\":407,\"_411\":407,\"_412\":413,\"_414\":415},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_787\":749,\"_345\":53,\"_788\":51,\"_789\":744},\"plan\",{\"_151\":768,\"_769\":72,\"_770\":771,\"_772\":773,\"_774\":775,\"_776\":777,\"_778\":305,\"_779\":780,\"_781\":305,\"_782\":783,\"_784\":464,\"_785\":786},\"metadata\",{\"_25\":704},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_761\":762,\"_676\":677,\"_763\":764,\"_40\":41,\"_765\":766,\"_67\":767},\"bucket\",{\"_758\":44,\"_759\":760},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_649\":755,\"_756\":757},\"tosHistory\",[744],{\"_718\":53,\"_719\":-7,\"_52\":53,\"_720\":51,\"_721\":51,\"_722\":53,\"_723\":53,\"_724\":51,\"_725\":51,\"_726\":-7,\"_727\":51,\"_728\":51,\"_729\":51,\"_730\":731,\"_732\":51,\"_326\":51,\"_733\":-7,\"_734\":-7,\"_735\":-7,\"_736\":51,\"_50\":51,\"_737\":51,\"_54\":51,\"_738\":739,\"_740\":53,\"_741\":51,\"_742\":51,\"_743\":51},\"disabledModules\",[],\"banner\",{\"_269\":716,\"_20\":717},{\"_103\":104,\"_714\":715,\"_101\":102,\"_105\":106},[402],\"payments\",{\"_710\":53,\"_711\":53,\"_712\":51,\"_713\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_745\":746,\"_747\":748,\"_708\":749,\"_345\":53,\"_343\":750,\"_751\":752,\"_753\":754},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_794\":795},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/9d61e2c9b925cbbe5d5f.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg?width=1200&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0004-0004.jpg?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 219 Rue De La Frégate, Gatineau</title><meta description=" 🔥 Beautiful Condo for Rent – Comfort &amp; Modern Living! 🔥 Discover this stunning condo located in a quiet and desirable residential neig..."/><meta property="og:title" content="Halfred | Apartment rentals | Appartement à louer 219 Rue De La Frégate, Gatineau"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content=" 🔥 Beautiful Condo for Rent – Comfort &amp; Modern Living! 🔥 Discover this stunning condo located in a quiet and desirable residential neig..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg"/><meta property="og:url" content="www.halfred.ca/listings/219-rue-de-la-fregate/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/listing-detail.page-D34BzzZ7.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="76ff7faa008be06974d18e054c58f470-e155433342c969de-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=76ff7faa008be06974d18e054c58f470,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.3591000304524875,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/219-rue-de-la-fregate/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg?width=800&amp;height=600&amp;quality=80" alt="maison de 2 chambres à louer par Halfred | Apartment rentals, 219 Rue De La Frégate, Gatineau" class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->1</div></div></div><div class="hidden sm:block"><div class="relative overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-96" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/219-rue-de-la-fregate/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg?width=1200&amp;height=600&amp;quality=80" alt="maison de 2 chambres à louer par Halfred | Apartment rentals, 219 Rue De La Frégate, Gatineau" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">219 Frégate</h1><p class="text-sm text-foreground-600">Gatineau (Gatineau)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p><b>1513$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 juillet</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_eiiiuatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description de l&#x27;annonce</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Magnifique condo à louer – Confort &amp; vie moderne!</strong> 🔥</p><p>Découvrez ce superbe condo situé dans un <strong>quartier résidentiel calme et recherché</strong>, à proximité des <strong>épiceries, restaurants, banques, pharmacies et de tous les services essentiels</strong>. Ce logement moderne offre le parfait équilibre entre <strong>confort, tranquillité et commodité</strong>.</p><p>🏡 <strong>Ce que vous offre le condo :</strong><br>• 🌬️ Échangeur d’air pour un confort optimal<br>• ❄️ Air climatisé<br>• 🍽️ Lave-vaisselle inclus<br>• 🚗 1 stationnement inclus (possibilité d’un 2e)<br>• Espace de vie moderne et fonctionnel</p><p>✨ <strong>Option supplémentaire :</strong><br>• Possibilité de location avec électroménagers</p><p>📍 <strong>Pourquoi vous allez l’adorer :</strong><br>Profitez d’un environnement paisible tout en restant près de tout ce dont vous avez besoin pour un quotidien simple et agréable.</p><p>📌 <strong>Informations importantes :</strong><br>• 📋 Enquête de crédit obligatoire<br>• 📆 Bail minimum de 12 mois</p><p>📞 <strong>Ne manquez pas cette opportunité!</strong><br>Contactez <strong>Halfred</strong> dès maintenant au <strong>819-593-3304</strong> pour planifier votre visite.</p></div></div></div></div><div class="border-b-[1px] pt-8 pb-8"><div class="space-y-3" data-sentry-component="UnitsSection" data-sentry-source-file="units-section.tsx"><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/219-rue-de-la-fregate/details/gallery?unit=84ee7e4a-5cfe-436d-90b9-d9997477c142" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0004-0004.jpg?width=96&amp;height=72&amp;quality=80" alt="Gatineau: appartement de 2 chambres à louer par Halfred | Apartment rentals" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">12 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->2</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1200<!-- --> <!-- -->pieds carrés</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->4</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1513<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1650<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/84ee7e4a-5cfe-436d-90b9-d9997477c142/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="pr-8"><div class="flex justify-center space-x-8 pb-4 lg:justify-start" data-sentry-component="WalkScore" data-sentry-source-file="walk-score.tsx"><div class="flex flex-col items-center space-y-2 "><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de mobilité</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3b8uatij5_" aria-label="Walk score of 38" aria-valuenow="38" aria-valuemin="0" aria-valuemax="100" aria-valuetext="38" role="progressbar" data-sentry-element="CircularProgress" data-sentry-source-file="walk-score.tsx"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-warning w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">38</span></div></div></div><div class="flex flex-col items-center space-y-2"><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de vélo</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3j8uatij5_" aria-label="Bike score of 35" aria-valuenow="35" aria-valuemin="0" aria-valuemax="100" aria-valuetext="35" role="progressbar"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-warning w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">35</span></div></div></div></div></div><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">219 Frégate</h1><p class="text-sm text-foreground-600">Gatineau (Gatineau)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p><b>1513$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1200<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 juillet</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_1qabeatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/listing-detail.page-D34BzzZ7.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicListingDetailPage": {
338 − "id": "PublicListingDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/:slug/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/listing-detail.page-D34BzzZ7.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/index-C5vezUBD.js",
354 − "/assets/seo.helpers-DUWcGrSj.js",
355 − "/assets/should-revalidate-for-modal-CqioTNup.js",
356 − "/assets/listing-card-vLpuwroq.js",
357 − "/assets/types-BlrrbiGM.js",
358 − "/assets/use-tenant-BWWCVgWC.js",
359 − "/assets/index-DoORTE4j.js",
360 − "/assets/icon-ChitaFhd.js",
361 − "/assets/chunk-T45N425O-C34bNx0L.js",
362 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
363 − "/assets/preload-helper-Djj1Qpxo.js",
364 − "/assets/index-yaZ7Ke31.js",
365 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
366 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
367 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
368 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
369 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
370 − "/assets/settings.types-DE5bLdHg.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicListingDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_604\":-5,\"_605\":-7,\"_606\":607,\"_608\":609,\"_19\":20,\"_17\":610,\"_611\":-5,\"_612\":613,\"_266\":267,\"_614\":-5,\"_615\":-5},\"PublicListingsLayoutPage\",{\"_17\":256,\"_257\":258,\"_259\":260,\"_261\":53,\"_262\":263,\"_264\":265,\"_266\":267,\"_268\":51,\"_269\":51,\"_270\":51},\"PublicListingDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":147,\"_148\":149,\"_89\":150,\"_151\":152,\"_77\":96,\"_153\":154,\"_155\":156,\"_108\":96,\"_111\":157,\"_109\":158,\"_33\":159,\"_160\":161,\"_162\":163,\"_164\":-5,\"_165\":-5,\"_166\":167,\"_168\":53,\"_169\":170,\"_171\":172},\"auth\",{\"_145\":53,\"_146\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136,\"_137\":138,\"_139\":140},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/219-rue-de-la-fregate/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",38,\"Car-Dependent\",\"updated\",\"2026-04-15 16:46:54.590190\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/219Rue-De-La-Fr%C3%A9gate/lat=45.499629/lng=-75.591159/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.4995,\"snapped_lon\",-75.591,\"transit\",{\"_33\":-5,\"_144\":-5,\"_142\":-5},\"bike\",{\"_33\":141,\"_142\":143},\"Somewhat Bikeable\",\"score\",35,\"summary\",\"loggedIn\",\"isStaff\",\"219-rue-de-la-fregate\",\"area\",1200,\"219 Rue De La Frégate\",\"name\",\"219 Frégate\",\"buildingId\",\"4133195f-fa0a-42f0-b258-e856c18a7245\",\"availabilty\",[\"D\",1782864000000],-75.591159,45.499629,{\"_227\":254,\"_20\":255},\"images\",[253],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[218,219,220,221,222,223,224],\"listed\",\"units\",[187],\"cardData\",{\"_43\":147,\"_89\":150,\"_77\":96,\"_108\":96,\"_109\":158,\"_111\":157,\"_173\":174,\"_175\":176,\"_177\":178,\"_148\":179,\"_180\":181,\"_182\":183},\"unitId\",\"84ee7e4a-5cfe-436d-90b9-d9997477c142\",\"bedrooms\",[186],\"bathrooms\",[118],[149],\"price\",[185],\"availability\",[184],\"2026-07-01T00:00:00.000Z\",1650,2,{\"_43\":174,\"_148\":149,\"_188\":-5,\"_180\":185,\"_175\":186,\"_177\":118,\"_189\":190,\"_160\":191,\"_168\":53,\"_192\":193,\"_194\":195,\"_196\":197,\"_182\":198,\"_199\":-5,\"_200\":-5,\"_201\":202,\"_36\":203},\"floor\",\"alias\",\"2\",[206,207,208,209,210,211,212,213,214,215,216,217],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1782864000000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_180\":204,\"_33\":205},[],1513,\"*** Prix promotionnelle pour un bail de 12 mois ***\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0004-0004.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0005-0005.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0006-0006.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0007-0007.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0008-0008.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0009-0009.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0010-0010.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0011-0011.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0012-0012.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0013-0013.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0014-0014.jpg\",\"/storage/v1/object/public/halfred/units/84ee7e4a-5cfe-436d-90b9-d9997477c142/0015-0015.jpg\",{\"_90\":249,\"_38\":250},{\"_90\":245,\"_38\":246},{\"_90\":241,\"_38\":242},{\"_90\":238,\"_38\":231},{\"_90\":234,\"_38\":235},{\"_90\":230,\"_38\":231},{\"_90\":225,\"_38\":226},{\"_227\":228,\"_20\":229},\"lucide:plug\",\"en\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_227\":232,\"_20\":233},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_227\":236,\"_20\":237},\"lucide:car\",\"Parking\",\"Stationnement\",{\"_227\":239,\"_20\":240},\"Dishwasher\",\"Lave-vaisselle\",{\"_227\":243,\"_20\":244},\"lucide:droplet\",\"Water\",\"Eau\",{\"_227\":247,\"_20\":248},\"lucide:thermometer-sun\",\"Central Air Conditioning\",\"Climatisation centrale\",{\"_227\":251,\"_20\":252},\"lucide:paw-print\",\"Cats Allowed\",\"Chats autorisés\",\"/storage/v1/object/public/halfred/buildings/4133195f-fa0a-42f0-b258-e856c18a7245/0001-0001.jpg\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null}},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Beautiful Condo for Rent – Comfort \u0026 Modern Living!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover this stunning condo located in a \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"quiet and desirable residential neighborhood\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", close to \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"grocery stores, restaurants, banks, pharmacies, and all essential services\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\". This modern unit offers the perfect balance of \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"comfort, convenience, and tranquility\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What this condo offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🌬️ Air exchanger for improved comfort and air quality\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❄️ Air conditioning\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🍽️ Dishwasher included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 parking space included (option for a second available)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Modern and functional living space designed for everyday comfort\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Additional option:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Appliances available for rent\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Enjoy a peaceful environment while staying close to everything you need for a simple and enjoyable lifestyle.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Minimum 12-month lease\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Don’t miss this opportunity!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" to schedule your visit.\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Magnifique condo à louer – Confort \u0026 vie moderne!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ce superbe condo situé dans un \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"quartier résidentiel calme et recherché\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", à proximité des \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"épiceries, restaurants, banques, pharmacies et de tous les services essentiels\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\". Ce logement moderne offre le parfait équilibre entre \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"confort, tranquillité et commodité\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce que vous offre le condo :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🌬️ Échangeur d’air pour un confort optimal\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❄️ Air climatisé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🍽️ Lave-vaisselle inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 stationnement inclus (possibilité d’un 2e)\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Espace de vie moderne et fonctionnel\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Option supplémentaire :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Possibilité de location avec électroménagers\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’adorer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Profitez d’un environnement paisible tout en restant près de tout ce dont vous avez besoin pour un quotidien simple et agréable.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Bail minimum de 12 mois\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ne manquez pas cette opportunité!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dès maintenant au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour planifier votre visite.\\\"}]}]}\",{\"_23\":24,\"_25\":602,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":603,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_180\":374,\"_375\":376,\"_377\":378,\"_148\":379,\"_188\":380,\"_381\":53,\"_177\":382,\"_175\":383,\"_384\":51,\"_385\":53,\"_386\":387,\"_388\":389},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_271\":272,\"_273\":274,\"_275\":276,\"_277\":278,\"_279\":272,\"_280\":281,\"_282\":283},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[360],\"analysisProductsPrice\",{\"_360\":361,\"_362\":363,\"_364\":365,\"_366\":367,\"_368\":365,\"_369\":365,\"_370\":371,\"_372\":373},\"notifications\",{\"_342\":343},\"form\",{\"_335\":53,\"_336\":51,\"_337\":53,\"_338\":53,\"_339\":51,\"_340\":51,\"_341\":51},\"enabledSkus\",\"submissions\",{\"_285\":286,\"_287\":288,\"_289\":290,\"_291\":292,\"_27\":293,\"_294\":-5},\"agent\",{\"_284\":51},\"hideAgentNewSubmissionBtn\",\"all\",[321,322,323,324,325,326,327,331,332,333,334],\"steps\",[321,322,323,324,325,326,327],\"badges\",[311,312,313,314,315,316],\"statuses\",[305,295,297,299,301,303,306,307,308,309,310],{\"_295\":296,\"_297\":298,\"_299\":300,\"_301\":302,\"_303\":304},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_317\":295,\"_319\":296},{\"_317\":297,\"_319\":298},{\"_317\":299,\"_319\":300},{\"_317\":301,\"_319\":302},{\"_317\":303,\"_319\":304},{\"_317\":318,\"_319\":320},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_317\":305,\"_319\":-5,\"_328\":51},{\"_317\":295,\"_319\":296,\"_328\":53,\"_329\":51,\"_330\":51},{\"_317\":297,\"_319\":298,\"_328\":53,\"_329\":51,\"_330\":51},{\"_317\":299,\"_319\":300,\"_328\":53,\"_329\":51,\"_330\":51},{\"_317\":301,\"_319\":302,\"_328\":53,\"_329\":51,\"_330\":51},{\"_317\":303,\"_319\":304,\"_328\":53,\"_329\":51,\"_330\":51},{\"_317\":306,\"_319\":-5,\"_328\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_317\":307,\"_319\":-5,\"_328\":51},{\"_317\":308,\"_319\":-5,\"_328\":51},{\"_317\":309,\"_319\":-5,\"_328\":51},{\"_317\":310,\"_319\":-5,\"_328\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_282\":344,\"_345\":346,\"_17\":347,\"_348\":349},[357,358,359],\"manager\",[],[351,352,353,354,355,356],\"admin\",[350],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,[118,601],\"pricePerMonth\",[118,601],\"pricePerSqft\",[263,263],[263,600],[599,409],\"hasFloor\",[263,186],[263,598],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465],\"availableNeighborhoods\",[390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407],{\"_151\":431,\"_262\":118},{\"_151\":190,\"_262\":118},{\"_151\":430,\"_262\":118},{\"_151\":428,\"_262\":429},{\"_151\":427,\"_262\":118},{\"_151\":426,\"_262\":186},{\"_151\":424,\"_262\":425},{\"_151\":96,\"_262\":423},{\"_151\":421,\"_262\":422},{\"_151\":420,\"_262\":186},{\"_151\":419,\"_262\":118},{\"_151\":417,\"_262\":418},{\"_151\":416,\"_262\":118},{\"_151\":414,\"_262\":415},{\"_151\":413,\"_262\":186},{\"_151\":412,\"_262\":118},{\"_151\":410,\"_262\":411},{\"_151\":408,\"_262\":409},\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",5,\"Plateau \",\"Plateau\",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"1\",{\"_43\":596,\"_151\":597,\"_38\":235},{\"_43\":594,\"_151\":595,\"_38\":242},{\"_43\":592,\"_151\":593,\"_38\":231},{\"_43\":590,\"_151\":591,\"_38\":246},{\"_43\":588,\"_151\":589,\"_38\":226},{\"_43\":586,\"_151\":587,\"_38\":231},{\"_43\":581,\"_151\":582,\"_38\":583},{\"_43\":579,\"_151\":580,\"_38\":250},{\"_43\":575,\"_151\":576,\"_38\":246},{\"_43\":570,\"_151\":571,\"_38\":572},{\"_43\":566,\"_151\":567,\"_38\":472},{\"_43\":562,\"_151\":563,\"_38\":231},{\"_43\":558,\"_151\":559,\"_38\":512},{\"_43\":554,\"_151\":555,\"_38\":494},{\"_43\":549,\"_151\":550,\"_38\":551},{\"_43\":545,\"_151\":546,\"_38\":494},{\"_43\":540,\"_151\":541,\"_38\":542},{\"_43\":536,\"_151\":537,\"_38\":499},{\"_43\":531,\"_151\":532,\"_38\":533},{\"_43\":527,\"_151\":528,\"_38\":250},{\"_43\":523,\"_151\":524,\"_38\":250},{\"_43\":519,\"_151\":520,\"_38\":512},{\"_43\":515,\"_151\":516,\"_38\":517},{\"_43\":510,\"_151\":511,\"_38\":512},{\"_43\":506,\"_151\":507,\"_38\":472},{\"_43\":502,\"_151\":503,\"_38\":235},{\"_43\":497,\"_151\":498,\"_38\":499},{\"_43\":492,\"_151\":493,\"_38\":494},{\"_43\":487,\"_151\":488,\"_38\":489},{\"_43\":483,\"_151\":484,\"_38\":235},{\"_43\":479,\"_151\":480,\"_38\":246},{\"_43\":475,\"_151\":476,\"_38\":477},{\"_43\":470,\"_151\":471,\"_38\":472},{\"_43\":466,\"_151\":467,\"_38\":231},\"counter-type\",{\"_227\":468,\"_20\":469},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_227\":473,\"_20\":474},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_227\":478,\"_20\":478},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_227\":481,\"_20\":482},\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_227\":485,\"_20\":486},\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_227\":490,\"_20\":491},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_227\":495,\"_20\":496},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_227\":500,\"_20\":501},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_227\":504,\"_20\":505},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_227\":508,\"_20\":509},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_227\":513,\"_20\":514},\"lucide:washing-machine\",\"Dryer\",\"Sèche-linge\",\"gym\",{\"_227\":518,\"_20\":518},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_227\":521,\"_20\":522},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_227\":525,\"_20\":526},\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_227\":529,\"_20\":530},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_227\":534,\"_20\":535},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_227\":538,\"_20\":539},\"Oven\",\"Four\",\"refrigerator\",{\"_227\":543,\"_20\":544},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_227\":547,\"_20\":548},\"Cable\",\"Câble\",\"stove\",{\"_227\":552,\"_20\":553},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_227\":556,\"_20\":557},\"Fiber Internet\",\"Internet fibre\",\"washer\",{\"_227\":560,\"_20\":561},\"Washer\",\"Laveuse\",\"elevator\",{\"_227\":564,\"_20\":565},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_227\":568,\"_20\":569},\"Balcony\",\"Balcon\",\"electricity\",{\"_227\":573,\"_20\":574},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"electric-heating\",{\"_227\":577,\"_20\":578},\"Electric Heating\",\"Chauffage Électrique\",\"cats-allowed\",{\"_227\":251,\"_20\":252},\"blinds\",{\"_227\":584,\"_20\":585},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_227\":232,\"_20\":233},\"washer-dryer-outlet\",{\"_227\":228,\"_20\":229},\"central-air-conditioning\",{\"_227\":247,\"_20\":248},\"dishwasher\",{\"_227\":239,\"_20\":240},\"water\",{\"_227\":243,\"_20\":244},\"parking\",{\"_227\":236,\"_20\":237},4,-1,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_317\":630,\"_43\":44,\"_631\":632,\"_48\":49,\"_33\":34,\"_27\":28,\"_633\":634,\"_23\":24,\"_29\":30,\"_273\":635,\"_636\":637,\"_638\":639,\"_640\":641,\"_40\":41,\"_642\":643,\"_644\":645,\"_42\":-5,\"_646\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_647\":-5,\"_648\":-5,\"_266\":267,\"_649\":650,\"_651\":652,\"_653\":654,\"_38\":39,\"_655\":656,\"_35\":-7,\"_657\":658,\"_36\":659,\"_660\":661,\"_662\":663,\"_25\":664,\"_271\":665,\"_666\":667,\"_668\":669},\"toast\",\"user\",{\"_616\":51,\"_617\":-5,\"_618\":-5,\"_619\":-5,\"_620\":-5,\"_621\":-5,\"_622\":-5,\"_623\":-5,\"_624\":-5,\"_625\":-5,\"_62\":-5,\"_64\":-5,\"_626\":-5,\"_146\":51,\"_627\":51,\"_628\":-5,\"_629\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":753},\"social\",{\"_750\":751,\"_752\":72},{\"_360\":361,\"_362\":363,\"_364\":365,\"_366\":367,\"_368\":365,\"_369\":365,\"_370\":371,\"_372\":373},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_747\":709,\"_303\":53,\"_748\":51,\"_749\":704},\"plan\",{\"_151\":728,\"_729\":72,\"_730\":731,\"_732\":733,\"_734\":735,\"_736\":737,\"_738\":263,\"_739\":740,\"_741\":263,\"_742\":743,\"_744\":423,\"_745\":746},\"metadata\",{\"_25\":664},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_721\":722,\"_636\":637,\"_723\":724,\"_40\":41,\"_725\":726,\"_67\":727},\"bucket\",{\"_718\":44,\"_719\":720},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_609\":715,\"_716\":717},\"tosHistory\",[704],{\"_678\":53,\"_679\":-7,\"_52\":53,\"_680\":51,\"_681\":51,\"_682\":53,\"_683\":53,\"_684\":51,\"_685\":51,\"_686\":-7,\"_687\":51,\"_688\":51,\"_689\":51,\"_690\":691,\"_692\":51,\"_284\":51,\"_693\":-7,\"_694\":-7,\"_695\":-7,\"_696\":51,\"_50\":51,\"_697\":51,\"_54\":51,\"_698\":699,\"_700\":53,\"_701\":51,\"_702\":51,\"_703\":51},\"disabledModules\",[],\"banner\",{\"_227\":676,\"_20\":677},{\"_103\":104,\"_674\":675,\"_101\":102,\"_105\":106},[360],\"payments\",{\"_670\":53,\"_671\":53,\"_672\":51,\"_673\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_705\":706,\"_707\":708,\"_668\":709,\"_303\":53,\"_301\":710,\"_711\":712,\"_713\":714},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_754\":755},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/a8092b4c8673a90f7b48.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=600&amp;height=400&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-2.jpg?width=600&amp;height=400&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/b2ab947f-f429-4e05-909c-9e41315435dd/0-36%20Rue%20Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/10__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/10__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/10__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/0__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/88ce5de4-950d-46de-8fc2-4785e82fe201/0-36%20Rue%20Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/0__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/0__03f5a8db-ccff-48b7-addc-09384b959fc5.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/10__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c7f62d0e-94a8-4677-8c6a-c746a86c372e/0__exterieur-2.jpg?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Cuisine.PNG?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/801863d9-c1b0-44ab-a264-8cd4499ac179/chambre-2.PNG?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/6e0fc15a-b20b-40c7-a207-40ad76b4b5ed/0__6e0fc15a-b20b-40c7-a207-40ad76b4b5ed.webp?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/4961ac6a-539a-4706-9cd0-5a2d61a8f0cc/1__4961ac6a-539a-4706-9cd0-5a2d61a8f0cc.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/10__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/11e05b3f-d716-4177-93bb-49e434df913f/0-Boulevard%20Du%20Plateau.PNG?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/10__2732fa76-9ef8-4372-901a-1b1741306383.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/10__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/10__0bad902b-caea-468a-b829-7a3dff9445d4.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/9__34175145-3809-4794-a8ce-61d95a2cba7d.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/66c431b7-3e52-45af-82cf-672d8c108b7f/0-Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/6924ce23-7c12-42fc-a781-292fa20ea555/4__6924ce23-7c12-42fc-a781-292fa20ea555.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/4473893f-c6d9-4079-bfb0-6a2819a3e9b0/0-Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/1__e958b224-d136-435e-8a7d-21c36dbee0ab.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/chambre-3.PNG?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/0__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/0__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/10__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/bc7470bb-44c7-4ff7-9028-f58f4c8810ae/0-Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/462564ed-124c-43ef-851b-cb0b3a55300b/0__462564ed-124c-43ef-851b-cb0b3a55300b.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/0__703cf079-9948-456c-a516-476283bd8f46.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/10__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/13__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp?width=96&amp;height=80&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><title>Halfred | Apartment rentals | Nuvo, Gatineau</title><meta description="✨ Contemporary All-Inclusive Apartments – Plateau Area ✨ Discover these stunning modern all-inclusive apartments located in a premium 4-st..."/><meta property="og:title" content="Halfred | Apartment rentals | Project Nuvo, Gatineau"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content="✨ Contemporary All-Inclusive Apartments – Plateau Area ✨ Discover these stunning modern all-inclusive apartments located in a premium 4-st..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png"/><meta property="og:url" content="www.halfred.ca/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/project-detail.page-2Kwf5ze5.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="3e90024c3f3d459462b0bcc6eb10736d-d335a051cbfc56e8-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=3e90024c3f3d459462b0bcc6eb10736d,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2Fproject%2F%3Aid%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.7373358259837997,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=800&amp;height=600&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres à Gatineau, Nuvo" class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a><a class="min-w-full snap-center block flex-shrink-0" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?index=1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-2.jpg?width=800&amp;height=600&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres à Gatineau, Nuvo" class="h-72 w-full object-cover" loading="lazy" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->2</div><div class="absolute bottom-3 left-1/2 flex -translate-x-1/2 gap-1"><div class="h-1.5 rounded-full transition-all duration-200 w-4 bg-white"></div><div class="h-1.5 rounded-full transition-all duration-200 w-1.5 bg-white/50"></div></div></div></div><div class="hidden sm:block"><div class="relative grid grid-cols-2 gap-2 overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-80" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=600&amp;height=400&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres à Gatineau, Nuvo" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a><a class="block overflow-hidden h-80" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?index=1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-2.jpg?width=600&amp;height=400&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres à Gatineau, Nuvo" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">Nuvo</h1><p class="text-sm text-foreground-600">Gatineau</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>1465$</b> à <b>2250$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>1<!-- --> <!-- --> - <!-- -->3<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>450<!-- --> <!-- --> - <!-- -->1104<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 août 2025</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-message-circle" aria-hidden="true" focusable="false" tabindex="-1"></span>Je suis intéressé par cette propriété</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description du projet</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>✨ <strong>Appartements contemporains tout inclus – Secteur du Plateau</strong> ✨</p><p>Découvrez ces magnifiques appartements modernes tout inclus situés dans un immeuble haut de gamme de 4 étages, conçu pour offrir un style de vie alliant confort, tranquillité et modernité. Grâce à sa structure en béton armé et ses plafonds de 9 pieds, profitez d’une excellente insonorisation ainsi que d’espaces lumineux et élégants.</p><p>🏙️ <strong>Emplacement exceptionnel – Plateau de Gatineau</strong></p><p>Situé au cœur du Plateau, à proximité immédiate du <strong>Parc Central, de l’Agora et de son village urbain, de la bibliothèque municipale</strong>, ainsi que de tous les services essentiels. À seulement <strong>10 minutes du centre-ville d’Ottawa</strong>, avec un accès rapide au transport en commun, écoles, cliniques médicales, restaurants, commerces et grandes surfaces.</p><p>🌳 Le secteur offre également :<br>• Parc à chiens<br>• Jardin communautaire<br>• Patinoire extérieure<br>• Jeux d’eau<br>• Aires de jeux pour enfants</p><p>🏡 <strong>Tout inclus pour un maximum de confort :</strong><br>✅ 5 électroménagers inclus<br>✅ Internet inclus<br>✅ Câble inclus<br>✅ Stationnement extérieur inclus<br>✅ Air climatisé<br>✅ Chauffage &amp; électricité inclus<br>✅ Espaces de rangement<br>✅ Stores aux fenêtres inclus</p><p>💡 <strong>Pourquoi vous allez adorer ce projet :</strong><br>Un environnement moderne et recherché offrant une qualité de vie exceptionnelle au cœur de l’un des secteurs les plus prisés de Gatineau.</p><p>📋 <strong>Conditions de location :</strong><br>• 📆 Bail minimum de 12 mois<br>• 📋 Enquête de crédit obligatoire<br>• 🐱🐶 Chats et chiens de moins de 15 lb acceptés<br>• 🚭 Complexe non-fumeur<br>• 📸 Photos modèles – les unités peuvent varier</p><p>📞 Contactez <strong>Halfred</strong> dès maintenant au <strong>819-593-3304</strong> pour plus d’informations ou pour planifier votre visite!</p></div></div></div></div><div class="pt-8 pb-8"><div class="space-y-6" data-sentry-component="BuildingsSection" data-sentry-source-file="buildings-inventory.tsx"><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?building=b2ab947f-f429-4e05-909c-9e41315435dd" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/b2ab947f-f429-4e05-909c-9e41315435dd/0-36%20Rue%20Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80" alt="34 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">34 Rue Marjorie-D.-Shackleton</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">34 Rue Marjorie-D.-Shackleton<!-- -->, Plateau<!-- -->, Gatineau</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">4 unités</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Chats autorisés</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Stationnement</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Sèche-linge</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Cuisinière</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Câble</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Eau</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Laveuse</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Stores</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Balcon</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->10<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=a8a65f89-5a4f-4039-9ad6-c41b7731c1a8" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/10__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp?width=96&amp;height=80&amp;quality=80" alt="103" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">12 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->103</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>877<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>Sous-sol</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->17</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1705<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">1850<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=f6b7d1b8-ec91-44ba-a824-f45ed2410de4" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/10__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp?width=96&amp;height=80&amp;quality=80" alt="201" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">10 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->201</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>3 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>962<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->19</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2137<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=95c702e7-e8a6-461a-b9a8-5733bb122d5c" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/10__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp?width=96&amp;height=80&amp;quality=80" alt="301" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">12 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->301</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>3 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1005<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>2e étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->17</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2137<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/95c702e7-e8a6-461a-b9a8-5733bb122d5c/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=e92e5692-5956-461c-8cba-0b5a1cdf24f7" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/0__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp?width=96&amp;height=80&amp;quality=80" alt="402" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">11 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->402</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1104<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->17</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1850<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2250<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/e92e5692-5956-461c-8cba-0b5a1cdf24f7/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?building=88ce5de4-950d-46de-8fc2-4785e82fe201" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/88ce5de4-950d-46de-8fc2-4785e82fe201/0-36%20Rue%20Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80" alt="36 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">36 Rue Marjorie-D.-Shackleton</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">36 Rue Marjorie-D.-Shackleton<!-- -->, Plateau<!-- -->, Gatineau</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">3 unités</span></div><span></span></div></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=51d1b37f-00c4-4278-b953-5ba4f845fe1c" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/0__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp?width=96&amp;height=80&amp;quality=80" alt="102" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">10 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->102</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>877<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>Sous-sol</span></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">1882<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/51d1b37f-00c4-4278-b953-5ba4f845fe1c/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=03f5a8db-ccff-48b7-addc-09384b959fc5" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/0__03f5a8db-ccff-48b7-addc-09384b959fc5.webp?width=96&amp;height=80&amp;quality=80" alt="201" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">11 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->201</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>895<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1750<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">1950<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/03f5a8db-ccff-48b7-addc-09384b959fc5/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=c641d56e-5043-4e5c-899f-e6b4e4337c6a" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/10__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp?width=96&amp;height=80&amp;quality=80" alt="202" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">12 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->202</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>877<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->10</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1750<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">1950<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/c641d56e-5043-4e5c-899f-e6b4e4337c6a/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?building=c7f62d0e-94a8-4677-8c6a-c746a86c372e" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/c7f62d0e-94a8-4677-8c6a-c746a86c372e/0__exterieur-2.jpg?width=500&amp;height=250&amp;quality=80" alt="38 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">38 Rue Marjorie-D.-Shackleton</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">38 Rue Marjorie-D.-Shackleton<!-- -->, Plateau <!-- -->, Gatineau</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">2 unités</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Stationnement</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Sèche-linge</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Cuisinière</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Câble</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Eau</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Laveuse</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Stores</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Lave-vaisselle</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Réservoir d&#x27;eau</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->7<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=1b63fc0c-b87f-402b-bcf2-b61f250c78d8" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Cuisine.PNG?width=96&amp;height=80&amp;quality=80" alt="101" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">10 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->101</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>474<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->15</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">1465<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=801863d9-c1b0-44ab-a264-8cd4499ac179" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/801863d9-c1b0-44ab-a264-8cd4499ac179/chambre-2.PNG?width=96&amp;height=80&amp;quality=80" alt="302" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">7 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->302</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>942<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->14</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2050<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/801863d9-c1b0-44ab-a264-8cd4499ac179/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?building=6e0fc15a-b20b-40c7-a207-40ad76b4b5ed" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/6e0fc15a-b20b-40c7-a207-40ad76b4b5ed/0__6e0fc15a-b20b-40c7-a207-40ad76b4b5ed.webp?width=500&amp;height=250&amp;quality=80" alt="" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground"></h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">659 Boulevard Du Plateau<!-- -->, Plateau<!-- -->, Gatineau</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">2 unités</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Internet par câble</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Internet fibre</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Casiers/espace de rangement</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Chauffage Électrique</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Climatisation centrale</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Chats autorisés</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Sèche-linge</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Cuisinière</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Câble</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->10<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=4961ac6a-539a-4706-9cd0-5a2d61a8f0cc" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/4961ac6a-539a-4706-9cd0-5a2d61a8f0cc/1__4961ac6a-539a-4706-9cd0-5a2d61a8f0cc.webp?width=96&amp;height=80&amp;quality=80" alt="101" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->101</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 sept. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>450<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->17</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1295<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">1533<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/4961ac6a-539a-4706-9cd0-5a2d61a8f0cc/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=96f2500e-08d5-4d2f-95bc-0c25940f7d7b" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/10__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?width=96&amp;height=80&amp;quality=80" alt="103" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">11 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->103</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 sept. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>484<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->17</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1595<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">1890<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?building=11e05b3f-d716-4177-93bb-49e434df913f" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/11e05b3f-d716-4177-93bb-49e434df913f/0-Boulevard%20Du%20Plateau.PNG?width=500&amp;height=250&amp;quality=80" alt="655 Boulevard Du Plateau" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">655 Boulevard Du Plateau</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">655 Boulevard Du Plateau<!-- -->, Plateau<!-- -->, Gatineau</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">4 unités</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Eau</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Laveuse</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Stores</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Balcon</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Prise lave-linge/sèche-linge</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Lave-vaisselle</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Réservoir d&#x27;eau</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Buanderie</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Électricité</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Réfrigérateur</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->11<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=2732fa76-9ef8-4372-901a-1b1741306383" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/10__2732fa76-9ef8-4372-901a-1b1741306383.webp?width=96&amp;height=80&amp;quality=80" alt="103" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">13 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->103</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 sept. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>886<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>Sous-sol</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->18</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1595<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">1850<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/2732fa76-9ef8-4372-901a-1b1741306383/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=6a28ed43-efd3-42fa-a919-bd2114bea2d3" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/10__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?width=96&amp;height=80&amp;quality=80" alt="201" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">13 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->201</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 sept. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>3 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>988<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->19</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1795<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">2137<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/6a28ed43-efd3-42fa-a919-bd2114bea2d3/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=0bad902b-caea-468a-b829-7a3dff9445d4" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/10__0bad902b-caea-468a-b829-7a3dff9445d4.webp?width=96&amp;height=80&amp;quality=80" alt="301" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">12 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->301</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 oct. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>3 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1029<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>2e étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->18</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2137<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/0bad902b-caea-468a-b829-7a3dff9445d4/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=34175145-3809-4794-a8ce-61d95a2cba7d" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/9__34175145-3809-4794-a8ce-61d95a2cba7d.webp?width=96&amp;height=80&amp;quality=80" alt="302" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">18 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->302</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 oct. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>953<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->20</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">1997<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/34175145-3809-4794-a8ce-61d95a2cba7d/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?building=66c431b7-3e52-45af-82cf-672d8c108b7f" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/66c431b7-3e52-45af-82cf-672d8c108b7f/0-Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80" alt="10 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">10 Rue Marjorie-D.-Shackleton</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">10 Rue Marjorie-D.-Shackleton<!-- -->, Plateau<!-- -->, Gatineau</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">1 unité</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Stationnement</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Sèche-linge</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Cuisinière</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Câble</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Eau</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Laveuse</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Stores</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Balcon</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Micro-ondes</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->9<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=6924ce23-7c12-42fc-a781-292fa20ea555" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/6924ce23-7c12-42fc-a781-292fa20ea555/4__6924ce23-7c12-42fc-a781-292fa20ea555.webp?width=96&amp;height=80&amp;quality=80" alt="101" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">6 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->101</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>895<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->16</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">1882<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/6924ce23-7c12-42fc-a781-292fa20ea555/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?building=4473893f-c6d9-4079-bfb0-6a2819a3e9b0" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/4473893f-c6d9-4079-bfb0-6a2819a3e9b0/0-Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80" alt="8 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground">8 Rue Marjorie-D.-Shackleton</h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">8 Rue Marjorie-D.-Shackleton<!-- -->, Plateau<!-- -->, Gatineau</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">5 unités</span></div><span></span></div></div><div class="mt-3 ml-6 flex flex-wrap items-center gap-1.5"><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Chauffage Électrique</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Climatisation centrale</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Buanderie</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Électricité</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Réfrigérateur</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Internet par câble</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Internet fibre</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Casiers/espace de rangement</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Chats autorisés</span></span><span class="flex items-center gap-1.5 rounded-full bg-default-100 px-2.5 py-1 text-xs text-foreground-600"><span></span><span class="hidden sm:inline">Four</span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-2 text-xs text-primary-500">+<!-- -->10<!-- --> <!-- -->plus</button></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=e958b224-d136-435e-8a7d-21c36dbee0ab" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/1__e958b224-d136-435e-8a7d-21c36dbee0ab.webp?width=96&amp;height=80&amp;quality=80" alt="102" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">9 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->102</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>490<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->17</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">1533<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/e958b224-d136-435e-8a7d-21c36dbee0ab/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=261d5b96-1a13-4b98-9570-c3798edf15a1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/chambre-3.PNG?width=96&amp;height=80&amp;quality=80" alt="103" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">9 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->103</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>877<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->18</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">1859<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/261d5b96-1a13-4b98-9570-c3798edf15a1/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=77ccbc2b-b5ff-4b2b-a167-96b8543c0f82" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/0__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?width=96&amp;height=80&amp;quality=80" alt="201" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">8 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->201</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>3 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>962<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>1er étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->17</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2137<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/0__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?width=96&amp;height=80&amp;quality=80" alt="301" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">12 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->301</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 nov. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>3 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1005<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>2e étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->17</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2137<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=ce5449ee-503a-4dcf-8d1d-47926c921878" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/10__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?width=96&amp;height=80&amp;quality=80" alt="302" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">19 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->302</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 sept. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>942<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-layers h-3.5 w-3.5"></span>2e étage</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->18</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">2137<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/ce5449ee-503a-4dcf-8d1d-47926c921878/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div><div class="overflow-hidden rounded-xl border border-default-200 bg-content1 shadow-sm"><a class="relative flex h-36 sm:h-44 gap-0.5 overflow-hidden" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?building=bc7470bb-44c7-4ff7-9028-f58f4c8810ae" data-discover="true"><div class="relative flex-1 overflow-hidden w-full"><img src="/storage/v1/render/image/public/halfred/buildings/bc7470bb-44c7-4ff7-9028-f58f4c8810ae/0-Marjorie-D-Shackleton.jpg?width=500&amp;height=250&amp;quality=80" alt="" class="h-full w-full object-cover transition-transform hover:scale-105" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></div></a><button type="button" class="w-full p-4 text-left cursor-pointer transition-colors hover:bg-default-50"><div class="flex items-start justify-between gap-3"><div class="min-w-0"><div class="flex items-center gap-2"><span class="icon-lucide-building h-4 w-4 text-primary-500"></span><h3 class="text-lg font-semibold text-foreground"></h3></div><p class="text-sm text-foreground-500 mt-0.5 ml-6">40 Rue Marjorie-D.-Shackleton<!-- -->, Plateau<!-- -->, Gatineau</p></div><div class="flex items-center gap-2 flex-shrink-0"><div class="relative max-w-fit min-w-min inline-flex items-center justify-between box-border whitespace-nowrap px-1 h-6 text-tiny rounded-full bg-primary/20 text-primary-600"><span class="flex-1 text-inherit font-normal px-1">4 unités</span></div><span></span></div></div></button><div class="border-t border-default-200"><div class="px-4 py-2 bg-default-50"><span class="text-xs font-medium text-foreground-500 uppercase tracking-wider flex items-center gap-1.5"><span class="icon-lucide-door-open h-3 w-3"></span>Unités disponibles</span></div><div class="divide-y divide-default-100 overflow-y-auto" style="max-height:550px"><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=462564ed-124c-43ef-851b-cb0b3a55300b" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/462564ed-124c-43ef-851b-cb0b3a55300b/0__462564ed-124c-43ef-851b-cb0b3a55300b.webp?width=96&amp;height=80&amp;quality=80" alt="101" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">5 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->101</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>474<!-- --> <!-- -->pieds carrés</span></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">1533<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/462564ed-124c-43ef-851b-cb0b3a55300b/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=703cf079-9948-456c-a516-476283bd8f46" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/0__703cf079-9948-456c-a516-476283bd8f46.webp?width=96&amp;height=80&amp;quality=80" alt="102" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">9 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->102</span></div></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>490<!-- --> <!-- -->pieds carrés</span></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-foreground text-sm sm:text-base">1533<!-- -->$<!-- --> <span class="text-foreground-500 font-normal text-xs">/ <!-- -->mois</span></span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/703cf079-9948-456c-a516-476283bd8f46/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=50bb7aea-86c7-4c39-b75e-28959bdc51d4" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/10__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?width=96&amp;height=80&amp;quality=80" alt="103" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">13 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->103</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible le 1 sept. 2026</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>877<!-- --> <!-- -->pieds carrés</span><span class="text-foreground-300 hidden sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><span class="flex items-center justify-center h-6 w-6 rounded-full bg-default-100 hover:bg-default-200 transition-colors cursor-default"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->13</button></div></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1705<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">1859<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/50bb7aea-86c7-4c39-b75e-28959bdc51d4/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="transition-colors hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="flex-shrink-0"><a class="relative block w-fit group" href="/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=2944bcf7-da84-4a37-9bd0-a75d0aa852c1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/13__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp?width=96&amp;height=80&amp;quality=80" alt="202" class="h-20 w-24 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute right-1 bottom-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">12 photos</span></a></div><div class="flex flex-1 flex-col justify-between min-w-0"><div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2 min-w-0"><div class="flex gap-2"><div class="flex items-center gap-2 flex-wrap"><span class="font-semibold text-foreground text-sm sm:text-base truncate">#<!-- -->202</span></div><button type="button" class="flex items-center justify-center gap-2 bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100 cursor-pointer rounded-md"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="text-xs text-foreground-400 mt-0.5 flex items-center gap-1"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="flex items-center gap-3 mt-2 flex-wrap text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>877<!-- --> <!-- -->pieds carrés</span></div></div><div class="flex flex-col items-end gap-2"><div class="text-right flex-shrink-0"><span class="font-bold text-success-600 text-sm sm:text-base">1750<!-- -->$</span><span class="text-foreground-500 text-xs"> <!-- -->/ <!-- -->mois</span><span class="text-foreground-400 line-through text-xs block">1945<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div></div></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="pr-8"><div class="flex justify-center space-x-8 pb-4 lg:justify-start" data-sentry-component="WalkScore" data-sentry-source-file="walk-score.tsx"><div class="flex flex-col items-center space-y-2 "><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de mobilité</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3b8uitij5_" aria-label="Walk score of 0" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" aria-valuetext="0" role="progressbar" data-sentry-element="CircularProgress" data-sentry-source-file="walk-score.tsx"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-danger w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">0</span></div></div></div></div></div><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="project-details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">Nuvo</h1><p class="text-sm text-foreground-600">Gatineau</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>1465$</b> à <b>2250$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>1<!-- --> <!-- --> - <!-- -->3<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>450<!-- --> <!-- --> - <!-- -->1104<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 août 2025</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-message-circle" aria-hidden="true" focusable="false" tabindex="-1"></span>Je suis intéressé par cette propriété</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/project-detail.page-2Kwf5ze5.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicProjectDetailPage": {
338 − "id": "PublicProjectDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/project/:id/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/project-detail.page-2Kwf5ze5.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/seo.helpers-DUWcGrSj.js",
354 − "/assets/should-revalidate-for-modal-CqioTNup.js",
355 − "/assets/listing-card-vLpuwroq.js",
356 − "/assets/types-BlrrbiGM.js",
357 − "/assets/use-tenant-BWWCVgWC.js",
358 − "/assets/index-DoORTE4j.js",
359 − "/assets/icon-ChitaFhd.js",
360 − "/assets/chunk-T45N425O-C34bNx0L.js",
361 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
362 − "/assets/preload-helper-Djj1Qpxo.js",
363 − "/assets/index-yaZ7Ke31.js",
364 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
365 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
366 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
367 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
368 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
369 − "/assets/settings.types-DE5bLdHg.js",
370 − "/assets/index-C5vezUBD.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicProjectDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_1851\":-5,\"_1852\":-7,\"_1853\":1854,\"_1855\":1856,\"_19\":20,\"_17\":1857,\"_1858\":-5,\"_1859\":1860,\"_1560\":1561,\"_1861\":-5,\"_1862\":-5},\"PublicListingsLayoutPage\",{\"_17\":1551,\"_1552\":1553,\"_1554\":1555,\"_1556\":53,\"_1557\":120,\"_1558\":1559,\"_1560\":1561,\"_1562\":51,\"_1563\":51,\"_1564\":51},\"PublicProjectDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":139,\"_140\":141,\"_142\":143,\"_89\":144,\"_145\":146,\"_77\":96,\"_147\":148,\"_108\":72,\"_111\":149,\"_109\":150,\"_33\":151,\"_152\":153,\"_154\":144,\"_155\":156,\"_157\":53,\"_158\":159,\"_160\":-5,\"_161\":-5,\"_162\":51,\"_163\":164,\"_165\":166,\"_167\":168},\"auth\",{\"_137\":53,\"_138\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",0,\"Car-Dependent\",\"updated\",\"2026-07-06 13:33:54.460731\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/10Rue-Marjorie.dash.D..dash.Shackleton/lat=-75.804521/lng=45.428546/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",-75.804,\"snapped_lon\",45.429,\"loggedIn\",\"isStaff\",\"63a3366d-bd30-45af-af68-d25143fbf8e9\",\"area\",877,\"availabilty\",[\"D\",1793491200000],\"Nuvo\",\"buildingStreet\",\"10 Rue Marjorie-D.-Shackleton\",\"buildingId\",\"eb68e600-e815-4e3a-8401-7d0f648af422\",45.428546,-75.804521,{\"_264\":1549,\"_20\":1550},\"images\",[1547,1548],\"projectName\",\"buildingFeatures\",[],\"listed\",\"automatedApplyMode\",\"lead_form\",\"leadFormConfig\",\"featureSiteSubdomain\",\"featureSiteEnabled\",\"units\",[1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245],\"buildings\",[186,187,188,189,190,191,192,193],\"cardData\",{\"_43\":139,\"_89\":144,\"_77\":96,\"_108\":72,\"_109\":150,\"_111\":149,\"_169\":-5,\"_170\":171,\"_172\":173,\"_140\":174,\"_175\":176,\"_177\":178},\"unitId\",\"bedrooms\",[118,185],\"bathrooms\",[118],[183,184],\"price\",[181,182],\"availability\",[179,180],[\"D\",1754006400000],[\"D\",1793491200000],1465,2250,450,1104,3,{\"_147\":1081,\"_195\":1082,\"_196\":1083,\"_145\":1082,\"_199\":96,\"_200\":201,\"_202\":-5,\"_36\":1084,\"_163\":1085},{\"_147\":996,\"_195\":997,\"_196\":998,\"_145\":997,\"_199\":96,\"_200\":201,\"_202\":-5,\"_36\":999,\"_163\":1000},{\"_147\":909,\"_195\":910,\"_196\":911,\"_145\":910,\"_199\":96,\"_200\":912,\"_202\":-5,\"_36\":913,\"_163\":914},{\"_147\":830,\"_195\":72,\"_196\":831,\"_145\":832,\"_199\":96,\"_200\":201,\"_202\":-5,\"_36\":833,\"_163\":834},{\"_147\":633,\"_195\":634,\"_196\":635,\"_145\":634,\"_199\":96,\"_200\":201,\"_202\":-5,\"_36\":636,\"_163\":637},{\"_147\":577,\"_195\":146,\"_196\":578,\"_145\":146,\"_199\":96,\"_200\":201,\"_202\":-5,\"_36\":579,\"_163\":580},{\"_147\":366,\"_195\":367,\"_196\":368,\"_145\":367,\"_199\":96,\"_200\":201,\"_202\":-5,\"_36\":369,\"_163\":370},{\"_147\":194,\"_195\":72,\"_196\":197,\"_145\":198,\"_199\":96,\"_200\":201,\"_202\":-5,\"_36\":203,\"_163\":204},\"bc7470bb-44c7-4ff7-9028-f58f4c8810ae\",\"buildingName\",\"buildingImages\",[365],\"40 Rue Marjorie-D.-Shackleton\",\"buildingCity\",\"buildingNeighborhood\",\"Plateau\",\"buildingAutomatedApplyMode\",[],[205,206,207,208],{\"_43\":354,\"_140\":355,\"_210\":-5,\"_175\":340,\"_170\":118,\"_172\":118,\"_213\":356,\"_152\":357,\"_177\":358,\"_157\":53,\"_217\":194,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":359},{\"_43\":338,\"_140\":339,\"_210\":-5,\"_175\":340,\"_170\":118,\"_172\":118,\"_213\":341,\"_152\":342,\"_177\":343,\"_157\":53,\"_217\":194,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":344},{\"_43\":239,\"_140\":141,\"_210\":-5,\"_175\":240,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":242,\"_177\":243,\"_157\":53,\"_217\":194,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":244,\"_36\":245},{\"_43\":209,\"_140\":141,\"_210\":-5,\"_175\":211,\"_170\":212,\"_172\":118,\"_213\":214,\"_152\":215,\"_177\":216,\"_157\":53,\"_217\":194,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":223,\"_36\":224},\"2944bcf7-da84-4a37-9bd0-a75d0aa852c1\",\"floor\",1945,2,\"alias\",\"202\",[227,228,229,230,231,232,233,234,235,236,237,238],[\"D\",1754006400000],\"building_id\",\"floor_plan_name\",\"floor_plan_image_path\",\"listing_type\",\"Unit\",\"promotion\",{\"_175\":225,\"_33\":226},[],1750,\"** prix promotionnelle pour un bail de 24mois **\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/13__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/10__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/11__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/12__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/1__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/3__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/4__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/5__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/6__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/7__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/8__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"/storage/v1/object/public/halfred/units/2944bcf7-da84-4a37-9bd0-a75d0aa852c1/9__2944bcf7-da84-4a37-9bd0-a75d0aa852c1.webp\",\"50bb7aea-86c7-4c39-b75e-28959bdc51d4\",1859,\"103\",[325,326,327,328,329,330,331,332,333,334,335,336,337],[\"D\",1788220800000],{\"_175\":323,\"_33\":324},[246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261],{\"_90\":319,\"_38\":320},{\"_90\":315,\"_38\":316},{\"_90\":312,\"_38\":305},{\"_90\":308,\"_38\":309},{\"_90\":304,\"_38\":305},{\"_90\":300,\"_38\":301},{\"_90\":297,\"_38\":276},{\"_90\":294,\"_38\":287},{\"_90\":290,\"_38\":291},{\"_90\":286,\"_38\":287},{\"_90\":282,\"_38\":283},{\"_90\":279,\"_38\":263},{\"_90\":275,\"_38\":276},{\"_90\":271,\"_38\":272},{\"_90\":267,\"_38\":268},{\"_90\":262,\"_38\":263},{\"_264\":265,\"_20\":266},\"lucide:wifi\",\"en\",\"Cable Internet\",\"Internet par câble\",{\"_264\":269,\"_20\":270},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",{\"_264\":273,\"_20\":274},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",{\"_264\":277,\"_20\":278},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_264\":280,\"_20\":281},\"Cable\",\"Câble\",{\"_264\":284,\"_20\":285},\"lucide:soup\",\"Stove\",\"Cuisinière\",{\"_264\":288,\"_20\":289},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",{\"_264\":292,\"_20\":293},\"lucide:fence\",\"Balcony\",\"Balcon\",{\"_264\":295,\"_20\":296},\"Central Air Conditioning\",\"Climatisation centrale\",{\"_264\":298,\"_20\":299},\"Dishwasher\",\"Lave-vaisselle\",{\"_264\":302,\"_20\":303},\"lucide:blinds\",\"Blinds\",\"Stores\",{\"_264\":306,\"_20\":307},\"lucide:washing-machine\",\"Washer\",\"Laveuse\",{\"_264\":310,\"_20\":311},\"lucide:droplet\",\"Water\",\"Eau\",{\"_264\":313,\"_20\":314},\"Dryer\",\"Sèche-linge\",{\"_264\":317,\"_20\":318},\"lucide:car\",\"Parking\",\"Stationnement\",{\"_264\":321,\"_20\":322},\"lucide:microwave\",\"Oven\",\"Four\",1705,\"Pour un bail de 24 mois\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/10__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=449c041d-0467-49ac-ae44-61db2bb1144e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/11__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=777fcd97-2e87-4304-b917-581277709d07\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/12__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=b6c67814-081b-47ce-9333-4a34b953cc36\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/13__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=d5a84bc7-06c6-485a-82d5-e1080e0826db\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/1__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=e30e72aa-4c49-417a-a6ea-e78f5a1a3b8f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/2__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=5c50f31d-78d6-4d00-a121-f03af32d0fe5\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/3__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=becae30e-2f21-4ca1-a3cf-4474437fa30a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/4__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=46963084-e232-4d8a-bcc1-0a19dff10768\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/5__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=b4c93c7d-0762-49ba-a9ae-5e480a3a58ce\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/6__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=f4f38182-9986-4a2e-af84-2b8ed591e904\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/7__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=4464f6b1-d3b9-4a9e-ab23-1696cfb45c5a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/8__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=bbf0259b-29c8-4a72-a964-ff4d5b2ec380\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/50bb7aea-86c7-4c39-b75e-28959bdc51d4/9__50bb7aea-86c7-4c39-b75e-28959bdc51d4.webp?version=a4a9c229-ed42-4532-aa33-4f846acd63d9\",\"703cf079-9948-456c-a516-476283bd8f46\",490,1533,\"102\",[345,346,347,348,349,350,351,352,353],[\"D\",1780272000000],[],\"/storage/v1/object/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/0__703cf079-9948-456c-a516-476283bd8f46.webp\",\"/storage/v1/object/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/7__703cf079-9948-456c-a516-476283bd8f46.webp\",\"/storage/v1/object/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/5__703cf079-9948-456c-a516-476283bd8f46.webp\",\"/storage/v1/object/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/6__703cf079-9948-456c-a516-476283bd8f46.webp\",\"/storage/v1/object/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/8__703cf079-9948-456c-a516-476283bd8f46.webp\",\"/storage/v1/object/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/1__703cf079-9948-456c-a516-476283bd8f46.webp\",\"/storage/v1/object/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/4__703cf079-9948-456c-a516-476283bd8f46.webp\",\"/storage/v1/object/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/10__703cf079-9948-456c-a516-476283bd8f46.webp\",\"/storage/v1/object/public/halfred/units/703cf079-9948-456c-a516-476283bd8f46/9__703cf079-9948-456c-a516-476283bd8f46.webp\",\"462564ed-124c-43ef-851b-cb0b3a55300b\",474,\"101\",[360,361,362,363,364],[\"D\",1785542400000],[],\"/storage/v1/object/public/halfred/units/462564ed-124c-43ef-851b-cb0b3a55300b/0__462564ed-124c-43ef-851b-cb0b3a55300b.webp\",\"/storage/v1/object/public/halfred/units/462564ed-124c-43ef-851b-cb0b3a55300b/1__462564ed-124c-43ef-851b-cb0b3a55300b.webp\",\"/storage/v1/object/public/halfred/units/462564ed-124c-43ef-851b-cb0b3a55300b/4__462564ed-124c-43ef-851b-cb0b3a55300b.webp\",\"/storage/v1/object/public/halfred/units/462564ed-124c-43ef-851b-cb0b3a55300b/5__462564ed-124c-43ef-851b-cb0b3a55300b.webp\",\"/storage/v1/object/public/halfred/units/462564ed-124c-43ef-851b-cb0b3a55300b/6__462564ed-124c-43ef-851b-cb0b3a55300b.webp\",\"/storage/v1/object/public/halfred/buildings/bc7470bb-44c7-4ff7-9028-f58f4c8810ae/0-Marjorie-D-Shackleton.jpg\",\"4473893f-c6d9-4079-bfb0-6a2819a3e9b0\",\"8 Rue Marjorie-D.-Shackleton\",[576],[532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551],[371,372,373,374,375],{\"_43\":519,\"_140\":339,\"_210\":-5,\"_175\":340,\"_170\":118,\"_172\":118,\"_213\":341,\"_152\":520,\"_177\":521,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":522},{\"_43\":469,\"_140\":141,\"_210\":-5,\"_175\":240,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":470,\"_177\":471,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":472},{\"_43\":455,\"_140\":456,\"_210\":118,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":457,\"_152\":458,\"_177\":459,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":460},{\"_43\":437,\"_140\":438,\"_210\":212,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":439,\"_152\":440,\"_177\":441,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":442},{\"_43\":376,\"_140\":377,\"_210\":212,\"_175\":378,\"_170\":212,\"_172\":118,\"_213\":379,\"_152\":380,\"_177\":381,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":382},\"ce5449ee-503a-4dcf-8d1d-47926c921878\",942,2137,\"302\",[418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436],[\"D\",1788220800000],[383,384,385,386,387,388,389,390,391,392,393,394,395,396],{\"_90\":415,\"_38\":412},{\"_90\":411,\"_38\":412},{\"_90\":410,\"_38\":320},{\"_90\":409,\"_38\":316},{\"_90\":408,\"_38\":305},{\"_90\":407,\"_38\":305},{\"_90\":406,\"_38\":301},{\"_90\":405,\"_38\":276},{\"_90\":404,\"_38\":287},{\"_90\":403,\"_38\":263},{\"_90\":402,\"_38\":272},{\"_90\":401,\"_38\":268},{\"_90\":400,\"_38\":263},{\"_90\":397,\"_38\":287},{\"_264\":398,\"_20\":399},\"Electric Heating\",\"Chauffage Électrique\",{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":280,\"_20\":281},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},{\"_264\":413,\"_20\":414},\"lucide:paw-print\",\"Small Dogs Allowed\",\"Petits chiens autorisés\",{\"_264\":416,\"_20\":417},\"Cats Allowed\",\"Chats autorisés\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/10__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=499b496d-93d2-497e-bb4c-b9e2dff30329\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/11__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=51037511-4ae6-4b70-bf7d-053c208ff90e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/12__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=7976b41d-466e-4866-8be8-beb6e043156a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/13__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=bf796a4a-ca04-4bbc-ace3-5fc2dbb45a36\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/14__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=fcf707f1-91db-40fc-82ed-df5b5cdda6a4\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/15__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=85b238c2-98db-40cb-974f-d4cf0b732cf8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/16__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=175ec931-c896-4c5d-b10a-142219541abc\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/17__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=f9492738-2d6d-4cca-99d1-4b34a05217e7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/18__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=8a4d6b5a-886a-47a6-8e40-75e902648634\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/19__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=5ea3746a-b722-468b-8fba-6dc68d62f056\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/1__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=b7574b92-38ff-4803-8880-1c12ec065b3d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/2__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=ed2ef2ff-55eb-44ef-b582-872ce99414ca\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/3__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=01961481-10e1-4cb2-ae42-984453002a2c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/4__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=9d774ac5-4236-45f9-88d6-918ba9f0f4de\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/5__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=44a94e73-7567-4c70-a630-e447dabbebc7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/6__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=fd469630-2c4b-4a62-96c7-017c7b3d09bd\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/7__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=a4019b22-1213-41bc-b8ab-08562009d45d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/8__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=41716ca2-541d-4d14-b83c-7ded1681db16\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ce5449ee-503a-4dcf-8d1d-47926c921878/9__ce5449ee-503a-4dcf-8d1d-47926c921878.webp?version=0305c885-9398-4028-abb5-302740434c17\",\"ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8\",1005,\"301\",[443,444,445,446,447,448,449,450,451,452,453,454],[\"D\",1793491200000],[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/0__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=79e98f84-9c39-4e13-994b-127c4845fd3c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/10__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=8ce53d1c-8eec-4398-97eb-f5428c3abc62\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/11__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=434095bb-d54c-49a4-9164-547c9871a37d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/1__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=97602fcf-dcb0-4751-b859-9f7ffbcb7f96\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/2__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=8ed20b18-a6a2-4458-bc21-0d77c59c04d3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/3__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=9ac4f294-7228-42a8-bcc0-3b6694c5417c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/4__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=8cd449ca-f6d4-4034-8c92-f2662c639a9b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/5__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=04c38712-16e7-47e5-9453-98a115400454\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/6__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=2cc46fca-d4e2-4eef-914b-efdd17128021\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/7__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=a7076619-245f-489c-9b73-2bbaa16e6580\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/8__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=b897911c-bcc4-4839-8a95-fee801f10498\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8/9__ad36b85c-4948-4b0a-b8a4-d2dd5afaf7a8.webp?version=b94bbe87-eb20-4eef-b901-51cfa13558a1\",\"77ccbc2b-b5ff-4b2b-a167-96b8543c0f82\",962,\"201\",[461,462,463,464,465,466,467,468],[\"D\",1793491200000],[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/0__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?version=fd21e208-62f4-4679-8e11-fdc3bbc80f59\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/1__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?version=5514a320-a64d-480f-b9bf-42d514d4e64e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/2__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?version=6b60207d-8756-4d85-8677-37fd237017ff\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/3__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?version=c38203e7-8a25-4c20-acae-130363624c7a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/4__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?version=5e278cc6-b100-4204-9564-0f9eeae1d252\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/5__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?version=13c2577e-5432-45c9-a057-f022a0a9a084\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/6__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?version=9c4d3c22-caea-4cb7-a84b-e7c6d72563a1\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/77ccbc2b-b5ff-4b2b-a167-96b8543c0f82/7__77ccbc2b-b5ff-4b2b-a167-96b8543c0f82.webp?version=d7dfe89a-8070-4542-b6b5-08e0e9ec54fa\",\"261d5b96-1a13-4b98-9570-c3798edf15a1\",[510,511,512,513,514,515,516,517,518],[\"D\",1793491200000],[473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488],{\"_90\":509,\"_38\":320},{\"_90\":508,\"_38\":316},{\"_90\":507,\"_38\":305},{\"_90\":506,\"_38\":309},{\"_90\":505,\"_38\":305},{\"_90\":504,\"_38\":301},{\"_90\":503,\"_38\":276},{\"_90\":502,\"_38\":287},{\"_90\":501,\"_38\":291},{\"_90\":498,\"_38\":263},{\"_90\":494,\"_38\":495},{\"_90\":493,\"_38\":283},{\"_90\":492,\"_38\":263},{\"_90\":491,\"_38\":276},{\"_90\":490,\"_38\":272},{\"_90\":489,\"_38\":268},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":277,\"_20\":278},{\"_264\":280,\"_20\":281},{\"_264\":284,\"_20\":285},{\"_264\":496,\"_20\":497},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",{\"_264\":499,\"_20\":500},\"Fiber Internet\",\"Internet fibre\",{\"_264\":292,\"_20\":293},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},\"/storage/v1/object/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/chambre-3.PNG\",\"/storage/v1/object/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/chambre.PNG\",\"/storage/v1/object/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/cuisine-2.PNG\",\"/storage/v1/object/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/cuisine.PNG\",\"/storage/v1/object/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/laveuse-et-secheuse.PNG\",\"/storage/v1/object/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/salle-de-bain.PNG\",\"/storage/v1/object/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/salon.PNG\",\"/storage/v1/object/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/vue-ensemble-2.PNG\",\"/storage/v1/object/public/halfred/units/261d5b96-1a13-4b98-9570-c3798edf15a1/vue-ensemble.PNG\",\"e958b224-d136-435e-8a7d-21c36dbee0ab\",[523,524,525,526,527,528,529,530,531],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/1__e958b224-d136-435e-8a7d-21c36dbee0ab.webp\",\"/storage/v1/object/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/2__e958b224-d136-435e-8a7d-21c36dbee0ab.webp\",\"/storage/v1/object/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/3__e958b224-d136-435e-8a7d-21c36dbee0ab.webp\",\"/storage/v1/object/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/4__e958b224-d136-435e-8a7d-21c36dbee0ab.webp\",\"/storage/v1/object/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/5__e958b224-d136-435e-8a7d-21c36dbee0ab.webp\",\"/storage/v1/object/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/6__e958b224-d136-435e-8a7d-21c36dbee0ab.webp\",\"/storage/v1/object/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/7__e958b224-d136-435e-8a7d-21c36dbee0ab.webp\",\"/storage/v1/object/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/8__e958b224-d136-435e-8a7d-21c36dbee0ab.webp\",\"/storage/v1/object/public/halfred/units/e958b224-d136-435e-8a7d-21c36dbee0ab/9__e958b224-d136-435e-8a7d-21c36dbee0ab.webp\",{\"_90\":575,\"_38\":287},{\"_90\":574,\"_38\":287},{\"_90\":571,\"_38\":305},{\"_90\":570,\"_38\":272},{\"_90\":569,\"_38\":268},{\"_90\":568,\"_38\":263},{\"_90\":567,\"_38\":263},{\"_90\":566,\"_38\":495},{\"_90\":565,\"_38\":412},{\"_90\":564,\"_38\":320},{\"_90\":563,\"_38\":316},{\"_90\":562,\"_38\":305},{\"_90\":561,\"_38\":283},{\"_90\":560,\"_38\":263},{\"_90\":559,\"_38\":309},{\"_90\":558,\"_38\":305},{\"_90\":557,\"_38\":301},{\"_90\":554,\"_38\":320},{\"_90\":553,\"_38\":276},{\"_90\":552,\"_38\":276},{\"_264\":277,\"_20\":278},{\"_264\":298,\"_20\":299},{\"_264\":555,\"_20\":556},\"Microwave\",\"Micro-ondes\",{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":280,\"_20\":281},{\"_264\":284,\"_20\":285},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},{\"_264\":416,\"_20\":417},{\"_264\":496,\"_20\":497},{\"_264\":499,\"_20\":500},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":572,\"_20\":573},\"Laundry Room\",\"Buanderie\",{\"_264\":295,\"_20\":296},{\"_264\":398,\"_20\":399},\"/storage/v1/object/public/halfred/buildings/4473893f-c6d9-4079-bfb0-6a2819a3e9b0/0-Marjorie-D-Shackleton.jpg\",\"66c431b7-3e52-45af-82cf-672d8c108b7f\",[632],[594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612],[581],{\"_43\":582,\"_140\":583,\"_210\":-5,\"_175\":584,\"_170\":212,\"_172\":118,\"_213\":356,\"_152\":585,\"_177\":586,\"_157\":53,\"_217\":577,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":587},\"6924ce23-7c12-42fc-a781-292fa20ea555\",895,1882,[588,589,590,591,592,593],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/6924ce23-7c12-42fc-a781-292fa20ea555/4__6924ce23-7c12-42fc-a781-292fa20ea555.webp\",\"/storage/v1/object/public/halfred/units/6924ce23-7c12-42fc-a781-292fa20ea555/3__6924ce23-7c12-42fc-a781-292fa20ea555.webp\",\"/storage/v1/object/public/halfred/units/6924ce23-7c12-42fc-a781-292fa20ea555/2__6924ce23-7c12-42fc-a781-292fa20ea555.webp\",\"/storage/v1/object/public/halfred/units/6924ce23-7c12-42fc-a781-292fa20ea555/1__6924ce23-7c12-42fc-a781-292fa20ea555.webp\",\"/storage/v1/object/public/halfred/units/6924ce23-7c12-42fc-a781-292fa20ea555/6__6924ce23-7c12-42fc-a781-292fa20ea555.webp\",\"/storage/v1/object/public/halfred/units/6924ce23-7c12-42fc-a781-292fa20ea555/5__6924ce23-7c12-42fc-a781-292fa20ea555.webp\",{\"_90\":631,\"_38\":320},{\"_90\":630,\"_38\":316},{\"_90\":629,\"_38\":305},{\"_90\":628,\"_38\":283},{\"_90\":627,\"_38\":263},{\"_90\":626,\"_38\":309},{\"_90\":625,\"_38\":305},{\"_90\":624,\"_38\":301},{\"_90\":623,\"_38\":291},{\"_90\":622,\"_38\":320},{\"_90\":621,\"_38\":276},{\"_90\":620,\"_38\":276},{\"_90\":619,\"_38\":305},{\"_90\":618,\"_38\":268},{\"_90\":617,\"_38\":263},{\"_90\":616,\"_38\":263},{\"_90\":615,\"_38\":495},{\"_90\":614,\"_38\":287},{\"_90\":613,\"_38\":287},{\"_264\":295,\"_20\":296},{\"_264\":398,\"_20\":399},{\"_264\":496,\"_20\":497},{\"_264\":499,\"_20\":500},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":572,\"_20\":573},{\"_264\":277,\"_20\":278},{\"_264\":298,\"_20\":299},{\"_264\":555,\"_20\":556},{\"_264\":292,\"_20\":293},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":280,\"_20\":281},{\"_264\":284,\"_20\":285},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},\"/storage/v1/object/public/halfred/buildings/66c431b7-3e52-45af-82cf-672d8c108b7f/0-Marjorie-D-Shackleton.jpg\",\"11e05b3f-d716-4177-93bb-49e434df913f\",\"655 Boulevard Du Plateau\",[829],[787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807],[638,639,640,641],{\"_43\":765,\"_140\":766,\"_210\":767,\"_175\":768,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":769,\"_177\":770,\"_157\":53,\"_217\":633,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":771,\"_36\":772},{\"_43\":711,\"_140\":712,\"_210\":118,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":457,\"_152\":713,\"_177\":714,\"_157\":53,\"_217\":633,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":715,\"_36\":716},{\"_43\":694,\"_140\":695,\"_210\":212,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":439,\"_152\":696,\"_177\":697,\"_157\":53,\"_217\":633,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":698},{\"_43\":642,\"_140\":643,\"_210\":-5,\"_175\":644,\"_170\":212,\"_172\":118,\"_213\":379,\"_152\":645,\"_177\":646,\"_157\":53,\"_217\":633,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":647},\"34175145-3809-4794-a8ce-61d95a2cba7d\",953,1997,[676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693],[\"D\",1790812800000],[648,649,650,651,652,653,654,655,656,657,658,659,660,661],{\"_90\":675,\"_38\":412},{\"_90\":674,\"_38\":412},{\"_90\":673,\"_38\":320},{\"_90\":672,\"_38\":316},{\"_90\":671,\"_38\":305},{\"_90\":670,\"_38\":305},{\"_90\":669,\"_38\":301},{\"_90\":668,\"_38\":276},{\"_90\":667,\"_38\":287},{\"_90\":666,\"_38\":287},{\"_90\":665,\"_38\":263},{\"_90\":664,\"_38\":272},{\"_90\":663,\"_38\":268},{\"_90\":662,\"_38\":263},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":280,\"_20\":281},{\"_264\":288,\"_20\":289},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},{\"_264\":413,\"_20\":414},{\"_264\":416,\"_20\":417},\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/9__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/1__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/15__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/10__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/11__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/12__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/13__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/14__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/16__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/17__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/18__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/8__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/2__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/3__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/4__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/5__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/6__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"/storage/v1/object/public/halfred/units/34175145-3809-4794-a8ce-61d95a2cba7d/7__34175145-3809-4794-a8ce-61d95a2cba7d.webp\",\"0bad902b-caea-468a-b829-7a3dff9445d4\",1029,[699,700,701,702,703,704,705,706,707,708,709,710],[\"D\",1790812800000],[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/10__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=e7cb6778-1d69-45a4-8fa3-ce266d1109bb\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/11__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=431d988a-77a7-4697-93a7-01db147c3a91\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/12__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=41fbecdd-d977-4b42-a94c-50a0cc52fb5e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/1__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=cd30b26b-f0a4-45a4-b523-262ba904e1a7\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/2__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=5a99fa6b-7b5a-4352-8015-ffed6cb8e101\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/3__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=51483703-4605-4e2c-a105-b75b1474f7b6\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/4__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=d7f7a0ac-c8c2-4f93-92e1-93175ba5e81c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/5__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=9cf8fc0e-23b1-412d-8a81-fd531726842e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/6__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=0b6aa304-e8a6-425e-9962-15324c61277b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/7__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=a12aa6f6-25f6-46b4-8633-c51c24bdeab4\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/8__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=9dae3fdf-ad0c-4046-9804-b99570a85c25\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/0bad902b-caea-468a-b829-7a3dff9445d4/9__0bad902b-caea-468a-b829-7a3dff9445d4.webp?version=cb46196a-422e-40dc-b4b0-4c3b18409118\",\"6a28ed43-efd3-42fa-a919-bd2114bea2d3\",988,[752,753,754,755,756,757,758,759,760,761,762,763,764],[\"D\",1788220800000],{\"_175\":750,\"_33\":751},[717,718,719,720,721,722,723,724,725,726,727,728,729,730,731],{\"_90\":749,\"_38\":412},{\"_90\":748,\"_38\":320},{\"_90\":747,\"_38\":316},{\"_90\":746,\"_38\":305},{\"_90\":745,\"_38\":305},{\"_90\":744,\"_38\":301},{\"_90\":740,\"_38\":741},{\"_90\":739,\"_38\":276},{\"_90\":738,\"_38\":287},{\"_90\":737,\"_38\":291},{\"_90\":736,\"_38\":263},{\"_90\":735,\"_38\":263},{\"_90\":734,\"_38\":276},{\"_90\":733,\"_38\":272},{\"_90\":732,\"_38\":268},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":277,\"_20\":278},{\"_264\":280,\"_20\":281},{\"_264\":499,\"_20\":500},{\"_264\":292,\"_20\":293},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":742,\"_20\":743},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},{\"_264\":413,\"_20\":414},1795,\"Promotion sur le loyer pour les 12 premiers mois\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/10__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=9ea479a6-506d-41ef-adc3-a5ea7197b633\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/11__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=f27fa901-fe46-43de-a633-1a82c0149404\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/12__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=f8154262-3823-4960-9e7f-bc5514998c15\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/13__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=5de8a260-bd4c-4600-852e-628f89da5bc9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/1__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=1f65ea81-e12e-42d1-957c-ca7f0ba6fb59\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/2__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=21cc7b8b-848e-4791-b1dd-30ee06e0a77f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/3__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=d56c5973-e60f-4526-8569-f4aa513bc481\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/4__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=b2d5e14b-b5e1-4563-b908-6cd7ccf592aa\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/5__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=9dc2fe00-f9bc-4d4e-81e2-9a0cfee6f693\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/6__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=a4401bf1-7098-414b-ab92-ad2be3d5dca3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/7__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=ae368154-b3e4-46b3-b0da-7b6be890aba3\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/8__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=657e239e-2505-436b-9763-fb443c987cf9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/6a28ed43-efd3-42fa-a919-bd2114bea2d3/9__6a28ed43-efd3-42fa-a919-bd2114bea2d3.webp?version=6f552555-a2d1-4c0f-8cd9-e14f15f680ed\",\"2732fa76-9ef8-4372-901a-1b1741306383\",886,-1,1850,[774,775,776,777,778,779,780,781,782,783,784,785,786],[\"D\",1788220800000],{\"_175\":773,\"_33\":751},[],1595,\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/10__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=ef627107-5b03-4a55-998e-d6c854f98bd9\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/11__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=9798f5bb-a0a7-4704-9aff-4ed5b3ffee14\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/12__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=a38df5b0-35f5-43cf-943c-330dd9465bfb\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/13__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=40656910-8ed4-48ef-8cbc-f68d312d011f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/1__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=0dbddf1d-42f9-4e09-bf2d-eb0e30e28ed0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/2__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=699c1a04-a0e1-44e0-a8e7-6add2d343737\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/3__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=d2982241-37bb-4c72-ac81-fcb4256baf40\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/4__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=be04477d-35c9-4eaf-8c6a-001752934afd\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/5__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=56b9b61d-ef01-48d9-9aef-4d07c3ca64e2\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/6__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=c09b70d2-a655-47eb-9bdd-6381986872e0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/7__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=5b6ebc35-9946-4dea-8705-96fdd15bd99a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/8__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=5177ef22-6dbf-43f2-a58a-a407d2ceaf2d\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/2732fa76-9ef8-4372-901a-1b1741306383/9__2732fa76-9ef8-4372-901a-1b1741306383.webp?version=5dafbe9e-bc7d-4f72-8a63-2e243d324796\",{\"_90\":828,\"_38\":309},{\"_90\":827,\"_38\":305},{\"_90\":826,\"_38\":301},{\"_90\":825,\"_38\":291},{\"_90\":824,\"_38\":741},{\"_90\":823,\"_38\":276},{\"_90\":822,\"_38\":276},{\"_90\":821,\"_38\":305},{\"_90\":820,\"_38\":272},{\"_90\":819,\"_38\":268},{\"_90\":818,\"_38\":263},{\"_90\":817,\"_38\":263},{\"_90\":816,\"_38\":495},{\"_90\":815,\"_38\":287},{\"_90\":814,\"_38\":287},{\"_90\":813,\"_38\":412},{\"_90\":812,\"_38\":320},{\"_90\":811,\"_38\":316},{\"_90\":810,\"_38\":305},{\"_90\":809,\"_38\":283},{\"_90\":808,\"_38\":263},{\"_264\":280,\"_20\":281},{\"_264\":284,\"_20\":285},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},{\"_264\":416,\"_20\":417},{\"_264\":295,\"_20\":296},{\"_264\":398,\"_20\":399},{\"_264\":496,\"_20\":497},{\"_264\":499,\"_20\":500},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":572,\"_20\":573},{\"_264\":277,\"_20\":278},{\"_264\":298,\"_20\":299},{\"_264\":742,\"_20\":743},{\"_264\":292,\"_20\":293},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/11e05b3f-d716-4177-93bb-49e434df913f/0-Boulevard Du Plateau.PNG?version=3555230b-57ce-492e-9f84-2eee58dc85d6\",\"6e0fc15a-b20b-40c7-a207-40ad76b4b5ed\",[908],\"659 Boulevard Du Plateau\",[868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887],[835,836],{\"_43\":855,\"_140\":183,\"_210\":-5,\"_175\":340,\"_170\":118,\"_172\":118,\"_213\":356,\"_152\":856,\"_177\":857,\"_157\":53,\"_217\":830,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":858,\"_36\":859},{\"_43\":837,\"_140\":838,\"_210\":-5,\"_175\":839,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":840,\"_177\":841,\"_157\":53,\"_217\":830,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":842,\"_36\":843},\"96f2500e-08d5-4d2f-95bc-0c25940f7d7b\",484,1890,[844,845,846,847,848,849,850,851,852,853,854],[\"D\",1788220800000],{\"_175\":773,\"_33\":751},[],\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/10__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=56654f47-292d-4ece-9ee1-1601ad722798\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/11__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=e40014f5-9ed7-4078-b8fa-4735d3fd5bce\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/1__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=c6190728-9912-407c-8324-bb7bb3b3121c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/2__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=802e3fde-d9d7-4bf2-ad37-54fc548a3432\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/3__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=8b4d5920-0470-478f-aa8e-cfe6493118a0\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/4__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=92ff58fe-b42b-49f5-8d97-3ecaf180cc60\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/5__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=d2e57859-41dd-400d-a751-fb66cfa57d30\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/6__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=d3b86ade-02d5-4ff2-91f3-296d0bd0fccb\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/7__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=f1975e45-266c-496e-b409-6912f2f8fb6a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/8__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=67547024-c701-45ed-9e74-f7d22378142b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/96f2500e-08d5-4d2f-95bc-0c25940f7d7b/9__96f2500e-08d5-4d2f-95bc-0c25940f7d7b.webp?version=3a323d60-3411-4935-878b-f6ec4c7a1821\",\"4961ac6a-539a-4706-9cd0-5a2d61a8f0cc\",[862,863,864,865,866,867],[\"D\",1788220800000],{\"_175\":860,\"_33\":861},[],1295,\"Promotion sur le loyer pour les 12 premiers mois !\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/4961ac6a-539a-4706-9cd0-5a2d61a8f0cc/1__4961ac6a-539a-4706-9cd0-5a2d61a8f0cc.webp?version=4e6c5bbb-3d15-497c-aeaf-ce11ebac4849\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/4961ac6a-539a-4706-9cd0-5a2d61a8f0cc/2__4961ac6a-539a-4706-9cd0-5a2d61a8f0cc.webp?version=9ba58e38-849f-4ee8-b765-468f0b0b1f4f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/4961ac6a-539a-4706-9cd0-5a2d61a8f0cc/3__4961ac6a-539a-4706-9cd0-5a2d61a8f0cc.webp?version=4af3727b-a234-46bc-84aa-3e94bceea749\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/4961ac6a-539a-4706-9cd0-5a2d61a8f0cc/4__4961ac6a-539a-4706-9cd0-5a2d61a8f0cc.webp?version=f3a3e6e3-e434-4109-9c7e-f26befa83ccf\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/4961ac6a-539a-4706-9cd0-5a2d61a8f0cc/5__4961ac6a-539a-4706-9cd0-5a2d61a8f0cc.webp?version=78e42242-6661-4586-8030-a862ad043539\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/4961ac6a-539a-4706-9cd0-5a2d61a8f0cc/6__4961ac6a-539a-4706-9cd0-5a2d61a8f0cc.webp?version=3c7462b1-9b76-4e7d-b61e-55242960cc7f\",{\"_90\":907,\"_38\":263},{\"_90\":906,\"_38\":263},{\"_90\":905,\"_38\":495},{\"_90\":904,\"_38\":287},{\"_90\":903,\"_38\":287},{\"_90\":902,\"_38\":412},{\"_90\":901,\"_38\":320},{\"_90\":900,\"_38\":305},{\"_90\":899,\"_38\":283},{\"_90\":898,\"_38\":263},{\"_90\":897,\"_38\":309},{\"_90\":896,\"_38\":305},{\"_90\":895,\"_38\":301},{\"_90\":894,\"_38\":291},{\"_90\":893,\"_38\":320},{\"_90\":892,\"_38\":741},{\"_90\":891,\"_38\":276},{\"_90\":890,\"_38\":276},{\"_90\":889,\"_38\":305},{\"_90\":888,\"_38\":268},{\"_264\":269,\"_20\":270},{\"_264\":572,\"_20\":573},{\"_264\":277,\"_20\":278},{\"_264\":298,\"_20\":299},{\"_264\":742,\"_20\":743},{\"_264\":555,\"_20\":556},{\"_264\":292,\"_20\":293},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":280,\"_20\":281},{\"_264\":284,\"_20\":285},{\"_264\":313,\"_20\":314},{\"_264\":321,\"_20\":322},{\"_264\":416,\"_20\":417},{\"_264\":295,\"_20\":296},{\"_264\":398,\"_20\":399},{\"_264\":496,\"_20\":497},{\"_264\":499,\"_20\":500},{\"_264\":265,\"_20\":266},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/6e0fc15a-b20b-40c7-a207-40ad76b4b5ed/0__6e0fc15a-b20b-40c7-a207-40ad76b4b5ed.webp?version=2e220c31-bd99-434d-a4a6-bb03e0236266\",\"c7f62d0e-94a8-4677-8c6a-c746a86c372e\",\"38 Rue Marjorie-D.-Shackleton\",[995],\"Plateau \",[961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977],[915,916],{\"_43\":929,\"_140\":355,\"_210\":-5,\"_175\":181,\"_170\":118,\"_172\":118,\"_213\":356,\"_152\":930,\"_177\":931,\"_157\":53,\"_217\":909,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":932},{\"_43\":917,\"_140\":377,\"_210\":-5,\"_175\":918,\"_170\":212,\"_172\":118,\"_213\":379,\"_152\":919,\"_177\":920,\"_157\":53,\"_217\":909,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":921},\"801863d9-c1b0-44ab-a264-8cd4499ac179\",2050,[922,923,924,925,926,927,928],[\"D\",1777593600000],[],\"/storage/v1/object/public/halfred/units/801863d9-c1b0-44ab-a264-8cd4499ac179/chambre-2.PNG\",\"/storage/v1/object/public/halfred/units/801863d9-c1b0-44ab-a264-8cd4499ac179/chambre-3.PNG\",\"/storage/v1/object/public/halfred/units/801863d9-c1b0-44ab-a264-8cd4499ac179/chambre-garde-robe.PNG\",\"/storage/v1/object/public/halfred/units/801863d9-c1b0-44ab-a264-8cd4499ac179/chambre.PNG\",\"/storage/v1/object/public/halfred/units/801863d9-c1b0-44ab-a264-8cd4499ac179/cuisine-2.PNG\",\"/storage/v1/object/public/halfred/units/801863d9-c1b0-44ab-a264-8cd4499ac179/cuisine.PNG\",\"/storage/v1/object/public/halfred/units/801863d9-c1b0-44ab-a264-8cd4499ac179/salle-de-bain.PNG\",\"1b63fc0c-b87f-402b-bcf2-b61f250c78d8\",[951,952,953,954,955,956,957,958,959,960],[\"D\",1793491200000],[933,934,935,936,937,938,939,940,941],{\"_90\":950,\"_38\":316},{\"_90\":949,\"_38\":309},{\"_90\":948,\"_38\":305},{\"_90\":947,\"_38\":276},{\"_90\":946,\"_38\":287},{\"_90\":945,\"_38\":283},{\"_90\":944,\"_38\":276},{\"_90\":943,\"_38\":268},{\"_90\":942,\"_38\":287},{\"_264\":398,\"_20\":399},{\"_264\":269,\"_20\":270},{\"_264\":277,\"_20\":278},{\"_264\":284,\"_20\":285},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":317,\"_20\":318},\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Cuisine.PNG\",\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Vue_ensemble.PNG\",\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Chambre_2.PNG\",\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Vue_ensemble_2.PNG\",\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Chambre.PNG\",\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Salon.PNG\",\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Chambre_3.PNG\",\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Laveuse_et_s_cheuse.PNG\",\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Cuisine_2.PNG\",\"/storage/v1/object/public/halfred/units/1b63fc0c-b87f-402b-bcf2-b61f250c78d8/Salle_de_bain.PNG\",{\"_90\":994,\"_38\":320},{\"_90\":993,\"_38\":316},{\"_90\":992,\"_38\":305},{\"_90\":991,\"_38\":283},{\"_90\":990,\"_38\":263},{\"_90\":989,\"_38\":309},{\"_90\":988,\"_38\":305},{\"_90\":987,\"_38\":301},{\"_90\":986,\"_38\":276},{\"_90\":985,\"_38\":276},{\"_90\":984,\"_38\":305},{\"_90\":983,\"_38\":272},{\"_90\":982,\"_38\":268},{\"_90\":981,\"_38\":263},{\"_90\":980,\"_38\":263},{\"_90\":979,\"_38\":495},{\"_90\":978,\"_38\":287},{\"_264\":398,\"_20\":399},{\"_264\":496,\"_20\":497},{\"_264\":499,\"_20\":500},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":572,\"_20\":573},{\"_264\":277,\"_20\":278},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":280,\"_20\":281},{\"_264\":284,\"_20\":285},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},\"/storage/v1/object/public/halfred/buildings/c7f62d0e-94a8-4677-8c6a-c746a86c372e/0__exterieur-2.jpg\",\"88ce5de4-950d-46de-8fc2-4785e82fe201\",\"36 Rue Marjorie-D.-Shackleton\",[1080],[],[1001,1002,1003],{\"_43\":1066,\"_140\":141,\"_210\":767,\"_175\":584,\"_170\":212,\"_172\":118,\"_213\":341,\"_152\":1067,\"_177\":1068,\"_157\":53,\"_217\":996,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1069},{\"_43\":1049,\"_140\":583,\"_210\":118,\"_175\":1005,\"_170\":212,\"_172\":118,\"_213\":457,\"_152\":1050,\"_177\":1051,\"_157\":53,\"_217\":996,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1052,\"_36\":1053},{\"_43\":1004,\"_140\":141,\"_210\":118,\"_175\":1005,\"_170\":212,\"_172\":118,\"_213\":214,\"_152\":1006,\"_177\":1007,\"_157\":53,\"_217\":996,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1008,\"_36\":1009},\"c641d56e-5043-4e5c-899f-e6b4e4337c6a\",1950,[1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048],[\"D\",1793491200000],{\"_175\":225,\"_33\":1036},[1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022],{\"_90\":1035,\"_38\":320},{\"_90\":1034,\"_38\":305},{\"_90\":1033,\"_38\":305},{\"_90\":1032,\"_38\":301},{\"_90\":1031,\"_38\":276},{\"_90\":1030,\"_38\":287},{\"_90\":1029,\"_38\":291},{\"_90\":1028,\"_38\":287},{\"_90\":1027,\"_38\":263},{\"_90\":1026,\"_38\":276},{\"_90\":1025,\"_38\":272},{\"_90\":1024,\"_38\":268},{\"_90\":1023,\"_38\":263},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":277,\"_20\":278},{\"_264\":280,\"_20\":281},{\"_264\":288,\"_20\":289},{\"_264\":292,\"_20\":293},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":321,\"_20\":322},\"Promotion applicable sur un bail d'un an minimum\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/10__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/11__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/12__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/1__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/2__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/3__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/4__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/5__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/6__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/7__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/8__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"/storage/v1/object/public/halfred/units/c641d56e-5043-4e5c-899f-e6b4e4337c6a/9__c641d56e-5043-4e5c-899f-e6b4e4337c6a.webp\",\"03f5a8db-ccff-48b7-addc-09384b959fc5\",[1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065],[\"D\",1793491200000],{\"_175\":225,\"_33\":1054},[],\"** Prix promotionnelle pour un bail de 12 mois ***\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/0__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/10__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/1__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/2__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/3__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/4__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/5__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/6__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/7__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/8__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"/storage/v1/object/public/halfred/units/03f5a8db-ccff-48b7-addc-09384b959fc5/9__03f5a8db-ccff-48b7-addc-09384b959fc5.webp\",\"51d1b37f-00c4-4278-b953-5ba4f845fe1c\",[1070,1071,1072,1073,1074,1075,1076,1077,1078,1079],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/0__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/1__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/2__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/3__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/4__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/5__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/6__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/7__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/8__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/units/51d1b37f-00c4-4278-b953-5ba4f845fe1c/9__51d1b37f-00c4-4278-b953-5ba4f845fe1c.webp\",\"/storage/v1/object/public/halfred/buildings/88ce5de4-950d-46de-8fc2-4785e82fe201/0-36 Rue Marjorie-D-Shackleton.jpg\",\"b2ab947f-f429-4e05-909c-9e41315435dd\",\"34 Rue Marjorie-D.-Shackleton\",[1220],[1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199],[1086,1087,1088,1089],{\"_43\":1162,\"_140\":141,\"_210\":767,\"_175\":768,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":1163,\"_177\":1164,\"_157\":53,\"_217\":1081,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1165,\"_36\":1166},{\"_43\":1124,\"_140\":456,\"_210\":118,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":457,\"_152\":1125,\"_177\":1126,\"_157\":53,\"_217\":1081,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1127},{\"_43\":1108,\"_140\":438,\"_210\":212,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":439,\"_152\":1109,\"_177\":1110,\"_157\":53,\"_217\":1081,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1111},{\"_43\":1090,\"_140\":184,\"_210\":-5,\"_175\":182,\"_170\":212,\"_172\":118,\"_213\":1091,\"_152\":1092,\"_177\":1093,\"_157\":53,\"_217\":1081,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1094,\"_36\":1095},\"e92e5692-5956-461c-8cba-0b5a1cdf24f7\",\"402\",[1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107],[\"D\",1793491200000],{\"_175\":768,\"_33\":1096},[],\"*** Prix promotionnelle pour un bail de 12 mois ***\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/0__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/10__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/1__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/2__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/3__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/4__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/5__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/6__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/7__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/8__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"/storage/v1/object/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/9__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp\",\"95c702e7-e8a6-461a-b9a8-5733bb122d5c\",[1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123],[\"D\",1793491200000],[],\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/10__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/11__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/12__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/1__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/2__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/3__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/4__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/5__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/6__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/7__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/8__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"/storage/v1/object/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/9__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp\",\"f6b7d1b8-ec91-44ba-a824-f45ed2410de4\",[1152,1153,1154,1155,1156,1157,1158,1159,1160,1161],[\"D\",1793491200000],[1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138],{\"_90\":1151,\"_38\":320},{\"_90\":1150,\"_38\":305},{\"_90\":1149,\"_38\":305},{\"_90\":1148,\"_38\":301},{\"_90\":1147,\"_38\":741},{\"_90\":1146,\"_38\":276},{\"_90\":1145,\"_38\":287},{\"_90\":1144,\"_38\":291},{\"_90\":1141,\"_38\":276},{\"_90\":1140,\"_38\":276},{\"_90\":1139,\"_38\":268},{\"_264\":269,\"_20\":270},{\"_264\":277,\"_20\":278},{\"_264\":1142,\"_20\":1143},\"Counter Type\",\"Type de comptoir\",{\"_264\":292,\"_20\":293},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":742,\"_20\":743},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":321,\"_20\":322},\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/10__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/1__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/2__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/3__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/4__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/5__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/6__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/7__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/8__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"/storage/v1/object/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/9__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp\",\"a8a65f89-5a4f-4039-9ad6-c41b7731c1a8\",[1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179],[\"D\",1793491200000],{\"_175\":323,\"_33\":1167},[],\"** promotion pour un bail de 12 mois **\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/10__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/11__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/12__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/1__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/2__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/3__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/4__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/5__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/6__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/7__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/8__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",\"/storage/v1/object/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/9__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp\",{\"_90\":1219,\"_38\":412},{\"_90\":1218,\"_38\":320},{\"_90\":1217,\"_38\":316},{\"_90\":1216,\"_38\":305},{\"_90\":1215,\"_38\":283},{\"_90\":1214,\"_38\":263},{\"_90\":1213,\"_38\":309},{\"_90\":1212,\"_38\":305},{\"_90\":1211,\"_38\":301},{\"_90\":1210,\"_38\":291},{\"_90\":1209,\"_38\":320},{\"_90\":1208,\"_38\":276},{\"_90\":1207,\"_38\":276},{\"_90\":1206,\"_38\":305},{\"_90\":1205,\"_38\":268},{\"_90\":1204,\"_38\":263},{\"_90\":1203,\"_38\":263},{\"_90\":1202,\"_38\":495},{\"_90\":1201,\"_38\":287},{\"_90\":1200,\"_38\":287},{\"_264\":295,\"_20\":296},{\"_264\":398,\"_20\":399},{\"_264\":496,\"_20\":497},{\"_264\":499,\"_20\":500},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":572,\"_20\":573},{\"_264\":277,\"_20\":278},{\"_264\":298,\"_20\":299},{\"_264\":555,\"_20\":556},{\"_264\":292,\"_20\":293},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":280,\"_20\":281},{\"_264\":284,\"_20\":285},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},{\"_264\":416,\"_20\":417},\"/storage/v1/object/public/halfred/buildings/b2ab947f-f429-4e05-909c-9e41315435dd/0-36 Rue Marjorie-D-Shackleton.jpg\",{\"_43\":1162,\"_140\":141,\"_210\":767,\"_175\":768,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":1543,\"_177\":1544,\"_157\":53,\"_217\":1081,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1545,\"_36\":1546},{\"_43\":1124,\"_140\":456,\"_210\":118,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":457,\"_152\":1518,\"_177\":1519,\"_157\":53,\"_217\":1081,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1520},{\"_43\":1108,\"_140\":438,\"_210\":212,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":439,\"_152\":1515,\"_177\":1516,\"_157\":53,\"_217\":1081,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1517},{\"_43\":1090,\"_140\":184,\"_210\":-5,\"_175\":182,\"_170\":212,\"_172\":118,\"_213\":1091,\"_152\":1511,\"_177\":1512,\"_157\":53,\"_217\":1081,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1513,\"_36\":1514},{\"_43\":1066,\"_140\":141,\"_210\":767,\"_175\":584,\"_170\":212,\"_172\":118,\"_213\":341,\"_152\":1508,\"_177\":1509,\"_157\":53,\"_217\":996,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1510},{\"_43\":1049,\"_140\":583,\"_210\":118,\"_175\":1005,\"_170\":212,\"_172\":118,\"_213\":457,\"_152\":1504,\"_177\":1505,\"_157\":53,\"_217\":996,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1506,\"_36\":1507},{\"_43\":1004,\"_140\":141,\"_210\":118,\"_175\":1005,\"_170\":212,\"_172\":118,\"_213\":214,\"_152\":1474,\"_177\":1475,\"_157\":53,\"_217\":996,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1476,\"_36\":1477},{\"_43\":929,\"_140\":355,\"_210\":-5,\"_175\":181,\"_170\":118,\"_172\":118,\"_213\":356,\"_152\":1453,\"_177\":1454,\"_157\":53,\"_217\":909,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1455},{\"_43\":917,\"_140\":377,\"_210\":-5,\"_175\":918,\"_170\":212,\"_172\":118,\"_213\":379,\"_152\":1450,\"_177\":1451,\"_157\":53,\"_217\":909,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1452},{\"_43\":855,\"_140\":183,\"_210\":-5,\"_175\":340,\"_170\":118,\"_172\":118,\"_213\":356,\"_152\":1446,\"_177\":1447,\"_157\":53,\"_217\":830,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1448,\"_36\":1449},{\"_43\":837,\"_140\":838,\"_210\":-5,\"_175\":839,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":1442,\"_177\":1443,\"_157\":53,\"_217\":830,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1444,\"_36\":1445},{\"_43\":765,\"_140\":766,\"_210\":767,\"_175\":768,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":1438,\"_177\":1439,\"_157\":53,\"_217\":633,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1440,\"_36\":1441},{\"_43\":711,\"_140\":712,\"_210\":118,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":457,\"_152\":1404,\"_177\":1405,\"_157\":53,\"_217\":633,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1406,\"_36\":1407},{\"_43\":694,\"_140\":695,\"_210\":212,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":439,\"_152\":1401,\"_177\":1402,\"_157\":53,\"_217\":633,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1403},{\"_43\":642,\"_140\":643,\"_210\":-5,\"_175\":644,\"_170\":212,\"_172\":118,\"_213\":379,\"_152\":1370,\"_177\":1371,\"_157\":53,\"_217\":633,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1372},{\"_43\":582,\"_140\":583,\"_210\":-5,\"_175\":584,\"_170\":212,\"_172\":118,\"_213\":356,\"_152\":1367,\"_177\":1368,\"_157\":53,\"_217\":577,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1369},{\"_43\":519,\"_140\":339,\"_210\":-5,\"_175\":340,\"_170\":118,\"_172\":118,\"_213\":341,\"_152\":1364,\"_177\":1365,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1366},{\"_43\":469,\"_140\":141,\"_210\":-5,\"_175\":240,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":1329,\"_177\":1330,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1331},{\"_43\":455,\"_140\":456,\"_210\":118,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":457,\"_152\":1326,\"_177\":1327,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1328},{\"_43\":437,\"_140\":438,\"_210\":212,\"_175\":378,\"_170\":185,\"_172\":118,\"_213\":439,\"_152\":1323,\"_177\":1324,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1325},{\"_43\":376,\"_140\":377,\"_210\":212,\"_175\":378,\"_170\":212,\"_172\":118,\"_213\":379,\"_152\":1292,\"_177\":1293,\"_157\":53,\"_217\":366,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1294},{\"_43\":354,\"_140\":355,\"_210\":-5,\"_175\":340,\"_170\":118,\"_172\":118,\"_213\":356,\"_152\":1289,\"_177\":1290,\"_157\":53,\"_217\":194,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1291},{\"_43\":338,\"_140\":339,\"_210\":-5,\"_175\":340,\"_170\":118,\"_172\":118,\"_213\":341,\"_152\":1286,\"_177\":1287,\"_157\":53,\"_217\":194,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":-5,\"_36\":1288},{\"_43\":239,\"_140\":141,\"_210\":-5,\"_175\":240,\"_170\":212,\"_172\":118,\"_213\":241,\"_152\":1250,\"_177\":1251,\"_157\":53,\"_217\":194,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1252,\"_36\":1253},{\"_43\":209,\"_140\":141,\"_210\":-5,\"_175\":211,\"_170\":212,\"_172\":118,\"_213\":214,\"_152\":1246,\"_177\":1247,\"_157\":53,\"_217\":194,\"_218\":-5,\"_219\":-5,\"_220\":221,\"_222\":1248,\"_36\":1249},[227,228,229,230,231,232,233,234,235,236,237,238],[\"D\",1754006400000],{\"_175\":225,\"_33\":226},[],[325,326,327,328,329,330,331,332,333,334,335,336,337],[\"D\",1788220800000],{\"_175\":323,\"_33\":324},[1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269],{\"_90\":1285,\"_38\":320},{\"_90\":1284,\"_38\":316},{\"_90\":1283,\"_38\":305},{\"_90\":1282,\"_38\":309},{\"_90\":1281,\"_38\":305},{\"_90\":1280,\"_38\":301},{\"_90\":1279,\"_38\":276},{\"_90\":1278,\"_38\":287},{\"_90\":1277,\"_38\":291},{\"_90\":1276,\"_38\":287},{\"_90\":1275,\"_38\":283},{\"_90\":1274,\"_38\":263},{\"_90\":1273,\"_38\":276},{\"_90\":1272,\"_38\":272},{\"_90\":1271,\"_38\":268},{\"_90\":1270,\"_38\":263},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":277,\"_20\":278},{\"_264\":280,\"_20\":281},{\"_264\":284,\"_20\":285},{\"_264\":288,\"_20\":289},{\"_264\":292,\"_20\":293},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},[345,346,347,348,349,350,351,352,353],[\"D\",1780272000000],[],[360,361,362,363,364],[\"D\",1785542400000],[],[418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436],[\"D\",1788220800000],[1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308],{\"_90\":1322,\"_38\":412},{\"_90\":1321,\"_38\":412},{\"_90\":1320,\"_38\":320},{\"_90\":1319,\"_38\":316},{\"_90\":1318,\"_38\":305},{\"_90\":1317,\"_38\":305},{\"_90\":1316,\"_38\":301},{\"_90\":1315,\"_38\":276},{\"_90\":1314,\"_38\":287},{\"_90\":1313,\"_38\":263},{\"_90\":1312,\"_38\":272},{\"_90\":1311,\"_38\":268},{\"_90\":1310,\"_38\":263},{\"_90\":1309,\"_38\":287},{\"_264\":398,\"_20\":399},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":280,\"_20\":281},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},{\"_264\":413,\"_20\":414},{\"_264\":416,\"_20\":417},[443,444,445,446,447,448,449,450,451,452,453,454],[\"D\",1793491200000],[],[461,462,463,464,465,466,467,468],[\"D\",1793491200000],[],[510,511,512,513,514,515,516,517,518],[\"D\",1793491200000],[1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347],{\"_90\":1363,\"_38\":320},{\"_90\":1362,\"_38\":316},{\"_90\":1361,\"_38\":305},{\"_90\":1360,\"_38\":309},{\"_90\":1359,\"_38\":305},{\"_90\":1358,\"_38\":301},{\"_90\":1357,\"_38\":276},{\"_90\":1356,\"_38\":287},{\"_90\":1355,\"_38\":291},{\"_90\":1354,\"_38\":263},{\"_90\":1353,\"_38\":495},{\"_90\":1352,\"_38\":283},{\"_90\":1351,\"_38\":263},{\"_90\":1350,\"_38\":276},{\"_90\":1349,\"_38\":272},{\"_90\":1348,\"_38\":268},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":277,\"_20\":278},{\"_264\":280,\"_20\":281},{\"_264\":284,\"_20\":285},{\"_264\":496,\"_20\":497},{\"_264\":499,\"_20\":500},{\"_264\":292,\"_20\":293},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},[523,524,525,526,527,528,529,530,531],[\"D\",1793491200000],[],[588,589,590,591,592,593],[\"D\",1793491200000],[],[676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693],[\"D\",1790812800000],[1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386],{\"_90\":1400,\"_38\":412},{\"_90\":1399,\"_38\":412},{\"_90\":1398,\"_38\":320},{\"_90\":1397,\"_38\":316},{\"_90\":1396,\"_38\":305},{\"_90\":1395,\"_38\":305},{\"_90\":1394,\"_38\":301},{\"_90\":1393,\"_38\":276},{\"_90\":1392,\"_38\":287},{\"_90\":1391,\"_38\":287},{\"_90\":1390,\"_38\":263},{\"_90\":1389,\"_38\":272},{\"_90\":1388,\"_38\":268},{\"_90\":1387,\"_38\":263},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":280,\"_20\":281},{\"_264\":288,\"_20\":289},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},{\"_264\":413,\"_20\":414},{\"_264\":416,\"_20\":417},[699,700,701,702,703,704,705,706,707,708,709,710],[\"D\",1790812800000],[],[752,753,754,755,756,757,758,759,760,761,762,763,764],[\"D\",1788220800000],{\"_175\":750,\"_33\":751},[1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422],{\"_90\":1437,\"_38\":412},{\"_90\":1436,\"_38\":320},{\"_90\":1435,\"_38\":316},{\"_90\":1434,\"_38\":305},{\"_90\":1433,\"_38\":305},{\"_90\":1432,\"_38\":301},{\"_90\":1431,\"_38\":741},{\"_90\":1430,\"_38\":276},{\"_90\":1429,\"_38\":287},{\"_90\":1428,\"_38\":291},{\"_90\":1427,\"_38\":263},{\"_90\":1426,\"_38\":263},{\"_90\":1425,\"_38\":276},{\"_90\":1424,\"_38\":272},{\"_90\":1423,\"_38\":268},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":277,\"_20\":278},{\"_264\":280,\"_20\":281},{\"_264\":499,\"_20\":500},{\"_264\":292,\"_20\":293},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":742,\"_20\":743},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":317,\"_20\":318},{\"_264\":321,\"_20\":322},{\"_264\":413,\"_20\":414},[774,775,776,777,778,779,780,781,782,783,784,785,786],[\"D\",1788220800000],{\"_175\":773,\"_33\":751},[],[844,845,846,847,848,849,850,851,852,853,854],[\"D\",1788220800000],{\"_175\":773,\"_33\":751},[],[862,863,864,865,866,867],[\"D\",1788220800000],{\"_175\":860,\"_33\":861},[],[922,923,924,925,926,927,928],[\"D\",1777593600000],[],[951,952,953,954,955,956,957,958,959,960],[\"D\",1793491200000],[1456,1457,1458,1459,1460,1461,1462,1463,1464],{\"_90\":1473,\"_38\":316},{\"_90\":1472,\"_38\":309},{\"_90\":1471,\"_38\":305},{\"_90\":1470,\"_38\":276},{\"_90\":1469,\"_38\":287},{\"_90\":1468,\"_38\":283},{\"_90\":1467,\"_38\":276},{\"_90\":1466,\"_38\":268},{\"_90\":1465,\"_38\":287},{\"_264\":398,\"_20\":399},{\"_264\":269,\"_20\":270},{\"_264\":277,\"_20\":278},{\"_264\":284,\"_20\":285},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":306,\"_20\":307},{\"_264\":310,\"_20\":311},{\"_264\":317,\"_20\":318},[1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048],[\"D\",1793491200000],{\"_175\":225,\"_33\":1036},[1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490],{\"_90\":1503,\"_38\":320},{\"_90\":1502,\"_38\":305},{\"_90\":1501,\"_38\":305},{\"_90\":1500,\"_38\":301},{\"_90\":1499,\"_38\":276},{\"_90\":1498,\"_38\":287},{\"_90\":1497,\"_38\":291},{\"_90\":1496,\"_38\":287},{\"_90\":1495,\"_38\":263},{\"_90\":1494,\"_38\":276},{\"_90\":1493,\"_38\":272},{\"_90\":1492,\"_38\":268},{\"_90\":1491,\"_38\":263},{\"_264\":265,\"_20\":266},{\"_264\":269,\"_20\":270},{\"_264\":273,\"_20\":274},{\"_264\":277,\"_20\":278},{\"_264\":280,\"_20\":281},{\"_264\":288,\"_20\":289},{\"_264\":292,\"_20\":293},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":321,\"_20\":322},[1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065],[\"D\",1793491200000],{\"_175\":225,\"_33\":1054},[],[1070,1071,1072,1073,1074,1075,1076,1077,1078,1079],[\"D\",1793491200000],[],[1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107],[\"D\",1793491200000],{\"_175\":768,\"_33\":1096},[],[1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123],[\"D\",1793491200000],[],[1152,1153,1154,1155,1156,1157,1158,1159,1160,1161],[\"D\",1793491200000],[1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531],{\"_90\":1542,\"_38\":320},{\"_90\":1541,\"_38\":305},{\"_90\":1540,\"_38\":305},{\"_90\":1539,\"_38\":301},{\"_90\":1538,\"_38\":741},{\"_90\":1537,\"_38\":276},{\"_90\":1536,\"_38\":287},{\"_90\":1535,\"_38\":291},{\"_90\":1534,\"_38\":276},{\"_90\":1533,\"_38\":276},{\"_90\":1532,\"_38\":268},{\"_264\":269,\"_20\":270},{\"_264\":277,\"_20\":278},{\"_264\":1142,\"_20\":1143},{\"_264\":292,\"_20\":293},{\"_264\":295,\"_20\":296},{\"_264\":298,\"_20\":299},{\"_264\":742,\"_20\":743},{\"_264\":302,\"_20\":303},{\"_264\":306,\"_20\":307},{\"_264\":313,\"_20\":314},{\"_264\":321,\"_20\":322},[1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179],[\"D\",1793491200000],{\"_175\":323,\"_33\":1167},[],\"/storage/v1/object/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png\",\"/storage/v1/object/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-2.jpg\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Contemporary All-Inclusive Apartments – Plateau Area\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" ✨\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover these stunning modern all-inclusive apartments located in a premium 4-storey building designed to offer comfort, tranquility, and modern living. With reinforced concrete construction and 9-foot ceilings, enjoy superior soundproofing and bright, spacious living spaces.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏙️ \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Prime Location – Plateau, Gatineau\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Located in the heart of the Plateau, just steps from \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Parc Central, the Agora and its urban village, the municipal library\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", and all essential services. Only \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"10 minutes from downtown Ottawa\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", with quick access to public transportation, schools, medical clinics, restaurants, shops, and major retailers.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 The neighborhood also offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Dog park\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Community garden\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Outdoor skating rink\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Splash pad\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Children’s playgrounds\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"All-inclusive for maximum comfort:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ 5 appliances included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Internet included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Cable included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Outdoor parking included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Air conditioning\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Heat \u0026 electricity included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Storage spaces\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Window blinds included\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love this project:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"A modern and highly sought-after environment offering exceptional quality of life in one of Gatineau’s most desirable neighborhoods.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📋 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Rental conditions:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Minimum 12-month lease\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🐱🐶 Cats and dogs under 15 lbs accepted\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚭 Non-smoking complex\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📸 Model photos – units may vary\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" for more information or to schedule your visit!\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✨ \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Appartements contemporains tout inclus – Secteur du Plateau\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" ✨\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ces magnifiques appartements modernes tout inclus situés dans un immeuble haut de gamme de 4 étages, conçu pour offrir un style de vie alliant confort, tranquillité et modernité. Grâce à sa structure en béton armé et ses plafonds de 9 pieds, profitez d’une excellente insonorisation ainsi que d’espaces lumineux et élégants.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏙️ \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Emplacement exceptionnel – Plateau de Gatineau\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Situé au cœur du Plateau, à proximité immédiate du \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Parc Central, de l’Agora et de son village urbain, de la bibliothèque municipale\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", ainsi que de tous les services essentiels. À seulement \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"10 minutes du centre-ville d’Ottawa\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", avec un accès rapide au transport en commun, écoles, cliniques médicales, restaurants, commerces et grandes surfaces.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🌳 Le secteur offre également :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Parc à chiens\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Jardin communautaire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Patinoire extérieure\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Jeux d’eau\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Aires de jeux pour enfants\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Tout inclus pour un maximum de confort :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ 5 électroménagers inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Internet inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Câble inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Stationnement extérieur inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Air climatisé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Chauffage \u0026 électricité inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Espaces de rangement\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"✅ Stores aux fenêtres inclus\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez adorer ce projet :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Un environnement moderne et recherché offrant une qualité de vie exceptionnelle au cœur de l’un des secteurs les plus prisés de Gatineau.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📋 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Conditions de location :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Bail minimum de 12 mois\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🐱🐶 Chats et chiens de moins de 15 lb acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚭 Complexe non-fumeur\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📸 Photos modèles – les unités peuvent varier\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dès maintenant au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour plus d’informations ou pour planifier votre visite!\\\"}]}]}\",{\"_23\":24,\"_25\":1849,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":1850,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_175\":1668,\"_1669\":1670,\"_1671\":1672,\"_140\":1673,\"_210\":1674,\"_1675\":53,\"_172\":1676,\"_170\":1677,\"_1678\":51,\"_1679\":53,\"_1680\":1681,\"_1682\":1683},\"defaultView\",\"count\",\"filters\",{},\"configs\",{\"_1565\":1566,\"_1567\":1568,\"_1569\":1570,\"_1571\":1572,\"_1573\":1566,\"_1574\":1575,\"_1576\":1577},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[1654],\"analysisProductsPrice\",{\"_1654\":1655,\"_1656\":1657,\"_1658\":1659,\"_1660\":1661,\"_1662\":1659,\"_1663\":1659,\"_1664\":1665,\"_1666\":1667},\"notifications\",{\"_1636\":1637},\"form\",{\"_1629\":53,\"_1630\":51,\"_1631\":53,\"_1632\":53,\"_1633\":51,\"_1634\":51,\"_1635\":51},\"enabledSkus\",\"submissions\",{\"_1579\":1580,\"_1581\":1582,\"_1583\":1584,\"_1585\":1586,\"_27\":1587,\"_1588\":-5},\"agent\",{\"_1578\":51},\"hideAgentNewSubmissionBtn\",\"all\",[1615,1616,1617,1618,1619,1620,1621,1625,1626,1627,1628],\"steps\",[1615,1616,1617,1618,1619,1620,1621],\"badges\",[1605,1606,1607,1608,1609,1610],\"statuses\",[1599,1589,1591,1593,1595,1597,1600,1601,1602,1603,1604],{\"_1589\":1590,\"_1591\":1592,\"_1593\":1594,\"_1595\":1596,\"_1597\":1598},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_1611\":1589,\"_1613\":1590},{\"_1611\":1591,\"_1613\":1592},{\"_1611\":1593,\"_1613\":1594},{\"_1611\":1595,\"_1613\":1596},{\"_1611\":1597,\"_1613\":1598},{\"_1611\":1612,\"_1613\":1614},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_1611\":1599,\"_1613\":-5,\"_1622\":51},{\"_1611\":1589,\"_1613\":1590,\"_1622\":53,\"_1623\":51,\"_1624\":51},{\"_1611\":1591,\"_1613\":1592,\"_1622\":53,\"_1623\":51,\"_1624\":51},{\"_1611\":1593,\"_1613\":1594,\"_1622\":53,\"_1623\":51,\"_1624\":51},{\"_1611\":1595,\"_1613\":1596,\"_1622\":53,\"_1623\":51,\"_1624\":51},{\"_1611\":1597,\"_1613\":1598,\"_1622\":53,\"_1623\":51,\"_1624\":51},{\"_1611\":1600,\"_1613\":-5,\"_1622\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_1611\":1601,\"_1613\":-5,\"_1622\":51},{\"_1611\":1602,\"_1613\":-5,\"_1622\":51},{\"_1611\":1603,\"_1613\":-5,\"_1622\":51},{\"_1611\":1604,\"_1613\":-5,\"_1622\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_1576\":1638,\"_1639\":1640,\"_17\":1641,\"_1642\":1643},[1651,1652,1653],\"manager\",[],[1645,1646,1647,1648,1649,1650],\"admin\",[1644],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,[118,1848],\"pricePerMonth\",[118,1848],\"pricePerSqft\",[120,120],[120,1847],[767,1704],\"hasFloor\",[120,212],[120,1846],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758],\"availableNeighborhoods\",[1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701],{\"_1702\":1724,\"_1557\":118},{\"_1702\":1723,\"_1557\":118},{\"_1702\":1722,\"_1557\":118},{\"_1702\":1720,\"_1557\":1721},{\"_1702\":1719,\"_1557\":118},{\"_1702\":1718,\"_1557\":212},{\"_1702\":1717,\"_1557\":185},{\"_1702\":96,\"_1557\":1716},{\"_1702\":1714,\"_1557\":1715},{\"_1702\":1713,\"_1557\":212},{\"_1702\":1712,\"_1557\":118},{\"_1702\":201,\"_1557\":1711},{\"_1702\":912,\"_1557\":118},{\"_1702\":1709,\"_1557\":1710},{\"_1702\":1708,\"_1557\":212},{\"_1702\":1707,\"_1557\":118},{\"_1702\":1705,\"_1557\":1706},{\"_1702\":1703,\"_1557\":1704},\"name\",\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",5,26,\"plateau\",\"Old Gatineau\",\"Hull\",19,39,\"East Templeton\",\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"2\",\"1\",{\"_43\":1844,\"_1702\":1845,\"_38\":316},{\"_43\":1842,\"_1702\":1843,\"_38\":309},{\"_43\":1840,\"_1702\":1841,\"_38\":276},{\"_43\":1838,\"_1702\":1839,\"_38\":287},{\"_43\":1836,\"_1702\":1837,\"_38\":741},{\"_43\":1834,\"_1702\":1835,\"_38\":276},{\"_43\":1832,\"_1702\":1833,\"_38\":301},{\"_43\":1830,\"_1702\":1831,\"_38\":412},{\"_43\":1828,\"_1702\":1829,\"_38\":287},{\"_43\":1826,\"_1702\":1827,\"_38\":272},{\"_43\":1824,\"_1702\":1825,\"_38\":291},{\"_43\":1820,\"_1702\":1821,\"_38\":276},{\"_43\":1818,\"_1702\":1819,\"_38\":305},{\"_43\":1816,\"_1702\":1817,\"_38\":263},{\"_43\":1814,\"_1702\":1815,\"_38\":283},{\"_43\":1812,\"_1702\":1813,\"_38\":263},{\"_43\":1810,\"_1702\":1811,\"_38\":268},{\"_43\":1808,\"_1702\":1809,\"_38\":320},{\"_43\":1806,\"_1702\":1807,\"_38\":495},{\"_43\":1802,\"_1702\":1803,\"_38\":412},{\"_43\":1800,\"_1702\":1801,\"_38\":412},{\"_43\":1798,\"_1702\":1799,\"_38\":305},{\"_43\":1794,\"_1702\":1795,\"_38\":1796},{\"_43\":1792,\"_1702\":1793,\"_38\":305},{\"_43\":1788,\"_1702\":1789,\"_38\":291},{\"_43\":1784,\"_1702\":1785,\"_38\":316},{\"_43\":1782,\"_1702\":1783,\"_38\":320},{\"_43\":1780,\"_1702\":1781,\"_38\":263},{\"_43\":1775,\"_1702\":1776,\"_38\":1777},{\"_43\":1771,\"_1702\":1772,\"_38\":316},{\"_43\":1769,\"_1702\":1770,\"_38\":287},{\"_43\":1765,\"_1702\":1766,\"_38\":1767},{\"_43\":1761,\"_1702\":1762,\"_38\":291},{\"_43\":1759,\"_1702\":1760,\"_38\":276},\"counter-type\",{\"_264\":1142,\"_20\":1143},\"yard-access\",{\"_264\":1763,\"_20\":1764},\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_264\":1768,\"_20\":1768},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_264\":288,\"_20\":289},\"garage-parking\",{\"_264\":1773,\"_20\":1774},\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_264\":1778,\"_20\":1779},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_264\":265,\"_20\":266},\"microwave\",{\"_264\":555,\"_20\":556},\"underground-garage\",{\"_264\":1786,\"_20\":1787},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_264\":1790,\"_20\":1791},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_264\":313,\"_20\":314},\"gym\",{\"_264\":1797,\"_20\":1797},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_264\":572,\"_20\":573},\"small-dogs-allowed\",{\"_264\":413,\"_20\":414},\"large-dogs-allowed\",{\"_264\":1804,\"_20\":1805},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_264\":496,\"_20\":497},\"oven\",{\"_264\":321,\"_20\":322},\"refrigerator\",{\"_264\":269,\"_20\":270},\"cable\",{\"_264\":280,\"_20\":281},\"stove\",{\"_264\":284,\"_20\":285},\"fiber-internet\",{\"_264\":499,\"_20\":500},\"washer\",{\"_264\":306,\"_20\":307},\"elevator\",{\"_264\":1822,\"_20\":1823},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_264\":292,\"_20\":293},\"electricity\",{\"_264\":273,\"_20\":274},\"electric-heating\",{\"_264\":398,\"_20\":399},\"cats-allowed\",{\"_264\":416,\"_20\":417},\"blinds\",{\"_264\":302,\"_20\":303},\"water-tank\",{\"_264\":277,\"_20\":278},\"washer-dryer-outlet\",{\"_264\":742,\"_20\":743},\"central-air-conditioning\",{\"_264\":295,\"_20\":296},\"dishwasher\",{\"_264\":298,\"_20\":299},\"water\",{\"_264\":310,\"_20\":311},\"parking\",{\"_264\":317,\"_20\":318},4,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_1611\":1877,\"_43\":44,\"_1878\":1879,\"_48\":49,\"_33\":34,\"_27\":28,\"_1880\":1881,\"_23\":24,\"_29\":30,\"_1567\":1882,\"_1883\":1884,\"_1885\":1886,\"_1887\":1888,\"_40\":41,\"_1889\":1890,\"_1891\":1892,\"_42\":-5,\"_1893\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_1894\":-5,\"_1895\":-5,\"_1560\":1561,\"_1896\":1897,\"_1898\":1899,\"_1900\":1901,\"_38\":39,\"_1902\":1903,\"_35\":-7,\"_1904\":1905,\"_36\":1906,\"_1907\":1908,\"_1909\":1910,\"_25\":1911,\"_1565\":1912,\"_1913\":1914,\"_1915\":1916},\"toast\",\"user\",{\"_1863\":51,\"_1864\":-5,\"_1865\":-5,\"_1866\":-5,\"_1867\":-5,\"_1868\":-5,\"_1869\":-5,\"_1870\":-5,\"_1871\":-5,\"_1872\":-5,\"_62\":-5,\"_64\":-5,\"_1873\":-5,\"_138\":51,\"_1874\":51,\"_1875\":-5,\"_1876\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":2000},\"social\",{\"_1997\":1998,\"_1999\":72},{\"_1654\":1655,\"_1656\":1657,\"_1658\":1659,\"_1660\":1661,\"_1662\":1659,\"_1663\":1659,\"_1664\":1665,\"_1666\":1667},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_1994\":1956,\"_1597\":53,\"_1995\":51,\"_1996\":1951},\"plan\",{\"_1702\":1975,\"_1976\":72,\"_1977\":1978,\"_1979\":1980,\"_1981\":1982,\"_1983\":1984,\"_1985\":120,\"_1986\":1987,\"_1988\":120,\"_1989\":1990,\"_1991\":1716,\"_1992\":1993},\"metadata\",{\"_25\":1911},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_1968\":1969,\"_1883\":1884,\"_1970\":1971,\"_40\":41,\"_1972\":1973,\"_67\":1974},\"bucket\",{\"_1965\":44,\"_1966\":1967},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_1856\":1962,\"_1963\":1964},\"tosHistory\",[1951],{\"_1925\":53,\"_1926\":-7,\"_52\":53,\"_1927\":51,\"_1928\":51,\"_1929\":53,\"_1930\":53,\"_1931\":51,\"_1932\":51,\"_1933\":-7,\"_1934\":51,\"_1935\":51,\"_1936\":51,\"_1937\":1938,\"_1939\":51,\"_1578\":51,\"_1940\":-7,\"_1941\":-7,\"_1942\":-7,\"_1943\":51,\"_50\":51,\"_1944\":51,\"_54\":51,\"_1945\":1946,\"_1947\":53,\"_1948\":51,\"_1949\":51,\"_1950\":51},\"disabledModules\",[],\"banner\",{\"_264\":1923,\"_20\":1924},{\"_103\":104,\"_1921\":1922,\"_101\":102,\"_105\":106},[1654],\"payments\",{\"_1917\":53,\"_1918\":53,\"_1919\":51,\"_1920\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_1952\":1953,\"_1954\":1955,\"_1915\":1956,\"_1597\":53,\"_1595\":1957,\"_1958\":1959,\"_1960\":1961},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_2001\":2002},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/af1d633e9f8c61b50424.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?width=1200&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/10__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/10__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/13__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 31 Rue Lemieux, Gatineau</title><meta description="🔥 Charming Apartment for Rent in Gatineau – Heat Included! 🔥 Discover this beautiful apartment located in a quiet and convenient area o..."/><meta property="og:title" content="Halfred | Apartment rentals | Appartement à louer 31 Rue Lemieux, Gatineau"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content="🔥 Charming Apartment for Rent in Gatineau – Heat Included! 🔥 Discover this beautiful apartment located in a quiet and convenient area o..."/><meta property="og:image" content="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?version=da5644ce-a3af-43d0-a1c1-51144799682d"/><meta property="og:url" content="www.halfred.ca/listings/31-rue-lemieux/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/listing-detail.page-D34BzzZ7.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="f047f3512151840bd03bac02e03b9e22-8c204f05d4c28fe0-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=f047f3512151840bd03bac02e03b9e22,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.4802838912942814,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/31-rue-lemieux/details/gallery?index=0" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?width=800&amp;height=600&amp;quality=80" alt="maison Halfred | Apartment rentals à louer à Gatineau: 1 chambres, 31 Rue Lemieux" class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->1</div></div></div><div class="hidden sm:block"><div class="relative overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-96" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/31-rue-lemieux/details/gallery?index=0" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?width=1200&amp;height=600&amp;quality=80" alt="maison Halfred | Apartment rentals à louer à Gatineau: 1 chambres, 31 Rue Lemieux" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">31 Rue Lemieux</h1><p class="text-sm text-foreground-600">Gatineau (Hull)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>1169$</b> à <b>1375$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>1<!-- --> <!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>700<!-- --> <!-- --> - <!-- -->1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 février 2025</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_eiiiuatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description de l&#x27;annonce</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Charmant appartement à louer à Gatineau – Chauffage inclus!</strong> 🔥</p><p>Découvrez ce beau logement situé dans un secteur <strong>paisible et pratique de Gatineau</strong>, parfait pour une personne seule ou un couple recherchant un espace <strong>confortable, fonctionnel et bien entretenu</strong>.</p><p>🏡 <strong>Ce que vous offre le logement :</strong><br>• 🔥 Chauffage inclus<br>• 🚗 1 espace de stationnement inclus<br>• 🌞 Logement lumineux et agréable à vivre<br>• Disposition pratique et fonctionnelle<br>• 📍 Secteur tranquille à proximité des services essentiels</p><p>💡 <strong>Pourquoi vous allez l’aimer :</strong><br>Profitez d’un environnement calme tout en étant près des commerces, transports et commodités du quotidien.</p><p>📌 <strong>Informations importantes :</strong><br>• ⚡ Électricité non incluse<br>• 🚭 Logement non-fumeur<br>• ❌ Animaux non acceptés<br>• 🔍 Enquête de crédit obligatoire<br>• 📆 Bail minimum de 12 mois</p><p>📞 Contactez <strong>Halfred</strong> dès maintenant au <strong>819-593-3304</strong> pour plus d’informations ou pour planifier votre visite!</p></div></div></div></div><div class="border-b-[1px] pt-8 pb-8"><div class="space-y-3" data-sentry-component="UnitsSection" data-sentry-source-file="units-section.tsx"><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/31-rue-lemieux/details/gallery?unit=ec9e8f96-3f5a-40cd-8dc4-31200fb62e00" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/10__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?width=96&amp;height=72&amp;quality=80" alt="Location Halfred | Apartment rentals: maison spacieux, 1 chambres, Gatineau" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">23 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->2</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>1 chambre</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>700<!-- --> <!-- -->pieds carrés</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->3</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1169<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1275<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/31-rue-lemieux/details/gallery?unit=92f5f0dd-acab-405d-b272-4cd93f1b0ce5" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/10__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp?width=96&amp;height=72&amp;quality=80" alt="Halfred | Apartment rentals: Louez ce unité de 2 chambres à Gatineau, 31 Rue Lemieux" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">20 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->6</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1000<!-- --> <!-- -->pieds carrés</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->2</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1375<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1511<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/31-rue-lemieux/details/gallery?unit=4df571b4-d078-4dc6-8049-2b5d947b9ab0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/13__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp?width=96&amp;height=72&amp;quality=80" alt="Location Halfred | Apartment rentals: logement spacieux, 2 chambres, Gatineau" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">21 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->3</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1000<!-- --> <!-- -->pieds carrés</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->3</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1375<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1500<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/4df571b4-d078-4dc6-8049-2b5d947b9ab0/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="pr-8"><div class="flex justify-center space-x-8 pb-4 lg:justify-start" data-sentry-component="WalkScore" data-sentry-source-file="walk-score.tsx"><div class="flex flex-col items-center space-y-2 "><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de mobilité</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3b8uatij5_" aria-label="Walk score of 72" aria-valuenow="72" aria-valuemin="0" aria-valuemax="100" aria-valuetext="72" role="progressbar" data-sentry-element="CircularProgress" data-sentry-source-file="walk-score.tsx"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-default-400 w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">72</span></div></div></div><div class="flex flex-col items-center space-y-2"><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de vélo</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3j8uatij5_" aria-label="Bike score of 87" aria-valuenow="87" aria-valuemin="0" aria-valuemax="100" aria-valuetext="87" role="progressbar"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-success w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">87</span></div></div></div></div></div><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">31 Rue Lemieux</h1><p class="text-sm text-foreground-600">Gatineau (Hull)</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p>De <b>1169$</b> à <b>1375$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>1<!-- --> <!-- --> - <!-- -->2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>700<!-- --> <!-- --> - <!-- -->1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 février 2025</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_1qabeatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/listing-detail.page-D34BzzZ7.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicListingDetailPage": {
338 − "id": "PublicListingDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/:slug/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/listing-detail.page-D34BzzZ7.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/index-C5vezUBD.js",
354 − "/assets/seo.helpers-DUWcGrSj.js",
355 − "/assets/should-revalidate-for-modal-CqioTNup.js",
356 − "/assets/listing-card-vLpuwroq.js",
357 − "/assets/types-BlrrbiGM.js",
358 − "/assets/use-tenant-BWWCVgWC.js",
359 − "/assets/index-DoORTE4j.js",
360 − "/assets/icon-ChitaFhd.js",
361 − "/assets/chunk-T45N425O-C34bNx0L.js",
362 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
363 − "/assets/preload-helper-Djj1Qpxo.js",
364 − "/assets/index-yaZ7Ke31.js",
365 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
366 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
367 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
368 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
369 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
370 − "/assets/settings.types-DE5bLdHg.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicListingDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_686\":-5,\"_687\":-7,\"_688\":689,\"_690\":691,\"_19\":20,\"_17\":692,\"_693\":-5,\"_694\":695,\"_349\":350,\"_696\":-5,\"_697\":-5},\"PublicListingsLayoutPage\",{\"_17\":339,\"_340\":341,\"_342\":343,\"_344\":53,\"_345\":346,\"_347\":348,\"_349\":350,\"_351\":51,\"_352\":51,\"_353\":51},\"PublicListingDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":147,\"_148\":149,\"_89\":150,\"_151\":150,\"_77\":96,\"_152\":153,\"_154\":155,\"_108\":156,\"_111\":157,\"_109\":158,\"_33\":159,\"_160\":161,\"_162\":163,\"_164\":-5,\"_165\":-5,\"_166\":167,\"_168\":53,\"_169\":170,\"_171\":172},\"auth\",{\"_145\":53,\"_146\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136,\"_137\":138,\"_139\":140},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/31-rue-lemieux/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",72,\"Very Walkable\",\"updated\",\"2026-02-24 23:25:30.604041\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/31Rue-Lemieux/lat=45.461495/lng=-75.76689/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.462,\"snapped_lon\",-75.7665,\"transit\",{\"_33\":-5,\"_144\":-5,\"_142\":-5},\"bike\",{\"_33\":141,\"_142\":143},\"Very Bikeable\",\"score\",87,\"summary\",\"loggedIn\",\"isStaff\",\"31-rue-lemieux\",\"area\",700,\"31 Rue Lemieux\",\"name\",\"buildingId\",\"668601f2-6411-4927-81df-0532c9fd877b\",\"availabilty\",[\"D\",1738368000000],\"Hull\",-75.76689,45.461495,{\"_215\":337,\"_20\":338},\"images\",[336],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[320,321,322,323,324],\"listed\",\"units\",[189,190,191],\"cardData\",{\"_43\":147,\"_89\":150,\"_77\":96,\"_108\":156,\"_109\":158,\"_111\":157,\"_173\":-5,\"_174\":175,\"_176\":177,\"_148\":178,\"_179\":180,\"_181\":182},\"unitId\",\"bedrooms\",[118,188],\"bathrooms\",[118],[149,187],\"price\",[185,186],\"availability\",[183,184],\"2025-02-01T00:00:00.000Z\",\"2026-06-15T00:00:00.000Z\",1275,1511,1000,2,{\"_43\":275,\"_148\":149,\"_193\":-5,\"_179\":185,\"_174\":118,\"_176\":118,\"_195\":276,\"_160\":277,\"_168\":53,\"_198\":199,\"_200\":201,\"_202\":203,\"_181\":278,\"_205\":-5,\"_206\":-5,\"_207\":279,\"_36\":280},{\"_43\":248,\"_148\":187,\"_193\":-5,\"_179\":186,\"_174\":188,\"_176\":118,\"_195\":249,\"_160\":250,\"_168\":53,\"_198\":199,\"_200\":201,\"_202\":203,\"_181\":251,\"_205\":-5,\"_206\":-5,\"_207\":252,\"_36\":253},{\"_43\":192,\"_148\":187,\"_193\":-5,\"_179\":194,\"_174\":188,\"_176\":118,\"_195\":196,\"_160\":197,\"_168\":53,\"_198\":199,\"_200\":201,\"_202\":203,\"_181\":204,\"_205\":-5,\"_206\":-5,\"_207\":208,\"_36\":209},\"4df571b4-d078-4dc6-8049-2b5d947b9ab0\",\"floor\",1500,\"alias\",\"3\",[227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1777593600000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_179\":225,\"_33\":226},[210,211,212],{\"_90\":221,\"_38\":222},{\"_90\":218,\"_38\":214},{\"_90\":213,\"_38\":214},{\"_215\":216,\"_20\":217},\"lucide:check\",\"en\",\"Water Tank\",\"Réservoir d'eau\",{\"_215\":219,\"_20\":220},\"Dishwasher\",\"Lave-vaisselle\",{\"_215\":223,\"_20\":224},\"lucide:droplet\",\"Water\",\"Eau\",1375,\"*** promotion pour un bail de 12 mois ** \",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/13__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/12__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/14__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/16__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/10__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/11__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/15__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/17__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/18__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/19__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/20__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/21__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/22__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/23__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/3__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/4__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/5__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/6__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/7__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/8__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"/storage/v1/object/public/halfred/units/4df571b4-d078-4dc6-8049-2b5d947b9ab0/9__4df571b4-d078-4dc6-8049-2b5d947b9ab0.webp\",\"92f5f0dd-acab-405d-b272-4cd93f1b0ce5\",\"6\",[255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274],[\"D\",1781481600000],{\"_179\":225,\"_33\":254},[],\"*** Prix promotionnelle pour un bail de 12 mois ***\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/10__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/11__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/13__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/9__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/12__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/14__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/19__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/1__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/20__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/2__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/3__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/4__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/5__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/6__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/7__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/8__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/18__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/15__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/16__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"/storage/v1/object/public/halfred/units/92f5f0dd-acab-405d-b272-4cd93f1b0ce5/17__92f5f0dd-acab-405d-b272-4cd93f1b0ce5.webp\",\"ec9e8f96-3f5a-40cd-8dc4-31200fb62e00\",\"2\",[297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319],[\"D\",1738368000000],{\"_179\":295,\"_33\":296},[281,282,283,284],{\"_90\":294,\"_38\":222},{\"_90\":290,\"_38\":291},{\"_90\":286,\"_38\":287},{\"_90\":285,\"_38\":214},{\"_215\":216,\"_20\":217},{\"_215\":288,\"_20\":289},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",{\"_215\":292,\"_20\":293},\"lucide:washing-machine\",\"Laundry Room\",\"Buanderie\",{\"_215\":223,\"_20\":224},1169,\"** Promotion pour un bail de 12 mois **\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/10__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=1735c26a-8c07-438d-8b5e-520664ffee43\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/11__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=00b8df63-767a-486d-8dcf-af281dbfef08\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/12__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=7bc96a26-e6c3-4e1d-9ae1-44949bb543b5\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/13__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=163921fa-996c-42f4-b776-aeeb6d3f6dcf\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/14__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=ae1ed7a4-e8df-468d-a8c8-86417bff1817\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/15__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=d7252885-39ee-4921-9730-a63f1b4b389b\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/16__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=03375710-9514-42f1-8a68-eae70e4b80c8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/17__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=163eb324-cf91-4cb1-95a9-8a11ba07f79f\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/18__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=495cd8f1-e4a4-420c-bebe-375a72a82162\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/19__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=6c150f32-c746-4653-9363-66aa6ada50b8\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/1__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=50f3b022-60a7-4ce2-88fe-eb1638b6791a\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/20__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=3a95d5c9-932c-4aa5-bbed-8dc8b04af0ed\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/21__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=332232ff-40d1-40b7-b533-5b4160e79511\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/22__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=1864a52b-b9f8-4b9e-bf77-f2197858f42c\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/23__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=4974905a-8cf2-4fec-9461-c99164a4e0e4\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/2__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=67d8d976-acb2-4cb0-9d59-6ace903cfaa1\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/3__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=d2acc924-f966-413e-918e-583b5f4401ad\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/4__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=77277d40-c252-4d2e-97d9-fa3a9fd7fefb\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/5__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=518280e0-4f23-4e89-be69-714015b7e31e\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/6__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=cd3214b0-673f-49e7-bf03-cdc4e04c8232\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/7__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=e282e4e4-0d63-4e72-8481-0edce133abde\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/8__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=28240901-1bed-4788-8f2e-3c51021d0667\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/units/ec9e8f96-3f5a-40cd-8dc4-31200fb62e00/9__ec9e8f96-3f5a-40cd-8dc4-31200fb62e00.webp?version=f6531e29-45ba-402a-908c-af8c20942955\",{\"_90\":335,\"_38\":287},{\"_90\":331,\"_38\":332},{\"_90\":330,\"_38\":222},{\"_90\":326,\"_38\":327},{\"_90\":325,\"_38\":214},{\"_215\":216,\"_20\":217},{\"_215\":328,\"_20\":329},\"lucide:paw-print\",\"Cats Allowed\",\"Chats autorisés\",{\"_215\":223,\"_20\":224},{\"_215\":333,\"_20\":334},\"lucide:car\",\"Parking\",\"Stationnement\",{\"_215\":288,\"_20\":289},\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/buildings/668601f2-6411-4927-81df-0532c9fd877b/0__668601f2-6411-4927-81df-0532c9fd877b.webp?version=da5644ce-a3af-43d0-a1c1-51144799682d\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Charming Apartment for Rent in Gatineau – Heat Included!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover this beautiful apartment located in a \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"quiet and convenient area of Gatineau\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", perfect for a single person or a couple looking for a \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"comfortable, functional, and well-maintained living space\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What this unit offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🔥 Heat included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 parking space included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🌞 Bright and welcoming living space\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Functional and practical layout\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📍 Peaceful neighborhood close to essential services\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Enjoy a calm environment while staying close to shops, transportation, and everyday conveniences.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Electricity not included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚭 Non-smoking unit\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ No pets allowed\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🔍 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Minimum 12-month lease\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" for more information or to schedule your visit!\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Charmant appartement à louer à Gatineau – Chauffage inclus!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ce beau logement situé dans un secteur \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"paisible et pratique de Gatineau\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", parfait pour une personne seule ou un couple recherchant un espace \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"confortable, fonctionnel et bien entretenu\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\".\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce que vous offre le logement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🔥 Chauffage inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 espace de stationnement inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🌞 Logement lumineux et agréable à vivre\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Disposition pratique et fonctionnelle\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📍 Secteur tranquille à proximité des services essentiels\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’aimer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Profitez d’un environnement calme tout en étant près des commerces, transports et commodités du quotidien.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ⚡ Électricité non incluse\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚭 Logement non-fumeur\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• ❌ Animaux non acceptés\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🔍 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Bail minimum de 12 mois\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dès maintenant au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour plus d’informations ou pour planifier votre visite!\\\"}]}]}\",{\"_23\":24,\"_25\":684,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":685,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_179\":457,\"_458\":459,\"_460\":461,\"_148\":462,\"_193\":463,\"_464\":53,\"_176\":465,\"_174\":466,\"_467\":51,\"_468\":53,\"_469\":470,\"_471\":472},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_354\":355,\"_356\":357,\"_358\":359,\"_360\":361,\"_362\":355,\"_363\":364,\"_365\":366},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[443],\"analysisProductsPrice\",{\"_443\":444,\"_445\":446,\"_447\":448,\"_449\":450,\"_451\":448,\"_452\":448,\"_453\":454,\"_455\":456},\"notifications\",{\"_425\":426},\"form\",{\"_418\":53,\"_419\":51,\"_420\":53,\"_421\":53,\"_422\":51,\"_423\":51,\"_424\":51},\"enabledSkus\",\"submissions\",{\"_368\":369,\"_370\":371,\"_372\":373,\"_374\":375,\"_27\":376,\"_377\":-5},\"agent\",{\"_367\":51},\"hideAgentNewSubmissionBtn\",\"all\",[404,405,406,407,408,409,410,414,415,416,417],\"steps\",[404,405,406,407,408,409,410],\"badges\",[394,395,396,397,398,399],\"statuses\",[388,378,380,382,384,386,389,390,391,392,393],{\"_378\":379,\"_380\":381,\"_382\":383,\"_384\":385,\"_386\":387},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_400\":378,\"_402\":379},{\"_400\":380,\"_402\":381},{\"_400\":382,\"_402\":383},{\"_400\":384,\"_402\":385},{\"_400\":386,\"_402\":387},{\"_400\":401,\"_402\":403},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_400\":388,\"_402\":-5,\"_411\":51},{\"_400\":378,\"_402\":379,\"_411\":53,\"_412\":51,\"_413\":51},{\"_400\":380,\"_402\":381,\"_411\":53,\"_412\":51,\"_413\":51},{\"_400\":382,\"_402\":383,\"_411\":53,\"_412\":51,\"_413\":51},{\"_400\":384,\"_402\":385,\"_411\":53,\"_412\":51,\"_413\":51},{\"_400\":386,\"_402\":387,\"_411\":53,\"_412\":51,\"_413\":51},{\"_400\":389,\"_402\":-5,\"_411\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_400\":390,\"_402\":-5,\"_411\":51},{\"_400\":391,\"_402\":-5,\"_411\":51},{\"_400\":392,\"_402\":-5,\"_411\":51},{\"_400\":393,\"_402\":-5,\"_411\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_365\":427,\"_428\":429,\"_17\":430,\"_431\":432},[440,441,442],\"manager\",[],[434,435,436,437,438,439],\"admin\",[433],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,[118,683],\"pricePerMonth\",[118,683],\"pricePerSqft\",[346,346],[346,682],[681,492],\"hasFloor\",[346,188],[346,680],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547],\"availableNeighborhoods\",[473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490],{\"_151\":513,\"_345\":118},{\"_151\":276,\"_345\":118},{\"_151\":512,\"_345\":118},{\"_151\":510,\"_345\":511},{\"_151\":509,\"_345\":118},{\"_151\":508,\"_345\":188},{\"_151\":506,\"_345\":507},{\"_151\":96,\"_345\":505},{\"_151\":156,\"_345\":504},{\"_151\":503,\"_345\":188},{\"_151\":502,\"_345\":118},{\"_151\":500,\"_345\":501},{\"_151\":499,\"_345\":118},{\"_151\":497,\"_345\":498},{\"_151\":496,\"_345\":188},{\"_151\":495,\"_345\":118},{\"_151\":493,\"_345\":494},{\"_151\":491,\"_345\":492},\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",5,\"Plateau \",\"Plateau\",26,\"plateau\",\"Old Gatineau\",19,39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"1\",{\"_43\":678,\"_151\":679,\"_38\":332},{\"_43\":676,\"_151\":677,\"_38\":222},{\"_43\":674,\"_151\":675,\"_38\":214},{\"_43\":670,\"_151\":671,\"_38\":287},{\"_43\":665,\"_151\":666,\"_38\":667},{\"_43\":663,\"_151\":664,\"_38\":214},{\"_43\":658,\"_151\":659,\"_38\":660},{\"_43\":656,\"_151\":657,\"_38\":327},{\"_43\":652,\"_151\":653,\"_38\":287},{\"_43\":647,\"_151\":648,\"_38\":649},{\"_43\":643,\"_151\":644,\"_38\":554},{\"_43\":639,\"_151\":640,\"_38\":214},{\"_43\":635,\"_151\":636,\"_38\":291},{\"_43\":631,\"_151\":632,\"_38\":574},{\"_43\":626,\"_151\":627,\"_38\":628},{\"_43\":622,\"_151\":623,\"_38\":574},{\"_43\":617,\"_151\":618,\"_38\":619},{\"_43\":613,\"_151\":614,\"_38\":579},{\"_43\":608,\"_151\":609,\"_38\":610},{\"_43\":604,\"_151\":605,\"_38\":327},{\"_43\":600,\"_151\":601,\"_38\":327},{\"_43\":598,\"_151\":599,\"_38\":291},{\"_43\":594,\"_151\":595,\"_38\":596},{\"_43\":590,\"_151\":591,\"_38\":291},{\"_43\":586,\"_151\":587,\"_38\":554},{\"_43\":582,\"_151\":583,\"_38\":332},{\"_43\":577,\"_151\":578,\"_38\":579},{\"_43\":572,\"_151\":573,\"_38\":574},{\"_43\":567,\"_151\":568,\"_38\":569},{\"_43\":563,\"_151\":564,\"_38\":332},{\"_43\":561,\"_151\":562,\"_38\":287},{\"_43\":557,\"_151\":558,\"_38\":559},{\"_43\":552,\"_151\":553,\"_38\":554},{\"_43\":548,\"_151\":549,\"_38\":214},\"counter-type\",{\"_215\":550,\"_20\":551},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_215\":555,\"_20\":556},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_215\":560,\"_20\":560},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_215\":288,\"_20\":289},\"garage-parking\",{\"_215\":565,\"_20\":566},\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_215\":570,\"_20\":571},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_215\":575,\"_20\":576},\"lucide:wifi\",\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_215\":580,\"_20\":581},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_215\":584,\"_20\":585},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_215\":588,\"_20\":589},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_215\":592,\"_20\":593},\"Dryer\",\"Sèche-linge\",\"gym\",{\"_215\":597,\"_20\":597},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_215\":292,\"_20\":293},\"small-dogs-allowed\",{\"_215\":602,\"_20\":603},\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_215\":606,\"_20\":607},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_215\":611,\"_20\":612},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_215\":615,\"_20\":616},\"Oven\",\"Four\",\"refrigerator\",{\"_215\":620,\"_20\":621},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_215\":624,\"_20\":625},\"Cable\",\"Câble\",\"stove\",{\"_215\":629,\"_20\":630},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_215\":633,\"_20\":634},\"Fiber Internet\",\"Internet fibre\",\"washer\",{\"_215\":637,\"_20\":638},\"Washer\",\"Laveuse\",\"elevator\",{\"_215\":641,\"_20\":642},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_215\":645,\"_20\":646},\"Balcony\",\"Balcon\",\"electricity\",{\"_215\":650,\"_20\":651},\"lucide:lightbulb\",\"Electricity\",\"Électricité\",\"electric-heating\",{\"_215\":654,\"_20\":655},\"Electric Heating\",\"Chauffage Électrique\",\"cats-allowed\",{\"_215\":328,\"_20\":329},\"blinds\",{\"_215\":661,\"_20\":662},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_215\":216,\"_20\":217},\"washer-dryer-outlet\",{\"_215\":668,\"_20\":669},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"central-air-conditioning\",{\"_215\":672,\"_20\":673},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_215\":219,\"_20\":220},\"water\",{\"_215\":223,\"_20\":224},\"parking\",{\"_215\":333,\"_20\":334},4,-1,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_400\":712,\"_43\":44,\"_713\":714,\"_48\":49,\"_33\":34,\"_27\":28,\"_715\":716,\"_23\":24,\"_29\":30,\"_356\":717,\"_718\":719,\"_720\":721,\"_722\":723,\"_40\":41,\"_724\":725,\"_726\":727,\"_42\":-5,\"_728\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_729\":-5,\"_730\":-5,\"_349\":350,\"_731\":732,\"_733\":734,\"_735\":736,\"_38\":39,\"_737\":738,\"_35\":-7,\"_739\":740,\"_36\":741,\"_742\":743,\"_744\":745,\"_25\":746,\"_354\":747,\"_748\":749,\"_750\":751},\"toast\",\"user\",{\"_698\":51,\"_699\":-5,\"_700\":-5,\"_701\":-5,\"_702\":-5,\"_703\":-5,\"_704\":-5,\"_705\":-5,\"_706\":-5,\"_707\":-5,\"_62\":-5,\"_64\":-5,\"_708\":-5,\"_146\":51,\"_709\":51,\"_710\":-5,\"_711\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":835},\"social\",{\"_832\":833,\"_834\":72},{\"_443\":444,\"_445\":446,\"_447\":448,\"_449\":450,\"_451\":448,\"_452\":448,\"_453\":454,\"_455\":456},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_829\":791,\"_386\":53,\"_830\":51,\"_831\":786},\"plan\",{\"_151\":810,\"_811\":72,\"_812\":813,\"_814\":815,\"_816\":817,\"_818\":819,\"_820\":346,\"_821\":822,\"_823\":346,\"_824\":825,\"_826\":505,\"_827\":828},\"metadata\",{\"_25\":746},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_803\":804,\"_718\":719,\"_805\":806,\"_40\":41,\"_807\":808,\"_67\":809},\"bucket\",{\"_800\":44,\"_801\":802},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_691\":797,\"_798\":799},\"tosHistory\",[786],{\"_760\":53,\"_761\":-7,\"_52\":53,\"_762\":51,\"_763\":51,\"_764\":53,\"_765\":53,\"_766\":51,\"_767\":51,\"_768\":-7,\"_769\":51,\"_770\":51,\"_771\":51,\"_772\":773,\"_774\":51,\"_367\":51,\"_775\":-7,\"_776\":-7,\"_777\":-7,\"_778\":51,\"_50\":51,\"_779\":51,\"_54\":51,\"_780\":781,\"_782\":53,\"_783\":51,\"_784\":51,\"_785\":51},\"disabledModules\",[],\"banner\",{\"_215\":758,\"_20\":759},{\"_103\":104,\"_756\":757,\"_101\":102,\"_105\":106},[443],\"payments\",{\"_752\":53,\"_753\":53,\"_754\":51,\"_755\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_787\":788,\"_789\":790,\"_750\":791,\"_386\":53,\"_384\":792,\"_793\":794,\"_795\":796},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_836\":837},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
deleted tests/fixtures/halfred/c1b2aa40beb562b3c381.html +0 −842
@@ -1,842 +0,0 @@
1 −<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg?width=800&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg?width=1200&amp;height=600&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114192.jpg?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-018.jpg?width=96&amp;height=72&amp;quality=80"/><link rel="preload" as="image" href="/eversa.png"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><title>Halfred | Apartment rentals | 29 Rue Lemieux, Gatineau</title><meta description="🔥 Beautiful Apartment for Rent – 29 Lemieux | Prime Hull Location! 🔥 Discover this beautiful apartment ideally located in a sought-after..."/><meta property="og:title" content="Halfred | Apartment rentals | Appartement à louer 29 Rue Lemieux, Gatineau"/><meta property="og:locale:alternate" content="en_CA"/><meta property="og:locale:alternate" content="fr_CA"/><meta property="og:locale:alternate" content="fr_FR"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta name="og:description" content="🔥 Beautiful Apartment for Rent – 29 Lemieux | Prime Hull Location! 🔥 Discover this beautiful apartment ideally located in a sought-after..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg"/><meta property="og:url" content="www.halfred.ca/listings/29-rue-lemieux/details"/><meta property="og:type" content="website"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-D3Lor9BQ.js"/><link rel="modulepreload" href="/assets/jsx-runtime-BfnRc3yc.js"/><link rel="modulepreload" href="/assets/debug-build-DNp6-6bg.js"/><link rel="modulepreload" href="/assets/index-C5vezUBD.js"/><link rel="modulepreload" href="/assets/index-DoORTE4j.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-DDCENzgx.js"/><link rel="modulepreload" href="/assets/index-CeC9Jgeb.js"/><link rel="modulepreload" href="/assets/root-CQ5pwbN3.js"/><link rel="modulepreload" href="/assets/index-DxlXt7ah.js"/><link rel="modulepreload" href="/assets/index-7d5art0_.js"/><link rel="modulepreload" href="/assets/QueryClientProvider-CFsx2e_E.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-CqioTNup.js"/><link rel="modulepreload" href="/assets/client-COEiaTPU.js"/><link rel="modulepreload" href="/assets/button-CI3vN0fP.js"/><link rel="modulepreload" href="/assets/icon-ChitaFhd.js"/><link rel="modulepreload" href="/assets/use-auth-D5U5KUh0.js"/><link rel="modulepreload" href="/assets/use-tenant-BWWCVgWC.js"/><link rel="modulepreload" href="/assets/index-Jaw8JklF.js"/><link rel="modulepreload" href="/assets/google-analytics-ktjxgVBo.js"/><link rel="modulepreload" href="/assets/use-hydrated-D950Dr4H.js"/><link rel="modulepreload" href="/assets/index-BDJ4CSmQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-CRj2Icm-.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-D5FlEFg8.js"/><link rel="modulepreload" href="/assets/context-wzUK1HrR.js"/><link rel="modulepreload" href="/assets/preload-helper-Djj1Qpxo.js"/><link rel="modulepreload" href="/assets/useModal-CeS5iZMH.js"/><link rel="modulepreload" href="/assets/root.not-found-TB-qAbRU.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DMIWGDya.js"/><link rel="modulepreload" href="/assets/show-4ksMJO84.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-CW2YKheb.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-DGb5i0-T.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-C34bNx0L.js"/><link rel="modulepreload" href="/assets/index-CkqJ5zxX.js"/><link rel="modulepreload" href="/assets/eversa-modal-BB1_Xp8i.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-C7vSoMzJ.js"/><link rel="modulepreload" href="/assets/chunk-736YWA4T-CxSGr_Ie.js"/><link rel="modulepreload" href="/assets/useDialog-gW_0vaQG.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-Bws6oXbu.js"/><link rel="modulepreload" href="/assets/isScrollable-BgFbDMO0.js"/><link rel="modulepreload" href="/assets/useLabels-DROhzITC.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-DX5JHa0N.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-BPJVUQfz.js"/><link rel="modulepreload" href="/assets/index-yaZ7Ke31.js"/><link rel="modulepreload" href="/assets/FocusScope-DMvIZi1w.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BdBYX_kK.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-BxqwFvox.js"/><link rel="modulepreload" href="/assets/useControlledState-XDkshuLc.js"/><link rel="modulepreload" href="/assets/mergeRefs-BAuglitV.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-Bb2mnKES.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-BGNFvi-g.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-Ck4vZ9He.js"/><link rel="modulepreload" href="/assets/proxy-DfkJuQz0.js"/><link rel="modulepreload" href="/assets/create-visual-element-ZgQz5_Xg.js"/><link rel="modulepreload" href="/assets/accelerated-values-Ceq7jgwI.js"/><link rel="modulepreload" href="/assets/layout-D897SnWT.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-Bwf5cB-7.js"/><link rel="modulepreload" href="/assets/use-email-otp-auth-Dotj0x79.js"/><link rel="modulepreload" href="/assets/useFormValidation-DV_spCMP.js"/><link rel="modulepreload" href="/assets/useControlledState-DQzmlyV_.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-DOVX7Ccp.js"/><link rel="modulepreload" href="/assets/roles-DMMiQTyo.js"/><link rel="modulepreload" href="/assets/types-BlrrbiGM.js"/><link rel="modulepreload" href="/assets/modal-BFX8Hcaa.js"/><link rel="modulepreload" href="/assets/index-DtAX5rCj.js"/><link rel="modulepreload" href="/assets/index-BWrthP4T.js"/><link rel="modulepreload" href="/assets/index-C3aLSQj3.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-DqDYtEQx.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DN_qeIIW.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-LMU0oTtF.js"/><link rel="modulepreload" href="/assets/useField-Bmx16mGJ.js"/><link rel="modulepreload" href="/assets/useLabel-C485U_L6.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-D515YSCq.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-Drue2GdO.js"/><link rel="modulepreload" href="/assets/index-D0MIspu5.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-O_I1H6Jr.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-4qoeZ5p-.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-CyJ86LKj.js"/><link rel="modulepreload" href="/assets/index-BnPmUpYq.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-BtfYkZW0.js"/><link rel="modulepreload" href="/assets/listings-layout.page-fudZCuk6.js"/><link rel="modulepreload" href="/assets/runtime-DIxKkQKN.js"/><link rel="modulepreload" href="/assets/global-progress-_e55169v.js"/><link rel="modulepreload" href="/assets/facebook-pixel-DaCAk2xn.js"/><link rel="modulepreload" href="/assets/header-DHYopbVz.js"/><link rel="modulepreload" href="/assets/footer-B1woW9rk.js"/><link rel="modulepreload" href="/assets/listing-card-vLpuwroq.js"/><link rel="modulepreload" href="/assets/listingTypes-DriVo5bw.js"/><link rel="modulepreload" href="/assets/floor-label-CflkOBoK.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-CsXbA6WT.js"/><link rel="modulepreload" href="/assets/number-BTko6OQO.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-CoKItVmT.js"/><link rel="modulepreload" href="/assets/NumberFormatter-C5-jiHvj.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-B1XlP2n6.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-BrI7gbrL.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-Df-iONO0.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-mpJWhBr_.js"/><link rel="modulepreload" href="/assets/useToggleState-CuQlkmOj.js"/><link rel="modulepreload" href="/assets/useToggle-DvTjx68e.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-DVp3AbGE.js"/><link rel="modulepreload" href="/assets/useButton-DpP98b4N.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-BObnhHJ0.js"/><link rel="modulepreload" href="/assets/index-3DzB9Uk2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dqa76uUL.js"/><link rel="modulepreload" href="/assets/SelectionManager-8Hskx3sY.js"/><link rel="modulepreload" href="/assets/scrollIntoView-CC6GVFhU.js"/><link rel="modulepreload" href="/assets/useSelectableList-CXujeS_9.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-DFeK-_9X.js"/><link rel="modulepreload" href="/assets/useCollator-Fuf-UA_6.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-BDoTuzRJ.js"/><link rel="modulepreload" href="/assets/index-D-QzV5oA.js"/><link rel="modulepreload" href="/assets/Item-DkDXZBz9.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-BaNCM-YY.js"/><link rel="modulepreload" href="/assets/storage-image-C6eMpyTJ.js"/><link rel="modulepreload" href="/assets/empty-image-BpIKAHRR.js"/><link rel="modulepreload" href="/assets/storage-jxJOIM7G.js"/><link rel="modulepreload" href="/assets/use-debounce-C3COWfZf.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-y3H-ARAr.js"/><link rel="modulepreload" href="/assets/language-switcher-B_wuY4E-.js"/><link rel="modulepreload" href="/assets/user-menu-DExrpneA.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-BkxThqgM.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-BhwLuGgH.js"/><link rel="modulepreload" href="/assets/Section-C964evx_.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-CfK_EVGp.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-ByWftuvY.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-Cy5L-wTu.js"/><link rel="modulepreload" href="/assets/getItemCount-Crui8d86.js"/><link rel="modulepreload" href="/assets/useSelectableItem-CAYhKQ6f.js"/><link rel="modulepreload" href="/assets/useDescription-C0BDNkOP.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-BqO-tvnv.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-D7_8ZcRM.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-DUkI5JNB.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Dr-zsvi0.js"/><link rel="modulepreload" href="/assets/index-B9ugVS9k.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-Bk3guiez.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-CJRJ6nub.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-DES2-BO0.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-6OsJY52a.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-BB61Ptvq.js"/><link rel="modulepreload" href="/assets/settings.types-DE5bLdHg.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-fI1VJT5m.js"/><link rel="modulepreload" href="/assets/useProgressBar-BHwKhJ6d.js"/><link rel="modulepreload" href="/assets/index-tlxTS5dy.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-D_MMROaD.js"/><link rel="modulepreload" href="/assets/chunk-LXQE2FYM-BPtMgrUY.js"/><link rel="modulepreload" href="/assets/date-CSj-D1fs.js"/><link rel="modulepreload" href="/assets/CalendarDate-ecH25Spu.js"/><link rel="modulepreload" href="/assets/format-leGP5Oeh.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-BwQcUPIh.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-DcLcqZIY.js"/><link rel="modulepreload" href="/assets/link-DBd_8VBO.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Bx3w98cJ.js"/><link rel="modulepreload" href="/assets/rich-text-display-BlrZ_1h7.js"/><link rel="modulepreload" href="/assets/utils-CvVRVFAc.js"/><link rel="modulepreload" href="/assets/signature-block-C-ZZEVGr.js"/><link rel="modulepreload" href="/assets/use-rich-text-editor-osHrkC4A.js"/><link rel="modulepreload" href="/assets/client-only-BvFCVX3P.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-BbU9ptcF.js"/><link rel="modulepreload" href="/assets/index-BL9R5Cz9.js"/><link rel="modulepreload" href="/assets/zod-DGDtP7Md.js"/><link rel="modulepreload" href="/assets/use-server-command-CsT9c6Aj.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-B8Zub-nw.js"/><link rel="modulepreload" href="/assets/form-hidden-input-PkDAaWy5.js"/><link rel="modulepreload" href="/assets/form-input-CIKylvmI.js"/><link rel="modulepreload" href="/assets/input-B_zvg1Nd.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-CPnXltB8.js"/><link rel="modulepreload" href="/assets/extends-BQWZ3hUO.js"/><link rel="modulepreload" href="/assets/system-preferences-DWMBYQ-w.js"/><link rel="modulepreload" href="/assets/app-form-D4qVp9Qh.js"/><link rel="modulepreload" href="/assets/spinner-DfOLdSP8.js"/><link rel="modulepreload" href="/assets/use-in-view-BcUotcrM.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-DB3U-oS0.js"/><link rel="modulepreload" href="/assets/listing-detail.page-D34BzzZ7.js"/><link rel="modulepreload" href="/assets/seo.helpers-DUWcGrSj.js"/><link rel="stylesheet" href="/assets/root-OE7dqe-N.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/listing-card-BJU93aco.css"/><link rel="stylesheet" href="/assets/use-rich-text-editor-D9Rskyfk.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="586a84b57108ee356ae622878fad2528-314610ad33d8b42b-1"/>
2 −<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260804-99fda6a,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=586a84b57108ee356ae622878fad2528,sentry-org_id=476518,sentry-transaction=GET%20%2Flistings%2F%3Aslug%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.4613668412627451,sentry-sample_rate=1"/></head><body class="font-montserrat h-full"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 − window.dataLayer = window.dataLayer || [];
4 − (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 − new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 − j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 − 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 − })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 − </script><script async="" id="gtag-init">
10 − window.dataLayer = window.dataLayer || [];
11 − function gtag(){dataLayer.push(arguments);}
12 − gtag('js', new Date());
13 −
14 − gtag('config', 'AW-10996299223', {
15 − page_path: window.location.pathname,
16 − });
17 − </script><script>
18 − !function(f,b,e,v,n,t,s)
19 − {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 − n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 − if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 − n.queue=[];t=b.createElement(e);t.async=!0;
23 − t.src=v;s=b.getElementsByTagName(e)[0];
24 − s.parentNode.insertBefore(t,s)}(window, document,'script',
25 − 'https://connect.facebook.net/en_US/fbevents.js');
26 − fbq('init', '559624543506935');
27 − fbq('track', 'PageView');
28 − </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-[var(--header-height)]" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><nav data-sentry-element="Navbar" data-sentry-component="Header" data-sentry-source-file="header.tsx" class="flex z-40 w-full h-auto items-center justify-center data-[menu-open=true]:border-none sticky top-0 inset-x-0 border-b border-divider bg-background" style="--navbar-height:var(--header-height)"><header class="z-40 flex px-6 gap-4 w-full flex-row relative flex-nowrap items-center justify-between h-[var(--navbar-height)] max-w-[1536px]"><div class="flex basis-0 flex-row flex-grow flex-nowrap justify-start bg-transparent items-center no-underline text-medium whitespace-nowrap box-border" data-sentry-element="NavbarBrand" data-sentry-source-file="header.tsx"><a href="/" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-10 w-auto object-contain min-w-[100px]" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><ul class="flex h-full flex-row flex-nowrap items-center data-[justify=start]:justify-start data-[justify=start]:flex-grow data-[justify=start]:basis-0 data-[justify=center]:justify-center data-[justify=end]:justify-end data-[justify=end]:flex-grow data-[justify=end]:basis-0 gap-2 sm:gap-4" data-justify="end" data-sentry-element="NavbarContent" data-sentry-source-file="header.tsx"><div class="hidden lg:flex items-center gap-6"><a class="text-sm font-medium text-foreground/70 hover:text-foreground transition-colors whitespace-nowrap" href="/listings/list" data-discover="true">Voir les annonces</a></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold hidden sm:flex" data-sentry-element="NavbarItem" data-sentry-source-file="header.tsx"><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)]" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center shadow-sm gap-3 border-medium border-default-200 data-[hover=true]:border-default-400 group-data-[focus=true]:border-default-foreground h-10 min-h-10 rounded-full transition-background !duration-150 px-4 transition-colors motion-reduce:transition-none" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><span class="icon-lucide-search text-foreground/60"></span><input data-slot="input" data-has-start-content="true" data-has-end-content="true" class="w-full font-normal bg-transparent !outline-none placeholder:text-foreground-500 focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text text-small" data-sentry-element="Input" data-sentry-source-file="header.tsx" aria-label="Recherche" type="text" placeholder="Recherche" id="react-aria-_R_a9tij5_" aria-describedby="react-aria-_R_a9tij5H3_ react-aria-_R_a9tij5H4_" value=""/><div class="relative inline-flex shrink-0"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small gap-2 rounded-full px-0 !gap-0 transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-primary data-[hover=true]:bg-primary/20 min-w-10 w-10 h-10 -mr-2.5"><span class="icon-lucide-list-filter"></span></button><span class="z-10 flex-wrap absolute box-border rounded-full whitespace-nowrap place-content-center origin-center items-center select-none font-regular scale-100 opacity-100 subpixel-antialiased data-[invisible=true]:scale-0 data-[invisible=true]:opacity-0 text-tiny px-0 transition-transform-opacity !ease-soft-spring !duration-300 border-2 border-background bg-primary text-primary-foreground w-4 h-4 min-w-4 min-h-4 top-[5%] left-[5%] -translate-x-1/2 -translate-y-1/2 mt-3 ml-2 border-none hidden">0</span></div></div></div></div></div></li><div class="flex items-center gap-2"><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold"><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover">Se connecter</button></li></div><li class="text-medium whitespace-nowrap box-border list-none data-[active=true]:font-semibold" data-sentry-element="NavbarItem" data-sentry-component="LanguageSwitcher" data-sentry-source-file="language-switcher.tsx"><button type="button" data-slot="trigger" id="react-aria-_R_1i9tij5_" aria-haspopup="true" aria-expanded="false" class="group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 h-10 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased text-foreground/70 gap-1.5 min-w-0 px-3"><span class="icon-lucide-globe text-base"></span><span class="text-xs font-semibold uppercase">FR</span></button></li></ul></header></nav><div class="mx-auto mb-auto max-w-screen-2xl p-0 text-[#717171] sm:p-6 lg:px-12 lg:py-10 dark:text-gray-300"><div class="container mx-auto flex flex-col gap-4"><div class="px-4 pt-2 md:px-0"><button type="button" data-sentry-element="Button" data-sentry-component="ListingBackButton" data-sentry-source-file="listing-back-button.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-3 min-w-16 h-8 text-tiny gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent text-default-foreground data-[hover=true]:bg-default/40"><span class="icon-lucide-arrow-left text-base" aria-hidden="true" focusable="false" tabindex="-1"></span>Retour aux résultats</button></div><div class="sm:hidden"><div class="relative overflow-hidden" data-sentry-component="MobileCarousel" data-sentry-source-file="image-grid.tsx"><div class="flex overflow-x-auto snap-x snap-mandatory" style="scrollbar-width:none"><a class="min-w-full snap-center block flex-shrink-0" href="/listings/29-rue-lemieux/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg?width=800&amp;height=600&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement 2 chambres, 29 Rue Lemieux, Gatineau" class="h-72 w-full object-cover" loading="eager" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="absolute right-3 bottom-3 rounded-full bg-black/50 px-2.5 py-1 text-xs font-medium text-white backdrop-blur-sm">1<!-- --> / <!-- -->1</div></div></div><div class="hidden sm:block"><div class="relative overflow-hidden sm:rounded-xl"><a class="block overflow-hidden h-96" data-sentry-element="RemixLink" data-sentry-component="GalleryImage" data-sentry-source-file="image-grid.tsx" href="/listings/29-rue-lemieux/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg?width=1200&amp;height=600&amp;quality=80" alt="Location Halfred | Apartment rentals: appartement 2 chambres, 29 Rue Lemieux, Gatineau" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></a></div></div><div class="pb-36 md:grid md:grid-cols-2 md:gap-4 md:pb-0 lg:grid-cols-3"><div class="mx-4 md:mx-0 md:pr-4 lg:col-span-2"><div class="inline md:hidden"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">29 Rue Lemieux</h1><p class="text-sm text-foreground-600">Gatineau</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p><b>1375$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 juin</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_eiiiuatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div><div class="border-b-[1px] py-8 "><h2 class="mb-3 font-medium text-xl">Description de l&#x27;annonce</h2><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>🔥 <strong>Beau logement à louer – 29 Lemieux | Emplacement parfait à Hull!</strong> 🔥</p><p>Découvrez ce superbe logement idéalement situé dans un secteur recherché de <strong>Hull</strong>, parfait pour les <strong>travailleurs, étudiants ou jeunes professionnels</strong>. À seulement <strong>9 minutes du centre-ville d’Ottawa et du Marché By</strong>, et à quelques pas du <strong>Cégep de l’Outaouais</strong>, ce logement offre un emplacement pratique et accessible près de tout.</p><p>🏡 <strong>Ce que vous offre le logement :</strong><br>• 🔥💡 Chauffé et éclairé<br>• 💻 Internet inclus<br>• 🚗 1 stationnement inclus<br>• Espace de vie pratique et confortable</p><p>📍 <strong>Pourquoi vous allez l’adorer :</strong><br>Profitez d’un accès rapide aux <strong>épiceries, restaurants, banques, pharmacies et transports</strong>, tout en vivant dans un quartier dynamique et recherché.</p><p>💡 <strong>Le parfait équilibre entre confort, accessibilité et vie urbaine!</strong></p><p>📌 <strong>Informations importantes :</strong><br>• 📋 Enquête de crédit obligatoire<br>• 📆 Bail minimum de 12 mois</p><p>📞 <strong>Ne manquez pas cette opportunité!</strong><br>Contactez <strong>Halfred</strong> dès maintenant au <strong>819-593-3304</strong> pour planifier votre visite.</p></div></div></div></div><div class="border-b-[1px] pt-8 pb-8"><div class="space-y-3" data-sentry-component="UnitsSection" data-sentry-source-file="units-section.tsx"><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/29-rue-lemieux/details/gallery?unit=a07db125-c05d-4642-b89f-9c86fa923efc" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114192.jpg?width=96&amp;height=72&amp;quality=80" alt="Halfred | Apartment rentals immobilier: Louez ce unité de 2 chambres à Gatineau" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">12 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->3</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1000<!-- --> <!-- -->pieds carrés</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->3</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1375<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1747<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/a07db125-c05d-4642-b89f-9c86fa923efc/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div><div class="rounded-lg border transition-colors border-default-200 hover:bg-default-50/50"><div class="flex gap-4 px-4 py-3"><div class="relative flex-shrink-0"><a class="group block" href="/listings/29-rue-lemieux/details/gallery?unit=645f5dd5-465c-4ea0-897a-956e36907ed4" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-018.jpg?width=96&amp;height=72&amp;quality=80" alt="Location Halfred | Apartment rentals: unité 2 chambres, 29 Rue Lemieux, Gatineau" class="h-16 w-20 rounded-lg object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-1 right-1 z-10 rounded bg-black/60 px-1.5 py-0.5 text-[10px] text-white">21 photos</span></a></div><div class="flex min-w-0 flex-1 flex-col justify-between"><div class="flex items-start justify-between gap-2"><div class="flex min-w-0 flex-col gap-2"><div class="flex gap-2"><div class="flex flex-wrap items-center gap-2"><span class="truncate text-sm font-semibold sm:text-base text-foreground">#<!-- -->6</span></div><button type="button" class="flex cursor-pointer items-center justify-center gap-2 rounded-md bg-success-50 px-4 py-1.5 text-xs font-medium text-success-700 transition-colors hover:bg-success-100"><span class="icon-lucide-tag h-3 w-3"></span>Promotion disponible — Voir les détails<span></span></button></div><p class="mt-0.5 flex items-center gap-1 text-xs text-foreground-400"><span class="icon-lucide-calendar h-3 w-3"></span>Disponible maintenant</p><div class="mt-2 flex flex-wrap items-center gap-3 text-xs text-foreground-500"><span class="flex items-center gap-1"><span class="icon-lucide-bed-double h-3.5 w-3.5"></span>2 chambres</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-bath h-3.5 w-3.5"></span>1 salle de bain</span><span class="text-foreground-300">·</span><span class="flex items-center gap-1"><span class="icon-lucide-ruler h-3.5 w-3.5"></span>1000<!-- --> <!-- -->pieds carrés</span><span class="hidden text-foreground-300 sm:inline">|</span><div class="flex items-center gap-1.5"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-default-100 transition-colors hover:bg-default-200"><span></span></span><button type="button" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 gap-2 rounded-small [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 h-6 min-w-0 px-1.5 text-[11px] text-primary-500">+<!-- -->3</button></div></div></div><div class="flex shrink-0 flex-col items-end gap-2"><div class="flex-shrink-0 text-right"><span class="text-sm font-bold text-success-600 sm:text-base">1375<!-- -->$</span><span class="text-xs text-foreground-500"> <!-- -->/<!-- --> <!-- -->mois</span><span class="block text-xs text-foreground-400 line-through">1690<!-- -->$</span></div><a class="relative tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 hover:underline hover:opacity-80 active:opacity-disabled transition-opacity underline-offset-4 inline-flex items-center gap-1 text-xs font-medium text-primary" data-sentry-element="HeroLink" data-sentry-component="Link" data-sentry-source-file="link.tsx" href="/listings/645f5dd5-465c-4ea0-897a-956e36907ed4/apply/personal" tabindex="0" role="link" data-discover="true">Postuler<span></span></a></div></div></div></div></div></div></div><div class="py-8"><h2 class="mb-3 font-medium text-xl">Emplacement</h2><div class="flex flex-col lg:flex-row"><div class="pr-8"><div class="flex justify-center space-x-8 pb-4 lg:justify-start" data-sentry-component="WalkScore" data-sentry-source-file="walk-score.tsx"><div class="flex flex-col items-center space-y-2 "><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de mobilité</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3b8uatij5_" aria-label="Walk score of 72" aria-valuenow="72" aria-valuemin="0" aria-valuemax="100" aria-valuetext="72" role="progressbar" data-sentry-element="CircularProgress" data-sentry-source-file="walk-score.tsx"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-default-400 w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">72</span></div></div></div><div class="flex flex-col items-center space-y-2"><span></span><a target="_blank" rel="noreferrer" href="https://www.redfin.com/how-walk-score-works">Score de vélo</a><div class="flex flex-col justify-center gap-1 max-w-fit items-center" id="react-aria-_R_3j8uatij5_" aria-label="Bike score of 87" aria-valuenow="87" aria-valuemin="0" aria-valuemax="100" aria-valuetext="87" role="progressbar"><div class="relative block"><svg viewBox="0 0 32 32" fill="none" stroke-width="3" class="z-0 relative overflow-hidden text-success w-24 h-24 drop-shadow-md"><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="0" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-default-300/50"></circle><circle cx="16" cy="16" r="13" role="presentation" stroke-dasharray="81.68140899333463 81.68140899333463" stroke-dashoffset="81.68140899333463" transform="rotate(-90 16 16)" stroke-linecap="round" class="h-full stroke-current transition-all !duration-500"></circle></svg><span class="absolute inset-0 flex items-center justify-center text-xl font-semibold text-black dark:text-gray-400">87</span></div></div></div></div></div><div class="h-[300px] w-full overflow-hidden rounded-xl pt-4 shadow-md md:pt-0" data-sentry-component="ListingMap" data-sentry-source-file="details.tsx"><div style="position:relative;width:100%;height:100%"></div></div></div></div></div><div class="hidden md:inline"><div class="sticky top-20 col-span-1"><div class="flex flex-col relative overflow-hidden h-auto text-foreground box-border bg-content1 outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 shadow-medium rounded-large transition-transform-background motion-reduce:transition-none min-h-52 p-3 sm:p-4 md:max-h-[80vh]" tabindex="-1" data-testid="listing-details-card" data-sentry-element="Card" data-sentry-component="CardSection" data-sentry-source-file="card-section.tsx"><div class="flex p-3 z-10 w-full justify-start items-center shrink-0 overflow-inherit color-inherit subpixel-antialiased rounded-t-large"><div class="flex w-full items-center justify-between" data-sentry-component="ListingTitle" data-sentry-source-file="listing-components.tsx"><div class="mt-2"><h1 class="text-xl font-bold tracking-tight text-foreground sm:text-2xl md:text-2xl">29 Rue Lemieux</h1><p class="text-sm text-foreground-600">Gatineau</p></div></div></div><div class="relative flex w-full p-3 flex-auto flex-col place-content-inherit align-items-inherit h-auto break-words text-left overflow-y-auto subpixel-antialiased"><div class="flex w-full flex-col space-y-2 pb-4 text-left" data-sentry-component="ListingFeatures" data-sentry-source-file="listing-components.tsx"><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-banknote"></span><p><b>1375$</b> par mois</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bed-double"></span><p>2<!-- --> <!-- -->chambres</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-bath"></span><p>1<!-- --> <!-- -->salle de bain</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-ruler"></span><p>1000<!-- --> <!-- -->pieds carrés</p></div><div class="flex items-center space-x-3 text-base text-foreground-600" data-sentry-component="ListingCardFeature" data-sentry-source-file="listing-components.tsx"><span class="h-5 w-5 icon-lucide-calendar"></span><p>1 juin</p></div></div><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingApply" data-sentry-source-file="listing-components.tsx"><button type="button" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-primary text-primary-foreground data-[hover=true]:opacity-hover w-full shadow-md"><span class="icon-lucide-check-square" aria-hidden="true" focusable="false" tabindex="-1"></span>Postulez en ligne en toute sécurité</button></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="flex w-full flex-col space-y-2 py-4 text-left" data-sentry-component="ListingWarnings" data-sentry-source-file="listing-components.tsx"><div class="px-2 w-full" data-orientation="vertical" data-sentry-element="Accordion" data-sentry-source-file="listing-components.tsx"><div data-slot="base" aria-label="Fees" data-sentry-element="AccordionItem" data-sentry-source-file="listing-components.tsx"><h2 data-slot="heading"><button data-slot="trigger" class="flex py-4 w-full h-full gap-3 items-center tap-highlight-transparent outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 transition-opacity" type="button" id="_R_1qabeatij5_" aria-expanded="false"><div class="flex-1 flex flex-col text-start"><span data-slot="title" class="text-foreground text-medium">Frais</span></div><span aria-hidden="true" data-slot="indicator" class="text-default-400 transition-transform rotate-0 data-[open=true]:-rotate-90 rtl:-rotate-180 rtl:data-[open=true]:-rotate-90"><svg aria-hidden="true" fill="none" focusable="false" height="1em" role="presentation" viewBox="0 0 24 24" width="1em"><path d="M15.5 19l-7-7 7-7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></svg></span></button></h2></div></div></div><hr class="shrink-0 bg-divider border-none w-full h-divider" role="separator"/><div class="space-x-0pt-6 mt-6 grid grid-cols-1 space-y-3" data-sentry-component="ListingContact" data-sentry-source-file="listing-components.tsx"><a role="button" tabindex="0" href="mailto:info@halfred.ca" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-mail"></span>info@halfred.ca</a><a role="button" tabindex="0" href="tel:(819) 593-3304" data-sentry-element="Button" data-sentry-source-file="listing-components.tsx" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 border-medium bg-transparent px-4 min-w-20 h-10 text-small gap-2 rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none border-default text-default-foreground data-[hover=true]:!bg-default w-full"><span class="icon-lucide-phone"></span>(819) 593-3304</a></div></div></div></div></div></div></div></div><nav class="fixed right-0 bottom-0 left-0 z-50 border-t bg-background/90 pb-[env(safe-area-inset-bottom)] backdrop-blur-sm lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Annonces</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 " data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 "><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" data-sentry-element="Button" data-sentry-source-file="footer.tsx" class="z-0 group justify-center box-border appearance-none select-none whitespace-nowrap font-normal subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 text-small rounded-medium [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none bg-transparent data-[hover=true]:bg-default/40 relative flex h-auto min-w-0 flex-col items-center gap-1 p-2 text-foreground"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><div aria-hidden="true" class="lg:hidden h-[calc(var(--footer-height)+env(safe-area-inset-bottom))]"></div><footer class="hidden lg:block border-t border-border bg-card"><div class="container mx-auto px-6"><div class="py-16 pb-0"><div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="lg:col-span-2"><a class="text-2xl font-semibold tracking-tight inline-block mb-6" href="/" data-discover="true"><span class="text-primary">Halfred | Apartment rentals</span></a><p class="text-foreground/60 leading-relaxed mb-6 max-w-sm">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" class="w-10 h-10 bg-default-100 flex items-center justify-center hover:bg-primary hover:text-primary-foreground transition-colors rounded-lg" aria-label="Facebook"><span></span></a></div></div><div><h4 class="font-medium mb-4">Liens rapides</h4><ul class="space-y-3"><li><a class="text-sm text-foreground/60 hover:text-primary transition-colors" href="/listings/list" data-discover="true">Voir les annonces</a></li></ul></div><div><h4 class="font-medium mb-4">Contact</h4><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-sm text-foreground/60 hover:text-primary transition-colors"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="border-t mt-12 pt-8 pb-8 flex flex-col md:flex-row justify-between items-center gap-4 text-sm text-foreground/40"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="hover:text-foreground transition-colors">Politique de confidentialité</button><span class="text-foreground/20">·</span><button type="button" class="hover:text-foreground transition-colors">Conditions d&#x27;utilisation</button><span class="text-foreground/20">·</span><button type="button" class="inline-flex items-center gap-1 hover:text-foreground transition-colors"><span></span><span class="">EN</span><span class="text-foreground/20">/</span><span class="font-medium text-foreground/60">FR</span></button></div><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" class="group inline-flex items-center gap-1.5 px-2.5 py-1 rounded-md hover:bg-foreground/5 transition-all"><img src="/eversa.png" alt="Eversa" class="h-3.5 w-3.5 object-contain opacity-50 group-hover:opacity-80 transition-opacity"/><span class="text-foreground/40 group-hover:text-foreground/60 transition-colors">Propulsé en toute sécurité par<!-- --> <span class="font-semibold bg-gradient-to-r from-blue-500 to-violet-500 bg-clip-text text-transparent">Eversa</span></span></a></div></div></footer></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 − if (!window.history.state || !window.history.state.key) {
30 − let key = Math.random().toString(32).slice(2);
31 − window.history.replaceState({ key }, "");
32 − }
33 − try {
34 − let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 − let storedY = positions[restoreKey || window.history.state.key];
36 − if (typeof storedY === "number") {
37 − window.scrollTo(0, storedY);
38 − }
39 − } catch (error) {
40 − console.error(error);
41 − sessionStorage.removeItem(storageKey2);
42 − }
43 − })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":false},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 −import * as route0 from "/assets/root-CQ5pwbN3.js";
45 −import * as route1 from "/assets/listings-layout.page-fudZCuk6.js";
46 −import * as route2 from "/assets/listing-detail.page-D34BzzZ7.js";
47 − window.__reactRouterManifest = {
48 − "entry": {
49 − "module": "/assets/entry.client-D3Lor9BQ.js",
50 − "imports": [
51 − "/assets/jsx-runtime-BfnRc3yc.js",
52 − "/assets/debug-build-DNp6-6bg.js",
53 − "/assets/index-C5vezUBD.js",
54 − "/assets/index-DoORTE4j.js",
55 − "/assets/chunk-QUQL4437-DDCENzgx.js",
56 − "/assets/index-CeC9Jgeb.js"
57 − ],
58 − "css": []
59 − },
60 − "routes": {
61 − "root": {
62 − "id": "root",
63 − "path": "",
64 − "hasAction": false,
65 − "hasLoader": true,
66 − "hasClientAction": false,
67 − "hasClientLoader": false,
68 − "hasClientMiddleware": false,
69 − "hasDefaultExport": true,
70 − "hasErrorBoundary": true,
71 − "module": "/assets/root-CQ5pwbN3.js",
72 − "imports": [
73 − "/assets/jsx-runtime-BfnRc3yc.js",
74 − "/assets/debug-build-DNp6-6bg.js",
75 − "/assets/index-C5vezUBD.js",
76 − "/assets/index-DoORTE4j.js",
77 − "/assets/chunk-QUQL4437-DDCENzgx.js",
78 − "/assets/index-CeC9Jgeb.js",
79 − "/assets/index-DxlXt7ah.js",
80 − "/assets/index-7d5art0_.js",
81 − "/assets/QueryClientProvider-CFsx2e_E.js",
82 − "/assets/should-revalidate-for-modal-CqioTNup.js",
83 − "/assets/client-COEiaTPU.js",
84 − "/assets/button-CI3vN0fP.js",
85 − "/assets/icon-ChitaFhd.js",
86 − "/assets/use-auth-D5U5KUh0.js",
87 − "/assets/use-tenant-BWWCVgWC.js",
88 − "/assets/index-Jaw8JklF.js",
89 − "/assets/google-analytics-ktjxgVBo.js",
90 − "/assets/use-hydrated-D950Dr4H.js",
91 − "/assets/index-BDJ4CSmQ.js",
92 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
93 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
94 − "/assets/context-wzUK1HrR.js",
95 − "/assets/preload-helper-Djj1Qpxo.js",
96 − "/assets/useModal-CeS5iZMH.js",
97 − "/assets/root.not-found-TB-qAbRU.js",
98 − "/assets/use-is-iframe-DMIWGDya.js",
99 − "/assets/show-4ksMJO84.js",
100 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
101 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
102 − "/assets/chunk-T45N425O-C34bNx0L.js",
103 − "/assets/index-CkqJ5zxX.js",
104 − "/assets/eversa-modal-BB1_Xp8i.js",
105 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
106 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
107 − "/assets/useDialog-gW_0vaQG.js",
108 − "/assets/VisuallyHidden-Bws6oXbu.js",
109 − "/assets/isScrollable-BgFbDMO0.js",
110 − "/assets/useLabels-DROhzITC.js",
111 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
112 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
113 − "/assets/index-yaZ7Ke31.js",
114 − "/assets/FocusScope-DMvIZi1w.js",
115 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
116 − "/assets/useOverlayTriggerState-BxqwFvox.js",
117 − "/assets/useControlledState-XDkshuLc.js",
118 − "/assets/mergeRefs-BAuglitV.js",
119 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
120 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
121 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
122 − "/assets/proxy-DfkJuQz0.js",
123 − "/assets/create-visual-element-ZgQz5_Xg.js",
124 − "/assets/accelerated-values-Ceq7jgwI.js",
125 − "/assets/layout-D897SnWT.js",
126 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
127 − "/assets/use-email-otp-auth-Dotj0x79.js",
128 − "/assets/useFormValidation-DV_spCMP.js",
129 − "/assets/useControlledState-DQzmlyV_.js",
130 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
131 − "/assets/roles-DMMiQTyo.js",
132 − "/assets/types-BlrrbiGM.js",
133 − "/assets/modal-BFX8Hcaa.js",
134 − "/assets/index-DtAX5rCj.js",
135 − "/assets/index-BWrthP4T.js",
136 − "/assets/index-C3aLSQj3.js",
137 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
138 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
139 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
140 − "/assets/useField-Bmx16mGJ.js",
141 − "/assets/useLabel-C485U_L6.js",
142 − "/assets/chunk-M3MASYO7-D515YSCq.js",
143 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
144 − "/assets/index-D0MIspu5.js",
145 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
146 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
147 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
148 − "/assets/index-BnPmUpYq.js",
149 − "/assets/chunk-MW56SEHC-BtfYkZW0.js"
150 − ],
151 − "css": [
152 − "/assets/root-OE7dqe-N.css"
153 − ]
154 − },
155 − "PublicListingsLayoutPage": {
156 − "id": "PublicListingsLayoutPage",
157 − "parentId": "root",
158 − "path": "/listings",
159 − "hasAction": false,
160 − "hasLoader": true,
161 − "hasClientAction": false,
162 − "hasClientLoader": false,
163 − "hasClientMiddleware": false,
164 − "hasDefaultExport": true,
165 − "hasErrorBoundary": false,
166 − "module": "/assets/listings-layout.page-fudZCuk6.js",
167 − "imports": [
168 − "/assets/chunk-QUQL4437-DDCENzgx.js",
169 − "/assets/jsx-runtime-BfnRc3yc.js",
170 − "/assets/runtime-DIxKkQKN.js",
171 − "/assets/global-progress-_e55169v.js",
172 − "/assets/facebook-pixel-DaCAk2xn.js",
173 − "/assets/google-analytics-ktjxgVBo.js",
174 − "/assets/header-DHYopbVz.js",
175 − "/assets/footer-B1woW9rk.js",
176 − "/assets/index-DoORTE4j.js",
177 − "/assets/listing-card-vLpuwroq.js",
178 − "/assets/should-revalidate-for-modal-CqioTNup.js",
179 − "/assets/types-BlrrbiGM.js",
180 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
181 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
182 − "/assets/index-Jaw8JklF.js",
183 − "/assets/index-C5vezUBD.js",
184 − "/assets/listingTypes-DriVo5bw.js",
185 − "/assets/eversa-modal-BB1_Xp8i.js",
186 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
187 − "/assets/preload-helper-Djj1Qpxo.js",
188 − "/assets/index-yaZ7Ke31.js",
189 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
190 − "/assets/useDialog-gW_0vaQG.js",
191 − "/assets/VisuallyHidden-Bws6oXbu.js",
192 − "/assets/isScrollable-BgFbDMO0.js",
193 − "/assets/useLabels-DROhzITC.js",
194 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
195 − "/assets/context-wzUK1HrR.js",
196 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
197 − "/assets/FocusScope-DMvIZi1w.js",
198 − "/assets/index-CeC9Jgeb.js",
199 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
200 − "/assets/useOverlayTriggerState-BxqwFvox.js",
201 − "/assets/useControlledState-XDkshuLc.js",
202 − "/assets/mergeRefs-BAuglitV.js",
203 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
204 − "/assets/icon-ChitaFhd.js",
205 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
206 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
207 − "/assets/proxy-DfkJuQz0.js",
208 − "/assets/create-visual-element-ZgQz5_Xg.js",
209 − "/assets/accelerated-values-Ceq7jgwI.js",
210 − "/assets/layout-D897SnWT.js",
211 − "/assets/floor-label-CflkOBoK.js",
212 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
213 − "/assets/useFormValidation-DV_spCMP.js",
214 − "/assets/number-BTko6OQO.js",
215 − "/assets/useLabel-C485U_L6.js",
216 − "/assets/useNumberFormatter-CoKItVmT.js",
217 − "/assets/NumberFormatter-C5-jiHvj.js",
218 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
219 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
220 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
221 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
222 − "/assets/index-C3aLSQj3.js",
223 − "/assets/useModal-CeS5iZMH.js",
224 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
225 − "/assets/useToggleState-CuQlkmOj.js",
226 − "/assets/index-BWrthP4T.js",
227 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
228 − "/assets/useToggle-DvTjx68e.js",
229 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
230 − "/assets/useButton-DpP98b4N.js",
231 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
232 − "/assets/index-3DzB9Uk2.js",
233 − "/assets/useTreeState-Dqa76uUL.js",
234 − "/assets/SelectionManager-8Hskx3sY.js",
235 − "/assets/scrollIntoView-CC6GVFhU.js",
236 − "/assets/useSelectableList-CXujeS_9.js",
237 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
238 − "/assets/useCollator-Fuf-UA_6.js",
239 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
240 − "/assets/index-D-QzV5oA.js",
241 − "/assets/Item-DkDXZBz9.js",
242 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
243 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
244 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
245 − "/assets/useControlledState-DQzmlyV_.js",
246 − "/assets/useField-Bmx16mGJ.js",
247 − "/assets/chunk-M3MASYO7-D515YSCq.js",
248 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
249 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
250 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
251 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
252 − "/assets/use-tenant-BWWCVgWC.js",
253 − "/assets/index-7d5art0_.js",
254 − "/assets/storage-image-C6eMpyTJ.js",
255 − "/assets/debug-build-DNp6-6bg.js",
256 − "/assets/empty-image-BpIKAHRR.js",
257 − "/assets/storage-jxJOIM7G.js",
258 − "/assets/use-debounce-C3COWfZf.js",
259 − "/assets/use-debounced-callback-y3H-ARAr.js",
260 − "/assets/show-4ksMJO84.js",
261 − "/assets/language-switcher-B_wuY4E-.js",
262 − "/assets/use-auth-D5U5KUh0.js",
263 − "/assets/use-email-otp-auth-Dotj0x79.js",
264 − "/assets/chunk-T45N425O-C34bNx0L.js",
265 − "/assets/roles-DMMiQTyo.js",
266 − "/assets/modal-BFX8Hcaa.js",
267 − "/assets/index-DtAX5rCj.js",
268 − "/assets/user-menu-DExrpneA.js",
269 − "/assets/use-show-profile-modal-BkxThqgM.js",
270 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
271 − "/assets/Section-C964evx_.js",
272 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
273 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
274 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
275 − "/assets/getItemCount-Crui8d86.js",
276 − "/assets/useSelectableItem-CAYhKQ6f.js",
277 − "/assets/useDescription-C0BDNkOP.js",
278 − "/assets/index-D0MIspu5.js",
279 − "/assets/useMenuTriggerState-BqO-tvnv.js",
280 − "/assets/useMenuTrigger-D7_8ZcRM.js",
281 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
282 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
283 − "/assets/index-B9ugVS9k.js",
284 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
285 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
286 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
287 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
288 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
289 − "/assets/settings.types-DE5bLdHg.js",
290 − "/assets/client-COEiaTPU.js",
291 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
292 − "/assets/useProgressBar-BHwKhJ6d.js",
293 − "/assets/index-tlxTS5dy.js",
294 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
295 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
296 − "/assets/date-CSj-D1fs.js",
297 − "/assets/CalendarDate-ecH25Spu.js",
298 − "/assets/format-leGP5Oeh.js",
299 − "/assets/use-is-iframe-DMIWGDya.js",
300 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
301 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
302 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
303 − "/assets/link-DBd_8VBO.js",
304 − "/assets/exports-mapbox-Bx3w98cJ.js",
305 − "/assets/rich-text-display-BlrZ_1h7.js",
306 − "/assets/utils-CvVRVFAc.js",
307 − "/assets/signature-block-C-ZZEVGr.js",
308 − "/assets/index-BnPmUpYq.js",
309 − "/assets/use-rich-text-editor-osHrkC4A.js",
310 − "/assets/client-only-BvFCVX3P.js",
311 − "/assets/use-hydrated-D950Dr4H.js",
312 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
313 − "/assets/create-rpc-stub-BbU9ptcF.js",
314 − "/assets/index-BL9R5Cz9.js",
315 − "/assets/zod-DGDtP7Md.js",
316 − "/assets/use-server-command-CsT9c6Aj.js",
317 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
318 − "/assets/form-hidden-input-PkDAaWy5.js",
319 − "/assets/form-input-CIKylvmI.js",
320 − "/assets/input-B_zvg1Nd.js",
321 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
322 − "/assets/extends-BQWZ3hUO.js",
323 − "/assets/system-preferences-DWMBYQ-w.js",
324 − "/assets/app-form-D4qVp9Qh.js",
325 − "/assets/button-CI3vN0fP.js",
326 − "/assets/spinner-DfOLdSP8.js",
327 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
328 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
329 − "/assets/use-in-view-BcUotcrM.js",
330 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
331 − ],
332 − "css": [
333 − "/assets/listing-card-BJU93aco.css",
334 − "/assets/use-rich-text-editor-D9Rskyfk.css"
335 − ]
336 − },
337 − "PublicListingDetailPage": {
338 − "id": "PublicListingDetailPage",
339 − "parentId": "PublicListingsLayoutPage",
340 − "path": "/listings/:slug/details",
341 − "hasAction": false,
342 − "hasLoader": true,
343 − "hasClientAction": false,
344 − "hasClientLoader": false,
345 − "hasClientMiddleware": false,
346 − "hasDefaultExport": true,
347 − "hasErrorBoundary": true,
348 − "module": "/assets/listing-detail.page-D34BzzZ7.js",
349 − "imports": [
350 − "/assets/chunk-QUQL4437-DDCENzgx.js",
351 − "/assets/jsx-runtime-BfnRc3yc.js",
352 − "/assets/runtime-DIxKkQKN.js",
353 − "/assets/index-C5vezUBD.js",
354 − "/assets/seo.helpers-DUWcGrSj.js",
355 − "/assets/should-revalidate-for-modal-CqioTNup.js",
356 − "/assets/listing-card-vLpuwroq.js",
357 − "/assets/types-BlrrbiGM.js",
358 − "/assets/use-tenant-BWWCVgWC.js",
359 − "/assets/index-DoORTE4j.js",
360 − "/assets/icon-ChitaFhd.js",
361 − "/assets/chunk-T45N425O-C34bNx0L.js",
362 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
363 − "/assets/preload-helper-Djj1Qpxo.js",
364 − "/assets/index-yaZ7Ke31.js",
365 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
366 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
367 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
368 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
369 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
370 − "/assets/settings.types-DE5bLdHg.js",
371 − "/assets/client-COEiaTPU.js",
372 − "/assets/index-Jaw8JklF.js",
373 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
374 − "/assets/useProgressBar-BHwKhJ6d.js",
375 − "/assets/number-BTko6OQO.js",
376 − "/assets/useLabel-C485U_L6.js",
377 − "/assets/useLabels-DROhzITC.js",
378 − "/assets/useNumberFormatter-CoKItVmT.js",
379 − "/assets/context-wzUK1HrR.js",
380 − "/assets/NumberFormatter-C5-jiHvj.js",
381 − "/assets/index-tlxTS5dy.js",
382 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
383 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
384 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
385 − "/assets/mergeRefs-BAuglitV.js",
386 − "/assets/useControlledState-XDkshuLc.js",
387 − "/assets/FocusScope-DMvIZi1w.js",
388 − "/assets/useField-Bmx16mGJ.js",
389 − "/assets/useFormValidation-DV_spCMP.js",
390 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
391 − "/assets/date-CSj-D1fs.js",
392 − "/assets/CalendarDate-ecH25Spu.js",
393 − "/assets/format-leGP5Oeh.js",
394 − "/assets/show-4ksMJO84.js",
395 − "/assets/listingTypes-DriVo5bw.js",
396 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
397 − "/assets/useButton-DpP98b4N.js",
398 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
399 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
400 − "/assets/index-3DzB9Uk2.js",
401 − "/assets/accelerated-values-Ceq7jgwI.js",
402 − "/assets/useTreeState-Dqa76uUL.js",
403 − "/assets/SelectionManager-8Hskx3sY.js",
404 − "/assets/scrollIntoView-CC6GVFhU.js",
405 − "/assets/isScrollable-BgFbDMO0.js",
406 − "/assets/index-CeC9Jgeb.js",
407 − "/assets/useSelectableList-CXujeS_9.js",
408 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
409 − "/assets/useCollator-Fuf-UA_6.js",
410 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
411 − "/assets/index-D-QzV5oA.js",
412 − "/assets/Item-DkDXZBz9.js",
413 − "/assets/use-is-iframe-DMIWGDya.js",
414 − "/assets/floor-label-CflkOBoK.js",
415 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
416 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
417 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
418 − "/assets/storage-image-C6eMpyTJ.js",
419 − "/assets/debug-build-DNp6-6bg.js",
420 − "/assets/empty-image-BpIKAHRR.js",
421 − "/assets/storage-jxJOIM7G.js",
422 − "/assets/eversa-modal-BB1_Xp8i.js",
423 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
424 − "/assets/useDialog-gW_0vaQG.js",
425 − "/assets/VisuallyHidden-Bws6oXbu.js",
426 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
427 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
428 − "/assets/useOverlayTriggerState-BxqwFvox.js",
429 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
430 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
431 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
432 − "/assets/proxy-DfkJuQz0.js",
433 − "/assets/create-visual-element-ZgQz5_Xg.js",
434 − "/assets/layout-D897SnWT.js",
435 − "/assets/link-DBd_8VBO.js",
436 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
437 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
438 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
439 − "/assets/index-C3aLSQj3.js",
440 − "/assets/useModal-CeS5iZMH.js",
441 − "/assets/exports-mapbox-Bx3w98cJ.js",
442 − "/assets/index-7d5art0_.js",
443 − "/assets/rich-text-display-BlrZ_1h7.js",
444 − "/assets/utils-CvVRVFAc.js",
445 − "/assets/signature-block-C-ZZEVGr.js",
446 − "/assets/index-BnPmUpYq.js",
447 − "/assets/use-rich-text-editor-osHrkC4A.js",
448 − "/assets/client-only-BvFCVX3P.js",
449 − "/assets/use-hydrated-D950Dr4H.js",
450 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
451 − "/assets/chunk-M3MASYO7-D515YSCq.js",
452 − "/assets/create-rpc-stub-BbU9ptcF.js",
453 − "/assets/index-BL9R5Cz9.js",
454 − "/assets/zod-DGDtP7Md.js",
455 − "/assets/use-server-command-CsT9c6Aj.js",
456 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
457 − "/assets/form-hidden-input-PkDAaWy5.js",
458 − "/assets/form-input-CIKylvmI.js",
459 − "/assets/input-B_zvg1Nd.js",
460 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
461 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
462 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
463 − "/assets/useControlledState-DQzmlyV_.js",
464 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
465 − "/assets/extends-BQWZ3hUO.js",
466 − "/assets/system-preferences-DWMBYQ-w.js",
467 − "/assets/app-form-D4qVp9Qh.js",
468 − "/assets/button-CI3vN0fP.js",
469 − "/assets/spinner-DfOLdSP8.js",
470 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
471 − "/assets/index-D0MIspu5.js",
472 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
473 − "/assets/use-in-view-BcUotcrM.js",
474 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
475 − ],
476 − "css": [
477 − "/assets/listing-card-BJU93aco.css",
478 − "/assets/use-rich-text-editor-D9Rskyfk.css"
479 − ]
480 − },
481 − "PublicHomePage": {
482 − "id": "PublicHomePage",
483 − "parentId": "root",
484 − "path": "/",
485 − "hasAction": false,
486 − "hasLoader": true,
487 − "hasClientAction": false,
488 − "hasClientLoader": false,
489 − "hasClientMiddleware": false,
490 − "hasDefaultExport": true,
491 − "hasErrorBoundary": false,
492 − "module": "/assets/home.page-DrgK_VTF.js",
493 − "imports": [
494 − "/assets/chunk-QUQL4437-DDCENzgx.js",
495 − "/assets/jsx-runtime-BfnRc3yc.js",
496 − "/assets/runtime-DIxKkQKN.js",
497 − "/assets/facebook-pixel-DaCAk2xn.js",
498 − "/assets/google-analytics-ktjxgVBo.js",
499 − "/assets/lead-capture-config.helpers-CMBgNxna.js",
500 − "/assets/global-progress-_e55169v.js",
501 − "/assets/header-DHYopbVz.js",
502 − "/assets/footer-B1woW9rk.js",
503 − "/assets/listing-card-vLpuwroq.js",
504 − "/assets/types-BlrrbiGM.js",
505 − "/assets/index-Jaw8JklF.js",
506 − "/assets/index-DoORTE4j.js",
507 − "/assets/lead-capture-layout-wo2JbEWc.js",
508 − "/assets/storage-image-C6eMpyTJ.js",
509 − "/assets/debug-build-DNp6-6bg.js",
510 − "/assets/empty-image-BpIKAHRR.js",
511 − "/assets/storage-jxJOIM7G.js",
512 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
513 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
514 − "/assets/icon-ChitaFhd.js",
515 − "/assets/language-switcher-B_wuY4E-.js",
516 − "/assets/use-auth-D5U5KUh0.js",
517 − "/assets/eversa-modal-BB1_Xp8i.js",
518 − "/assets/index-C5vezUBD.js",
519 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
520 − "/assets/preload-helper-Djj1Qpxo.js",
521 − "/assets/index-yaZ7Ke31.js",
522 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
523 − "/assets/useDialog-gW_0vaQG.js",
524 − "/assets/VisuallyHidden-Bws6oXbu.js",
525 − "/assets/isScrollable-BgFbDMO0.js",
526 − "/assets/useLabels-DROhzITC.js",
527 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
528 − "/assets/context-wzUK1HrR.js",
529 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
530 − "/assets/FocusScope-DMvIZi1w.js",
531 − "/assets/index-CeC9Jgeb.js",
532 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
533 − "/assets/useOverlayTriggerState-BxqwFvox.js",
534 − "/assets/useControlledState-XDkshuLc.js",
535 − "/assets/mergeRefs-BAuglitV.js",
536 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
537 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
538 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
539 − "/assets/proxy-DfkJuQz0.js",
540 − "/assets/create-visual-element-ZgQz5_Xg.js",
541 − "/assets/accelerated-values-Ceq7jgwI.js",
542 − "/assets/layout-D897SnWT.js",
543 − "/assets/use-email-otp-auth-Dotj0x79.js",
544 − "/assets/useFormValidation-DV_spCMP.js",
545 − "/assets/useControlledState-DQzmlyV_.js",
546 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
547 − "/assets/chunk-T45N425O-C34bNx0L.js",
548 − "/assets/roles-DMMiQTyo.js",
549 − "/assets/modal-BFX8Hcaa.js",
550 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
551 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
552 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
553 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
554 − "/assets/index-DtAX5rCj.js",
555 − "/assets/index-BWrthP4T.js",
556 − "/assets/index-C3aLSQj3.js",
557 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
558 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
559 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
560 − "/assets/useField-Bmx16mGJ.js",
561 − "/assets/useLabel-C485U_L6.js",
562 − "/assets/chunk-M3MASYO7-D515YSCq.js",
563 − "/assets/user-menu-DExrpneA.js",
564 − "/assets/use-show-profile-modal-BkxThqgM.js",
565 − "/assets/chunk-X7MTWOQW-BhwLuGgH.js",
566 − "/assets/Section-C964evx_.js",
567 − "/assets/chunk-Z2IJA2C6-CfK_EVGp.js",
568 − "/assets/Item-DkDXZBz9.js",
569 − "/assets/chunk-PNCCMQP3-ByWftuvY.js",
570 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
571 − "/assets/number-BTko6OQO.js",
572 − "/assets/chunk-2TLCDWYU-Cy5L-wTu.js",
573 − "/assets/getItemCount-Crui8d86.js",
574 − "/assets/SelectionManager-8Hskx3sY.js",
575 − "/assets/scrollIntoView-CC6GVFhU.js",
576 − "/assets/useSelectableItem-CAYhKQ6f.js",
577 − "/assets/useDescription-C0BDNkOP.js",
578 − "/assets/index-D0MIspu5.js",
579 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
580 − "/assets/useSelectableList-CXujeS_9.js",
581 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
582 − "/assets/useCollator-Fuf-UA_6.js",
583 − "/assets/useTreeState-Dqa76uUL.js",
584 − "/assets/useMenuTriggerState-BqO-tvnv.js",
585 − "/assets/useMenuTrigger-D7_8ZcRM.js",
586 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
587 − "/assets/chunk-R6AK6OQ4-DUkI5JNB.js",
588 − "/assets/chunk-A6PX3NG3-Dr-zsvi0.js",
589 − "/assets/index-B9ugVS9k.js",
590 − "/assets/show-4ksMJO84.js",
591 − "/assets/chunk-5LMKFFWA-Bk3guiez.js",
592 − "/assets/chunk-IGERPFKH-CJRJ6nub.js",
593 − "/assets/use-tenant-BWWCVgWC.js",
594 − "/assets/listingTypes-DriVo5bw.js",
595 − "/assets/floor-label-CflkOBoK.js",
596 − "/assets/chunk-2R3S2K5U-CsXbA6WT.js",
597 − "/assets/useNumberFormatter-CoKItVmT.js",
598 − "/assets/NumberFormatter-C5-jiHvj.js",
599 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
600 − "/assets/useModal-CeS5iZMH.js",
601 − "/assets/chunk-MZRCPRP2-mpJWhBr_.js",
602 − "/assets/useToggleState-CuQlkmOj.js",
603 − "/assets/useToggle-DvTjx68e.js",
604 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
605 − "/assets/useButton-DpP98b4N.js",
606 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
607 − "/assets/index-3DzB9Uk2.js",
608 − "/assets/index-D-QzV5oA.js",
609 − "/assets/chunk-D7WRZFSP-BaNCM-YY.js",
610 − "/assets/index-7d5art0_.js",
611 − "/assets/use-debounce-C3COWfZf.js",
612 − "/assets/use-debounced-callback-y3H-ARAr.js",
613 − "/assets/chunk-UYTDJMPP-DES2-BO0.js",
614 − "/assets/chunk-4DMBHLGU-6OsJY52a.js",
615 − "/assets/chunk-TLGNVWIG-BB61Ptvq.js",
616 − "/assets/settings.types-DE5bLdHg.js",
617 − "/assets/client-COEiaTPU.js",
618 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
619 − "/assets/useProgressBar-BHwKhJ6d.js",
620 − "/assets/index-tlxTS5dy.js",
621 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
622 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
623 − "/assets/date-CSj-D1fs.js",
624 − "/assets/CalendarDate-ecH25Spu.js",
625 − "/assets/format-leGP5Oeh.js",
626 − "/assets/use-is-iframe-DMIWGDya.js",
627 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
628 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
629 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
630 − "/assets/link-DBd_8VBO.js",
631 − "/assets/exports-mapbox-Bx3w98cJ.js",
632 − "/assets/rich-text-display-BlrZ_1h7.js",
633 − "/assets/utils-CvVRVFAc.js",
634 − "/assets/signature-block-C-ZZEVGr.js",
635 − "/assets/index-BnPmUpYq.js",
636 − "/assets/use-rich-text-editor-osHrkC4A.js",
637 − "/assets/client-only-BvFCVX3P.js",
638 − "/assets/use-hydrated-D950Dr4H.js",
639 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
640 − "/assets/create-rpc-stub-BbU9ptcF.js",
641 − "/assets/index-BL9R5Cz9.js",
642 − "/assets/zod-DGDtP7Md.js",
643 − "/assets/use-server-command-CsT9c6Aj.js",
644 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
645 − "/assets/form-hidden-input-PkDAaWy5.js",
646 − "/assets/form-input-CIKylvmI.js",
647 − "/assets/input-B_zvg1Nd.js",
648 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
649 − "/assets/extends-BQWZ3hUO.js",
650 − "/assets/system-preferences-DWMBYQ-w.js",
651 − "/assets/app-form-D4qVp9Qh.js",
652 − "/assets/button-CI3vN0fP.js",
653 − "/assets/spinner-DfOLdSP8.js",
654 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
655 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
656 − "/assets/use-in-view-BcUotcrM.js",
657 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
658 − ],
659 − "css": [
660 − "/assets/listing-card-BJU93aco.css",
661 − "/assets/use-rich-text-editor-D9Rskyfk.css"
662 − ]
663 − },
664 − "root.not-found": {
665 − "id": "root.not-found",
666 − "parentId": "root",
667 − "path": "*",
668 − "hasAction": false,
669 − "hasLoader": false,
670 − "hasClientAction": false,
671 − "hasClientLoader": false,
672 − "hasClientMiddleware": false,
673 − "hasDefaultExport": true,
674 − "hasErrorBoundary": false,
675 − "module": "/assets/root.not-found-NCTWqlPD.js",
676 − "imports": [
677 − "/assets/root.not-found-TB-qAbRU.js",
678 − "/assets/chunk-QUQL4437-DDCENzgx.js",
679 − "/assets/jsx-runtime-BfnRc3yc.js",
680 − "/assets/index-DoORTE4j.js",
681 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
682 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
683 − "/assets/preload-helper-Djj1Qpxo.js",
684 − "/assets/index-yaZ7Ke31.js",
685 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
686 − "/assets/icon-ChitaFhd.js",
687 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
688 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
689 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
690 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js"
691 − ],
692 − "css": []
693 − },
694 − "PublicListingsIndexPage": {
695 − "id": "PublicListingsIndexPage",
696 − "parentId": "PublicListingsLayoutPage",
697 − "path": "/listings",
698 − "hasAction": false,
699 − "hasLoader": false,
700 − "hasClientAction": false,
701 − "hasClientLoader": false,
702 − "hasClientMiddleware": false,
703 − "hasDefaultExport": true,
704 − "hasErrorBoundary": false,
705 − "module": "/assets/listings-index.page-DAV3YHK6.js",
706 − "imports": [
707 − "/assets/chunk-QUQL4437-DDCENzgx.js",
708 − "/assets/jsx-runtime-BfnRc3yc.js",
709 − "/assets/runtime-DIxKkQKN.js",
710 − "/assets/listing-card-vLpuwroq.js",
711 − "/assets/types-BlrrbiGM.js",
712 − "/assets/use-tenant-BWWCVgWC.js",
713 − "/assets/settings.types-DE5bLdHg.js",
714 − "/assets/index-C5vezUBD.js",
715 − "/assets/client-COEiaTPU.js",
716 − "/assets/index-Jaw8JklF.js",
717 − "/assets/index-DoORTE4j.js",
718 − "/assets/icon-ChitaFhd.js",
719 − "/assets/chunk-H4M2ZVHB-fI1VJT5m.js",
720 − "/assets/chunk-UWE6H66T-D5FlEFg8.js",
721 − "/assets/useProgressBar-BHwKhJ6d.js",
722 − "/assets/preload-helper-Djj1Qpxo.js",
723 − "/assets/index-yaZ7Ke31.js",
724 − "/assets/number-BTko6OQO.js",
725 − "/assets/useLabel-C485U_L6.js",
726 − "/assets/useLabels-DROhzITC.js",
727 − "/assets/useNumberFormatter-CoKItVmT.js",
728 − "/assets/context-wzUK1HrR.js",
729 − "/assets/NumberFormatter-C5-jiHvj.js",
730 − "/assets/index-tlxTS5dy.js",
731 − "/assets/chunk-6NGXL2PC-D_MMROaD.js",
732 − "/assets/chunk-LXQE2FYM-BPtMgrUY.js",
733 − "/assets/chunk-SLABUSGS-DOVX7Ccp.js",
734 − "/assets/mergeRefs-BAuglitV.js",
735 − "/assets/useControlledState-XDkshuLc.js",
736 − "/assets/FocusScope-DMvIZi1w.js",
737 − "/assets/chunk-6VC6TS2O-BPJVUQfz.js",
738 − "/assets/useField-Bmx16mGJ.js",
739 − "/assets/useFormValidation-DV_spCMP.js",
740 − "/assets/chunk-46U6G7UJ-Bwf5cB-7.js",
741 − "/assets/date-CSj-D1fs.js",
742 − "/assets/CalendarDate-ecH25Spu.js",
743 − "/assets/format-leGP5Oeh.js",
744 − "/assets/show-4ksMJO84.js",
745 − "/assets/listingTypes-DriVo5bw.js",
746 − "/assets/chunk-KCYYJJH4-DGb5i0-T.js",
747 − "/assets/chunk-SKOC4V7G-4qoeZ5p-.js",
748 − "/assets/chunk-GQT3YUX3-Drue2GdO.js",
749 − "/assets/chunk-IGTUIHQL-O_I1H6Jr.js",
750 − "/assets/chunk-HAJUSXOG-DVp3AbGE.js",
751 − "/assets/useButton-DpP98b4N.js",
752 − "/assets/chunk-OH2E76JR-BObnhHJ0.js",
753 − "/assets/chunk-736YWA4T-CxSGr_Ie.js",
754 − "/assets/index-3DzB9Uk2.js",
755 − "/assets/accelerated-values-Ceq7jgwI.js",
756 − "/assets/useTreeState-Dqa76uUL.js",
757 − "/assets/SelectionManager-8Hskx3sY.js",
758 − "/assets/scrollIntoView-CC6GVFhU.js",
759 − "/assets/isScrollable-BgFbDMO0.js",
760 − "/assets/index-CeC9Jgeb.js",
761 − "/assets/useSelectableList-CXujeS_9.js",
762 − "/assets/DOMLayoutDelegate-DFeK-_9X.js",
763 − "/assets/useCollator-Fuf-UA_6.js",
764 − "/assets/chunk-IHO36JMK-BDoTuzRJ.js",
765 − "/assets/index-D-QzV5oA.js",
766 − "/assets/Item-DkDXZBz9.js",
767 − "/assets/use-is-iframe-DMIWGDya.js",
768 − "/assets/floor-label-CflkOBoK.js",
769 − "/assets/chunk-MW56SEHC-BtfYkZW0.js",
770 − "/assets/chunk-D5XJWRAV-BwQcUPIh.js",
771 − "/assets/chunk-LGSBTEIA-DcLcqZIY.js",
772 − "/assets/storage-image-C6eMpyTJ.js",
773 − "/assets/debug-build-DNp6-6bg.js",
774 − "/assets/empty-image-BpIKAHRR.js",
775 − "/assets/storage-jxJOIM7G.js",
776 − "/assets/eversa-modal-BB1_Xp8i.js",
777 − "/assets/chunk-3BLMMOBU-C7vSoMzJ.js",
778 − "/assets/useDialog-gW_0vaQG.js",
779 − "/assets/VisuallyHidden-Bws6oXbu.js",
780 − "/assets/useLocalizedStringFormatter-DX5JHa0N.js",
781 − "/assets/chunk-3JRSRN3Z-BdBYX_kK.js",
782 − "/assets/useOverlayTriggerState-BxqwFvox.js",
783 − "/assets/chunk-O5MCAK4F-Bb2mnKES.js",
784 − "/assets/chunk-4EXC76WE-BGNFvi-g.js",
785 − "/assets/chunk-AN5I7NTT-Ck4vZ9He.js",
786 − "/assets/proxy-DfkJuQz0.js",
787 − "/assets/create-visual-element-ZgQz5_Xg.js",
788 − "/assets/layout-D897SnWT.js",
789 − "/assets/link-DBd_8VBO.js",
790 − "/assets/chunk-T45N425O-C34bNx0L.js",
791 − "/assets/chunk-BWXGEJBS-B1XlP2n6.js",
792 − "/assets/chunk-WQVQ7P2I-BrI7gbrL.js",
793 − "/assets/chunk-OTWYT2HS-Df-iONO0.js",
794 − "/assets/index-C3aLSQj3.js",
795 − "/assets/useModal-CeS5iZMH.js",
796 − "/assets/exports-mapbox-Bx3w98cJ.js",
797 − "/assets/index-7d5art0_.js",
798 − "/assets/rich-text-display-BlrZ_1h7.js",
799 − "/assets/utils-CvVRVFAc.js",
800 − "/assets/signature-block-C-ZZEVGr.js",
801 − "/assets/index-BnPmUpYq.js",
802 − "/assets/use-rich-text-editor-osHrkC4A.js",
803 − "/assets/client-only-BvFCVX3P.js",
804 − "/assets/use-hydrated-D950Dr4H.js",
805 − "/assets/chunk-J7I6W5JF-CW2YKheb.js",
806 − "/assets/chunk-M3MASYO7-D515YSCq.js",
807 − "/assets/create-rpc-stub-BbU9ptcF.js",
808 − "/assets/index-BL9R5Cz9.js",
809 − "/assets/zod-DGDtP7Md.js",
810 − "/assets/use-server-command-CsT9c6Aj.js",
811 − "/assets/lead-preferences-renderer-B8Zub-nw.js",
812 − "/assets/form-hidden-input-PkDAaWy5.js",
813 − "/assets/form-input-CIKylvmI.js",
814 − "/assets/input-B_zvg1Nd.js",
815 − "/assets/chunk-XHMVOG2O-DqDYtEQx.js",
816 − "/assets/chunk-M4TMBWRA-DN_qeIIW.js",
817 − "/assets/chunk-2BFF5KFD-LMU0oTtF.js",
818 − "/assets/useControlledState-DQzmlyV_.js",
819 − "/assets/chunk-HLVSDU2Q-CPnXltB8.js",
820 − "/assets/extends-BQWZ3hUO.js",
821 − "/assets/system-preferences-DWMBYQ-w.js",
822 − "/assets/app-form-D4qVp9Qh.js",
823 − "/assets/button-CI3vN0fP.js",
824 − "/assets/spinner-DfOLdSP8.js",
825 − "/assets/chunk-XOTBZDRP-CRj2Icm-.js",
826 − "/assets/index-D0MIspu5.js",
827 − "/assets/chunk-SCEI2WGG-CyJ86LKj.js",
828 − "/assets/use-in-view-BcUotcrM.js",
829 − "/assets/chunk-CXOJTH5M-DB3U-oS0.js"
830 − ],
831 − "css": [
832 − "/assets/listing-card-BJU93aco.css",
833 − "/assets/use-rich-text-editor-D9Rskyfk.css"
834 − ]
835 − }
836 − },
837 − "url": "/assets/manifest-61bb538b.js",
838 − "version": "61bb538b"
839 −};
840 − window.__reactRouterRouteModules = {"root":route0,"PublicListingsLayoutPage":route1,"PublicListingDetailPage":route2};
841 −
842 −import("/assets/entry.client-D3Lor9BQ.js");</script><!--$--><script>window.__reactRouterContext.streamController.enqueue("[{\"_1\":2,\"_3\":-5,\"_4\":-5},\"loaderData\",{\"_5\":6,\"_7\":8,\"_9\":10},\"actionData\",\"errors\",\"root\",{\"_633\":-5,\"_634\":-7,\"_635\":636,\"_637\":638,\"_19\":20,\"_17\":639,\"_640\":-5,\"_641\":642,\"_292\":293,\"_643\":-5,\"_644\":-5},\"PublicListingsLayoutPage\",{\"_17\":282,\"_283\":284,\"_285\":286,\"_287\":53,\"_288\":289,\"_290\":291,\"_292\":293,\"_294\":51,\"_295\":51,\"_296\":51},\"PublicListingDetailPage\",{\"_11\":12,\"_13\":14,\"_15\":16,\"_17\":18,\"_19\":20,\"_21\":22},\"listing\",{\"_43\":147,\"_148\":149,\"_89\":150,\"_151\":150,\"_77\":96,\"_152\":153,\"_154\":155,\"_108\":72,\"_111\":156,\"_109\":157,\"_33\":158,\"_159\":160,\"_161\":162,\"_163\":-5,\"_164\":-5,\"_165\":166,\"_167\":53,\"_168\":169,\"_170\":171},\"auth\",{\"_145\":53,\"_146\":51},\"walkScore\",{\"_117\":118,\"_119\":120,\"_33\":121,\"_122\":123,\"_124\":125,\"_126\":127,\"_128\":129,\"_130\":131,\"_132\":129,\"_133\":134,\"_135\":136,\"_137\":138,\"_139\":140},\"tenant\",{\"_23\":24,\"_25\":26,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":37,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"lang\",\"fr\",\"pageUrl\",\"www.halfred.ca/listings/29-rue-lemieux/details\",\"address\",{\"_89\":107,\"_77\":96,\"_108\":72,\"_109\":110,\"_111\":112,\"_113\":94,\"_114\":80,\"_83\":91,\"_115\":116},\"analytics\",{\"_101\":102,\"_103\":104,\"_105\":106},\"colors\",{\"_97\":98,\"_99\":100},\"contact\",{\"_62\":63,\"_64\":65,\"_23\":66},\"customDomains\",[55,56],\"description\",\"Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.\",\"emptyImage\",\"features\",{\"_50\":51,\"_52\":53,\"_54\":51},\"icon\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427\",\"legalName\",\"Halfred\",\"privacyPolicyUrl\",\"slug\",\"halfred\",\"templateConfig\",{},\"templateId\",\"title\",\"Halfred | Apartment rentals\",\"buildingVisibilityOverride\",false,\"hasMarketingEnabled\",true,\"showUnitAvailability\",{\"_57\":61},{\"_57\":58,\"_59\":60},\"domain\",\"chelseacreekmulti.halfred.ca\",\"projectSubdomain\",\"chelseacreekmulti\",\"www.halfred.ca\",\"email\",\"info@halfred.ca\",\"phone\",\"(819) 593-3304\",{\"_67\":68,\"_69\":70,\"_71\":72,\"_73\":74,\"_75\":76,\"_77\":78,\"_79\":80,\"_81\":82,\"_83\":84,\"_85\":86,\"_87\":88,\"_89\":72},\"kind\",\"auto\",\"addressSearch\",\"50 Rue Noel, Gatineau, QC, Canada\",\"aptNumber\",\"\",\"civicNumber\",\"50\",\"streetName\",\"Rue Noel\",\"city\",{\"_90\":96,\"_92\":96},\"postalCode\",\"J8Z 2M4\",\"province\",{\"_90\":94,\"_92\":95},\"country\",{\"_90\":91,\"_92\":93},\"lat\",45.467906,\"lng\",-75.7344541,\"street\",\"label\",\"Canada\",\"value\",\"CA\",\"Quebec\",\"QC\",\"Gatineau\",\"primary\",\"#e1b269\",\"secondary\",\"#ffffff\",\"facebookPixel\",\"559624543506935\",\"google\",\"AW-10996299223\",\"googleTagManager\",\"GTM-NDZF3K4R\",\"50 Rue Noël\",\"neighborhood\",\"latitude\",\"45.467989\",\"longitude\",\"-75.734424\",\"region\",\"postcode\",\"country_code\",\"ca\",\"status\",1,\"walkscore\",72,\"Very Walkable\",\"updated\",\"2026-02-24 23:25:30.604041\",\"logo_url\",\"https://cdn.walk.sc/images/api-logo.png\",\"more_info_icon\",\"https://cdn.walk.sc/images/api-more-info.gif\",\"more_info_link\",\"https://www.redfin.com/how-walk-score-works\",\"ws_link\",\"https://www.walkscore.com/score/29Rue-Lemieux/lat=45.461357/lng=-75.76648/?utm_source=halfred.ca\u0026utm_medium=ws_api\u0026utm_campaign=ws_api\",\"help_link\",\"snapped_lat\",45.462,\"snapped_lon\",-75.7665,\"transit\",{\"_33\":-5,\"_144\":-5,\"_142\":-5},\"bike\",{\"_33\":141,\"_142\":143},\"Very Bikeable\",\"score\",87,\"summary\",\"loggedIn\",\"isStaff\",\"29-rue-lemieux\",\"area\",1000,\"29 Rue Lemieux\",\"name\",\"buildingId\",\"66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf\",\"availabilty\",[\"D\",1780272000000],-75.76648,45.461357,{\"_256\":280,\"_20\":281},\"images\",[279],\"automatedApplyMode\",\"direct\",\"buildingAutomatedApplyMode\",\"leadFormConfig\",\"buildingFeatures\",[248,249,250,251,252,253],\"listed\",\"units\",[187,188],\"cardData\",{\"_43\":147,\"_89\":150,\"_77\":96,\"_108\":72,\"_109\":157,\"_111\":156,\"_172\":-5,\"_173\":174,\"_175\":176,\"_148\":177,\"_178\":179,\"_180\":181},\"unitId\",\"bedrooms\",[186],\"bathrooms\",[118],[149],\"price\",[184,185],\"availability\",[182,183],\"2026-06-01T00:00:00.000Z\",\"2026-07-01T00:00:00.000Z\",1690,1747,2,{\"_43\":229,\"_148\":149,\"_190\":-5,\"_178\":185,\"_173\":186,\"_175\":118,\"_191\":230,\"_159\":231,\"_167\":53,\"_194\":195,\"_196\":197,\"_198\":199,\"_180\":232,\"_201\":-5,\"_202\":-5,\"_203\":233,\"_36\":234},{\"_43\":189,\"_148\":149,\"_190\":-5,\"_178\":184,\"_173\":186,\"_175\":118,\"_191\":192,\"_159\":193,\"_167\":53,\"_194\":195,\"_196\":197,\"_198\":199,\"_180\":200,\"_201\":-5,\"_202\":-5,\"_203\":204,\"_36\":205},\"645f5dd5-465c-4ea0-897a-956e36907ed4\",\"floor\",\"alias\",\"6\",[208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228],\"listing_type\",\"Unit\",\"pricing_strategy\",\"per_month\",\"space_type\",\"apartment\",[\"D\",1782864000000],\"floor_plan_name\",\"floor_plan_image_path\",\"promotion\",{\"_178\":206,\"_33\":207},[],1375,\"** Prix promotionnelle pour un bail de 12 mois ***\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-018.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-019.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-022.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-020.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-009.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-021.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-010.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-011.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-012.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-013.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-014.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-015.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-016.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-017.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-023.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-028.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-029.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-027.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-024.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-025.jpg\",\"/storage/v1/object/public/halfred/units/645f5dd5-465c-4ea0-897a-956e36907ed4/kp-31lemieux-halfred-220615-026.jpg\",\"a07db125-c05d-4642-b89f-9c86fa923efc\",\"3\",[236,237,238,239,240,241,242,243,244,245,246,247],[\"D\",1780272000000],{\"_178\":206,\"_33\":235},[],\"** Prix promotionnelle pour un bail de 12 mois **\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114192.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114189.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114193.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114187.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114188.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114194.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114196.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114198.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114199.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114197.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114202.jpg\",\"/storage/v1/object/public/halfred/units/a07db125-c05d-4642-b89f-9c86fa923efc/1000114203.jpg\",{\"_90\":275,\"_38\":276},{\"_90\":271,\"_38\":272},{\"_90\":267,\"_38\":268},{\"_90\":263,\"_38\":264},{\"_90\":259,\"_38\":260},{\"_90\":254,\"_38\":255},{\"_256\":257,\"_20\":258},\"lucide:lightbulb\",\"en\",\"Electricity\",\"Électricité\",{\"_256\":261,\"_20\":262},\"lucide:check\",\"Water Tank\",\"Réservoir d'eau\",{\"_256\":265,\"_20\":266},\"lucide:car\",\"Parking\",\"Stationnement\",{\"_256\":269,\"_20\":270},\"lucide:wifi\",\"Cable\",\"Câble\",{\"_256\":273,\"_20\":274},\"lucide:droplet\",\"Water\",\"Eau\",{\"_256\":277,\"_20\":278},\"lucide:paw-print\",\"Cats Allowed\",\"Chats autorisés\",\"/storage/v1/object/public/halfred/buildings/66fca696-80a5-4ff0-9fa9-3f7ca4eeabcf/kp-31lemieux-halfred-220615-007.jpg\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Beautiful Apartment for Rent – 29 Lemieux | Prime Hull Location!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Discover this beautiful apartment ideally located in a sought-after area of \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Hull\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", perfect for \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"workers, students, and young professionals\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\". Just \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"9 minutes from downtown Ottawa and the ByWard Market\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", and only steps from \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Cégep de l’Outaouais\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", this unit offers convenient access to everything you need.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"What this unit offers:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🔥💡 Heat \u0026 electricity included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 💻 Internet included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 parking space included\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Comfortable and practical living space\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Why you’ll love it:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Enjoy quick access to \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"grocery stores, restaurants, banks, pharmacies, public transportation, and more\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", while living in a vibrant and convenient neighborhood.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"The perfect balance of comfort, accessibility, and urban living!\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Important details:\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Credit check required\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Minimum 12-month lease\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Don’t miss out!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contact \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" today at \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" to schedule your visit.\\\"}]}]}\",\"{\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🔥 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Beau logement à louer – 29 Lemieux | Emplacement parfait à Hull!\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" 🔥\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Découvrez ce superbe logement idéalement situé dans un secteur recherché de \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Hull\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", parfait pour les \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"travailleurs, étudiants ou jeunes professionnels\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\". À seulement \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"9 minutes du centre-ville d’Ottawa et du Marché By\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", et à quelques pas du \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Cégep de l’Outaouais\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", ce logement offre un emplacement pratique et accessible près de tout.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"🏡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ce que vous offre le logement :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🔥💡 Chauffé et éclairé\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 💻 Internet inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 🚗 1 stationnement inclus\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• Espace de vie pratique et confortable\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📍 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Pourquoi vous allez l’adorer :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Profitez d’un accès rapide aux \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"épiceries, restaurants, banques, pharmacies et transports\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\", tout en vivant dans un quartier dynamique et recherché.\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"💡 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Le parfait équilibre entre confort, accessibilité et vie urbaine!\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📌 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Informations importantes :\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📋 Enquête de crédit obligatoire\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"• 📆 Bail minimum de 12 mois\\\"}]},{\\\"type\\\":\\\"paragraph\\\",\\\"attrs\\\":{\\\"textAlign\\\":null},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"📞 \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Ne manquez pas cette opportunité!\\\"},{\\\"type\\\":\\\"hardBreak\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Contactez \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"Halfred\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" dès maintenant au \\\"},{\\\"type\\\":\\\"text\\\",\\\"marks\\\":[{\\\"type\\\":\\\"bold\\\"}],\\\"text\\\":\\\"819-593-3304\\\"},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" pour planifier votre visite.\\\"}]}]}\",{\"_23\":24,\"_25\":631,\"_27\":28,\"_29\":30,\"_31\":32,\"_33\":34,\"_35\":-7,\"_36\":632,\"_38\":39,\"_40\":41,\"_42\":-5,\"_43\":44,\"_45\":46,\"_47\":-5,\"_48\":49},\"listings\",[],\"initialFilters\",{\"_178\":400,\"_401\":402,\"_403\":404,\"_148\":405,\"_190\":406,\"_407\":53,\"_175\":408,\"_173\":409,\"_410\":51,\"_411\":53,\"_412\":413,\"_414\":415},\"defaultView\",\"count\",0,\"filters\",{},\"configs\",{\"_297\":298,\"_299\":300,\"_301\":302,\"_303\":304,\"_305\":298,\"_306\":307,\"_308\":309},\"isEmbed\",\"widgetMissing\",\"hasSubmissions\",\"analysisProducts\",[386],\"analysisProductsPrice\",{\"_386\":387,\"_388\":389,\"_390\":391,\"_392\":393,\"_394\":391,\"_395\":391,\"_396\":397,\"_398\":399},\"notifications\",{\"_368\":369},\"form\",{\"_361\":53,\"_362\":51,\"_363\":53,\"_364\":53,\"_365\":51,\"_366\":51,\"_367\":51},\"enabledSkus\",\"submissions\",{\"_311\":312,\"_313\":314,\"_315\":316,\"_317\":318,\"_27\":319,\"_320\":-5},\"agent\",{\"_310\":51},\"hideAgentNewSubmissionBtn\",\"all\",[347,348,349,350,351,352,353,357,358,359,360],\"steps\",[347,348,349,350,351,352,353],\"badges\",[337,338,339,340,341,342],\"statuses\",[331,321,323,325,327,329,332,333,334,335,336],{\"_321\":322,\"_323\":324,\"_325\":326,\"_327\":328,\"_329\":330},\"snoozeStep\",\"pending\",\"bg-pink-500\",\"preapproved\",\"bg-sky-500\",\"approved\",\"bg-purple-500\",\"signature\",\"bg-green-500\",\"accepted\",\"bg-amber-500\",\"draft\",\"chosen\",\"rejected\",\"lead\",\"cancelled\",\"soft_rejected\",{\"_343\":321,\"_345\":322},{\"_343\":323,\"_345\":324},{\"_343\":325,\"_345\":326},{\"_343\":327,\"_345\":328},{\"_343\":329,\"_345\":330},{\"_343\":344,\"_345\":346},\"id\",\"snoozed\",\"color\",\"bg-teal-500\",{\"_343\":331,\"_345\":-5,\"_354\":51},{\"_343\":321,\"_345\":322,\"_354\":53,\"_355\":51,\"_356\":51},{\"_343\":323,\"_345\":324,\"_354\":53,\"_355\":51,\"_356\":51},{\"_343\":325,\"_345\":326,\"_354\":53,\"_355\":51,\"_356\":51},{\"_343\":327,\"_345\":328,\"_354\":53,\"_355\":51,\"_356\":51},{\"_343\":329,\"_345\":330,\"_354\":53,\"_355\":51,\"_356\":51},{\"_343\":332,\"_345\":-5,\"_354\":53},\"isActionable\",\"staffActionnable\",\"visitAgentActionnable\",{\"_343\":333,\"_345\":-5,\"_354\":51},{\"_343\":334,\"_345\":-5,\"_354\":51},{\"_343\":335,\"_345\":-5,\"_354\":51},{\"_343\":336,\"_345\":-5,\"_354\":51},\"tenant_payments_enabled\",\"tenant_refunds_enabled\",\"require_id_proof\",\"require_payment_proof\",\"allow_co_applicants\",\"require_employment_reference\",\"require_landlord_reference\",\"emails\",{\"_308\":370,\"_371\":372,\"_17\":373,\"_374\":375},[383,384,385],\"manager\",[],[377,378,379,380,381,382],\"admin\",[376],\"daily-recap\",\"invite-tenant\",\"application-confirm\",\"application-rejected\",\"incomplete-applicant-reminder\",\"submission-status-update\",\"submission-marked-as-accepted\",\"agent-assigned\",\"agent-approved-with-conditions\",\"agent-approved-without-conditions\",\"ca_citizen_credit_check\",1999,\"ca_citizen_public_court_files\",1399,\"qc_citizen_criminal_plumitif_check\",1499,\"qc_citizen_rental_board_check\",799,\"ca_citizen_workplace_reference_verification\",\"ca_citizen_landlord_reference_verification\",\"ca_citizen_rent_affordability_analysis\",499,\"qc_citizen_lease_generation\",999,[118,630],\"pricePerMonth\",[118,630],\"pricePerSqft\",[289,289],[289,629],[628,435],\"hasFloor\",[289,186],[289,627],\"hasCommercial\",\"hasResidential\",\"availableAmenities\",[459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492],\"availableNeighborhoods\",[416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433],{\"_151\":458,\"_288\":118},{\"_151\":457,\"_288\":118},{\"_151\":456,\"_288\":118},{\"_151\":454,\"_288\":455},{\"_151\":453,\"_288\":118},{\"_151\":452,\"_288\":186},{\"_151\":450,\"_288\":451},{\"_151\":96,\"_288\":449},{\"_151\":447,\"_288\":448},{\"_151\":446,\"_288\":186},{\"_151\":445,\"_288\":118},{\"_151\":443,\"_288\":444},{\"_151\":442,\"_288\":118},{\"_151\":440,\"_288\":441},{\"_151\":439,\"_288\":186},{\"_151\":438,\"_288\":118},{\"_151\":436,\"_288\":437},{\"_151\":434,\"_288\":435},\"Touraine\",6,\"Templeton\",14,\"Saint-Jérôme\",\"Québec\",\"Pointe-Gatineau\",5,\"Plateau \",\"Plateau\",26,\"plateau\",\"Old Gatineau\",\"Hull\",19,39,\"East Templeton\",3,\"East Buckingham\",\"Buckingham\",\"Aylmer\",18,\"angers\",\"2\",\"1\",{\"_43\":625,\"_151\":626,\"_38\":264},{\"_43\":623,\"_151\":624,\"_38\":272},{\"_43\":619,\"_151\":620,\"_38\":260},{\"_43\":615,\"_151\":616,\"_38\":508},{\"_43\":610,\"_151\":611,\"_38\":612},{\"_43\":608,\"_151\":609,\"_38\":260},{\"_43\":603,\"_151\":604,\"_38\":605},{\"_43\":601,\"_151\":602,\"_38\":276},{\"_43\":597,\"_151\":598,\"_38\":508},{\"_43\":595,\"_151\":596,\"_38\":255},{\"_43\":591,\"_151\":592,\"_38\":499},{\"_43\":587,\"_151\":588,\"_38\":260},{\"_43\":583,\"_151\":584,\"_38\":539},{\"_43\":579,\"_151\":580,\"_38\":268},{\"_43\":574,\"_151\":575,\"_38\":576},{\"_43\":572,\"_151\":573,\"_38\":268},{\"_43\":567,\"_151\":568,\"_38\":569},{\"_43\":563,\"_151\":564,\"_38\":526},{\"_43\":558,\"_151\":559,\"_38\":560},{\"_43\":554,\"_151\":555,\"_38\":276},{\"_43\":550,\"_151\":551,\"_38\":276},{\"_43\":546,\"_151\":547,\"_38\":539},{\"_43\":542,\"_151\":543,\"_38\":544},{\"_43\":537,\"_151\":538,\"_38\":539},{\"_43\":533,\"_151\":534,\"_38\":499},{\"_43\":529,\"_151\":530,\"_38\":264},{\"_43\":524,\"_151\":525,\"_38\":526},{\"_43\":520,\"_151\":521,\"_38\":268},{\"_43\":515,\"_151\":516,\"_38\":517},{\"_43\":511,\"_151\":512,\"_38\":264},{\"_43\":506,\"_151\":507,\"_38\":508},{\"_43\":502,\"_151\":503,\"_38\":504},{\"_43\":497,\"_151\":498,\"_38\":499},{\"_43\":493,\"_151\":494,\"_38\":260},\"counter-type\",{\"_256\":495,\"_20\":496},\"Counter Type\",\"Type de comptoir\",\"yard-access\",{\"_256\":500,\"_20\":501},\"lucide:fence\",\"Yard Access\",\"Accès au jardin\",\"commodes\",{\"_256\":505,\"_20\":505},\"lucide:armchair\",\"Commodes\",\"gas-heating\",{\"_256\":509,\"_20\":510},\"lucide:thermometer-sun\",\"Gas Heating\",\"Chauffage au gaz\",\"garage-parking\",{\"_256\":513,\"_20\":514},\"Garage Parking\",\"Parking garage\",\"disabled-access\",{\"_256\":518,\"_20\":519},\"lucide:accessibility\",\"Disabled Access\",\"Accès handicapé\",\"cable-internet\",{\"_256\":522,\"_20\":523},\"Cable Internet\",\"Internet par câble\",\"microwave\",{\"_256\":527,\"_20\":528},\"lucide:microwave\",\"Microwave\",\"Micro-ondes\",\"underground-garage\",{\"_256\":531,\"_20\":532},\"Underground Garage\",\"Garage souterrain\",\"building-terrace\",{\"_256\":535,\"_20\":536},\"Building Terrace\",\"Terrasse de l'immeuble\",\"dryer\",{\"_256\":540,\"_20\":541},\"lucide:washing-machine\",\"Dryer\",\"Sèche-linge\",\"gym\",{\"_256\":545,\"_20\":545},\"lucide:dumbbell\",\"Gym\",\"laundry-room\",{\"_256\":548,\"_20\":549},\"Laundry Room\",\"Buanderie\",\"small-dogs-allowed\",{\"_256\":552,\"_20\":553},\"Small Dogs Allowed\",\"Petits chiens autorisés\",\"large-dogs-allowed\",{\"_256\":556,\"_20\":557},\"Large Dogs Allowed\",\"Gros chiens autorisés\",\"locker-storage-space\",{\"_256\":561,\"_20\":562},\"lucide:warehouse\",\"Locker/Storage Space\",\"Casiers/espace de rangement\",\"oven\",{\"_256\":565,\"_20\":566},\"Oven\",\"Four\",\"refrigerator\",{\"_256\":570,\"_20\":571},\"lucide:refrigerator\",\"Refrigerator\",\"Réfrigérateur\",\"cable\",{\"_256\":269,\"_20\":270},\"stove\",{\"_256\":577,\"_20\":578},\"lucide:soup\",\"Stove\",\"Cuisinière\",\"fiber-internet\",{\"_256\":581,\"_20\":582},\"Fiber Internet\",\"Internet fibre\",\"washer\",{\"_256\":585,\"_20\":586},\"Washer\",\"Laveuse\",\"elevator\",{\"_256\":589,\"_20\":590},\"Elevator\",\"Ascenseur\",\"balcony\",{\"_256\":593,\"_20\":594},\"Balcony\",\"Balcon\",\"electricity\",{\"_256\":257,\"_20\":258},\"electric-heating\",{\"_256\":599,\"_20\":600},\"Electric Heating\",\"Chauffage Électrique\",\"cats-allowed\",{\"_256\":277,\"_20\":278},\"blinds\",{\"_256\":606,\"_20\":607},\"lucide:blinds\",\"Blinds\",\"Stores\",\"water-tank\",{\"_256\":261,\"_20\":262},\"washer-dryer-outlet\",{\"_256\":613,\"_20\":614},\"lucide:plug\",\"Washer/Dryer Outlet\",\"Prise lave-linge/sèche-linge\",\"central-air-conditioning\",{\"_256\":617,\"_20\":618},\"Central Air Conditioning\",\"Climatisation centrale\",\"dishwasher\",{\"_256\":621,\"_20\":622},\"Dishwasher\",\"Lave-vaisselle\",\"water\",{\"_256\":273,\"_20\":274},\"parking\",{\"_256\":265,\"_20\":266},4,-1,2063,3050,{\"_101\":102,\"_103\":104,\"_105\":106},{\"_50\":51,\"_52\":53,\"_54\":51},\"devTools\",\"prefill\",\"impersonate\",{},\"theme\",\"light\",{\"_343\":659,\"_43\":44,\"_660\":661,\"_48\":49,\"_33\":34,\"_27\":28,\"_662\":663,\"_23\":24,\"_29\":30,\"_299\":664,\"_665\":666,\"_667\":668,\"_669\":670,\"_40\":41,\"_671\":672,\"_673\":674,\"_42\":-5,\"_675\":-5,\"_47\":-5,\"_45\":46,\"_31\":32,\"_676\":-5,\"_677\":-5,\"_292\":293,\"_678\":679,\"_680\":681,\"_682\":683,\"_38\":39,\"_684\":685,\"_35\":-7,\"_686\":687,\"_36\":688,\"_689\":690,\"_691\":692,\"_25\":693,\"_297\":694,\"_695\":696,\"_697\":698},\"toast\",\"user\",{\"_645\":51,\"_646\":-5,\"_647\":-5,\"_648\":-5,\"_649\":-5,\"_650\":-5,\"_651\":-5,\"_652\":-5,\"_653\":-5,\"_654\":-5,\"_62\":-5,\"_64\":-5,\"_655\":-5,\"_146\":51,\"_656\":51,\"_657\":-5,\"_658\":-5},\"otpPendingEmail\",\"otpPendingContextEmail\",\"isSignedIn\",\"userId\",\"firstName\",\"lastName\",\"fullName\",\"dateOfBirth\",\"preferredLanguage\",\"orgRole\",\"orgSlug\",\"role\",\"profilePicture\",\"isImpersonated\",\"impersonatorId\",\"ipAddress\",\"org_2ji0sc5JZBAvQSfJouJ38QQAgGt\",\"assets\",{\"_38\":782},\"social\",{\"_779\":780,\"_781\":72},{\"_386\":387,\"_388\":389,\"_390\":391,\"_392\":393,\"_394\":391,\"_395\":391,\"_396\":397,\"_398\":399},\"stripeCustomerId\",\"cus_RIProit2SsF5oW\",\"paymentSetupRequiredAfter\",[\"D\",1744243200000],\"tos\",{\"_776\":738,\"_329\":53,\"_777\":51,\"_778\":733},\"plan\",{\"_151\":757,\"_758\":72,\"_759\":760,\"_761\":762,\"_763\":764,\"_765\":766,\"_767\":289,\"_768\":769,\"_770\":289,\"_771\":772,\"_773\":449,\"_774\":775},\"metadata\",{\"_25\":693},\"consentConditionsText\",\"suspendedAt\",\"archivedAt\",\"billing\",{\"_750\":751,\"_665\":666,\"_752\":753,\"_40\":41,\"_754\":755,\"_67\":756},\"bucket\",{\"_747\":44,\"_748\":749},\"appUrl\",\"https://www.halfred.ca\",\"logo\",{\"_638\":744,\"_745\":746},\"tosHistory\",[733],{\"_707\":53,\"_708\":-7,\"_52\":53,\"_709\":51,\"_710\":51,\"_711\":53,\"_712\":53,\"_713\":51,\"_714\":51,\"_715\":-7,\"_716\":51,\"_717\":51,\"_718\":51,\"_719\":720,\"_721\":51,\"_310\":51,\"_722\":-7,\"_723\":-7,\"_724\":-7,\"_725\":51,\"_50\":51,\"_726\":51,\"_54\":51,\"_727\":728,\"_729\":53,\"_730\":51,\"_731\":51,\"_732\":51},\"disabledModules\",[],\"banner\",{\"_256\":705,\"_20\":706},{\"_103\":104,\"_703\":704,\"_101\":102,\"_105\":106},[386],\"payments\",{\"_699\":53,\"_700\":53,\"_701\":51,\"_702\":51},\"version\",\"prod-20260804-99fda6a\",\"isTenantPayingForCheck\",\"isOrgPaymentSetup\",\"isPrepaid\",\"shouldAskToSetupPayment\",\"googleAds\",\"nUh7CMCR7NMZENfruPso\",\"Subsidized housing | Have you been selected for the OHO Rent Supplement Program? We can help you find accommodation.\",\"Logements subventionnés | Avez-vous été sélectionné pour le programme de supplément au loyer de l'OHO ? Nous pouvons vous aider à trouver un logement.\",\"tempEquifaxEnabled\",\"whArrayAsObjects\",\"disableAgents\",\"preventInvitation\",\"isBannerEnabled\",\"preventApplyWhenNotListed\",\"hasDynamicLinks\",\"isSinEnforced\",\"isTestMode\",\"hasSubmissionsAssignedEnabled\",\"hasLargeUnitChangeTrigger\",\"hideServiceEstimates\",\"unitChangeThreshold\",300,\"showAgentPortalButton\",\"hasLegalChecksConfidence\",\"legalChecksConfidenceLevel\",\"automatedPrepayed\",\"hasPerBuildingLeadForm\",\"hasDocumentAiEnabled\",\"partnerOffersEnabled\",[],\"showPerMonthPricing\",\"blockOutOfProvinceEndorsers\",\"leaseGenerationEnabled\",\"hasPerProjectChecks\",{\"_734\":735,\"_736\":737,\"_697\":738,\"_329\":53,\"_327\":739,\"_740\":741,\"_742\":743},\"ip\",\"45.73.54.230\",\"url\",\"tos/tos_v1.0.0_1751897023917_PjHq10.pdf\",\"1.0.0\",\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNzU4IDE5MiIgd2lkdGg9Ijc1OCIgaGVpZ2h0PSIxOTIiPjxwYXRoIGQ9Ik0gMjgwLjAwMCw3MC4wMDAgQyAyNzQuNjM1LDY3LjUxNyAyNzQuNTAwLDY4LjAwMCAyNjkuMDAwLDY2LjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjMxOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjY5LjAwMCw2Ni4wMDAgQyAyNjEuNDQyLDY0Ljc1MSAyNjEuNjM1LDY0LjAxNyAyNTQuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjU0LjAwMCw2My4wMDAgQyAyNDQuNjI0LDU5Ljc1MCAyNDQuNDQyLDYwLjc1MSAyMzUuMDAwLDU4LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjczOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjM1LjAwMCw1OC4wMDAgQyAyMjguMDA2LDU3LjMxOCAyMjguMTI0LDU2Ljc1MCAyMjEuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjk3MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjIxLjAwMCw1Ny4wMDAgQyAyMTcuMDAwLDU3LjAwMCAyMTcuMDA2LDU2LjgxOCAyMTMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUyMSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEzLjAwMCw1Ny4wMDAgQyAyMDcuOTUxLDU2LjUwNSAyMDguMDAwLDU3LjAwMCAyMDMuMDAwLDU3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQ3OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjAzLjAwMCw1Ny4wMDAgQyAxOTcuODk3LDU3LjY0MCAxOTcuOTUxLDU3LjUwNSAxOTMuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTkzLjAwMCw1OS4wMDAgQyAxODkuMDI4LDYwLjU3OCAxODguODk3LDYwLjE0MCAxODUuMDAwLDYyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg1LjAwMCw2Mi4wMDAgQyAxODAuMTk2LDYyLjkwMiAxODAuNTI4LDYzLjU3OCAxNzYuMDAwLDY1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU3MSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTc2LjAwMCw2NS4wMDAgQyAxNzIuNzQzLDY3LjkyMSAxNzIuMTk2LDY2LjkwMiAxNjkuMDAwLDcwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY5LjAwMCw3MC4wMDAgQyAxNjMuMzIzLDcyLjE4MiAxNjMuNzQzLDcyLjkyMSAxNTguMDAwLDc1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjQxMCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTU4LjAwMCw3NS4wMDAgQyAxNTUuMDQxLDc3LjA2NSAxNTQuODIzLDc2LjY4MiAxNTIuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTUyLjAwMCw3OS4wMDAgQyAxNDkuMjg0LDgwLjIyMyAxNDkuNTQxLDgwLjU2NSAxNDcuMDAwLDgyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ3LjAwMCw4Mi4wMDAgQyAxNDQuMzEyLDgzLjU5NSAxNDQuNzg0LDgzLjcyMyAxNDMuMDAwLDg2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUyNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQzLjAwMCw4Ni4wMDAgQyAxNDEuNDc2LDg5LjQyNyAxNDEuMzEyLDg5LjA5NSAxNDEuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjU4NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQxLjAwMCw5My4wMDAgQyAxNDEuMDAwLDk3LjAwMCAxNDAuNDc2LDk2LjkyNyAxNDEuMDAwLDEwMS4wMDAiIHN0cm9rZS13aWR0aD0iNC43NzUiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE0MS4wMDAsMTAxLjAwMCBDIDEzOS43NzksMTA1Ljg1MCAxNDEuMDAwLDEwNS41MDAgMTQxLjAwMCwxMTAuMDAwIiBzdHJva2Utd2lkdGg9IjQuNTQxIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNDEuMDAwLDExMC4wMDAgQyAxNDMuMjY1LDExNC4xNzAgMTQyLjI3OSwxMTQuMzUwIDE0Ni4wMDAsMTE4LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjg1MyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTQ2LjAwMCwxMTguMDAwIEMgMTQ4LjI0OCwxMjEuMjQ4IDE0OC4yNjUsMTIxLjE3MCAxNTEuMDAwLDEyNC4wMDAiIHN0cm9rZS13aWR0aD0iMy44MDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE1MS4wMDAsMTI0LjAwMCBDIDE1NC4xMDcsMTI3LjY2NCAxNTQuMjQ4LDEyNy4yNDggMTU4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxNTguMDAwLDEzMC4wMDAgQyAxNjIuMDEzLDEzMS40NjcgMTYxLjYwNywxMzIuMTY0IDE2Ni4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTY2LjAwMCwxMzMuMDAwIEMgMTY4LjM5OSwxMzQuMzUwIDE2OC41MTMsMTMzLjk2NyAxNzEuMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yNjMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE3MS4wMDAsMTM1LjAwMCBDIDE3Ni40NjksMTM2LjM0OSAxNzYuMzk5LDEzNi4zNTAgMTgyLjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjQyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAxODIuMDAwLDEzNy4wMDAgQyAxODUuMDAwLDEzNy4wMDAgMTg0Ljk2OSwxMzcuMzQ5IDE4OC4wMDAsMTM3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjEzNSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMTg4LjAwMCwxMzcuMDAwIEMgMTkxLjAwMCwxMzcuMDAwIDE5MS4wMDAsMTM3LjAwMCAxOTQuMDAwLDEzNy4wMDAiIHN0cm9rZS13aWR0aD0iNC4xNTEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDE5NC4wMDAsMTM3LjAwMCBDIDE5OS4wMTcsMTM3LjI3NyAxOTkuMDAwLDEzNy4wMDAgMjA0LjAwMCwxMzcuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMDQuMDAwLDEzNy4wMDAgQyAyMDguMDEwLDEzNi41NzAgMjA4LjAxNywxMzYuNzc3IDIxMi4wMDAsMTM2LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjQ1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjEyLjAwMCwxMzYuMDAwIEMgMjE1LjAwOCwxMzUuNTQ0IDIxNS4wMTAsMTM1LjU3MCAyMTguMDAwLDEzNS4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMzMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIxOC4wMDAsMTM1LjAwMCBDIDIyMC40OTIsMTM0LjQ1NiAyMjAuNTA4LDEzNC41NDQgMjIzLjAwMCwxMzQuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjU2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyMjMuMDAwLDEzNC4wMDAgQyAyMjYuMDE5LDEzMy41OTYgMjI1Ljk5MiwxMzMuNDU2IDIyOS4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjE3NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjI5LjAwMCwxMzMuMDAwIEMgMjMzLjQ3MiwxMzEuODQ5IDIzMy41MTksMTMyLjA5NiAyMzguMDAwLDEzMS4wMDAiIHN0cm9rZS13aWR0aD0iNC4zMjgiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDIzOC4wMDAsMTMxLjAwMCBDIDI0MS40ODQsMTMwLjI3MCAyNDEuNDcyLDEzMC4zNDkgMjQ1LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNDUuMDAwLDEzMC4wMDAgQyAyNDguMDAwLDEzMC4wMDAgMjQ3Ljk4NCwxMjkuNzcwIDI1MS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjA4NiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjUxLjAwMCwxMzAuMDAwIEMgMjU0LjAwMCwxMzAuMDAwIDI1NC4wMDAsMTMwLjAwMCAyNTcuMDAwLDEzMC4wMDAiIHN0cm9rZS13aWR0aD0iNC4xMzYiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI1Ny4wMDAsMTMwLjAwMCBDIDI2Mi41MDAsMTMwLjAwMCAyNjIuNTAwLDEzMC4wMDAgMjY4LjAwMCwxMzAuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTkzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyNjguMDAwLDEzMC4wMDAgQyAyNzEuNTY5LDEzMC40OTAgMjcxLjUwMCwxMzAuMDAwIDI3NS4wMDAsMTMwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjUxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjc1LjAwMCwxMzAuMDAwIEMgMjc4LjY2OCwxMjkuMzg4IDI3OC41NjksMTI5LjQ5MCAyODIuMDAwLDEyOC4wMDAiIHN0cm9rZS13aWR0aD0iNC4wNDAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Mi4wMDAsMTI4LjAwMCBDIDI4NC4zOTgsMTI2LjMwMSAyODQuNjY4LDEyNi44ODggMjg3LjAwMCwxMjUuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODcuMDAwLDEyNS4wMDAgQyAyOTAuNTUxLDEyMy42MTAgMjkwLjM5OCwxMjMuMzAxIDI5NC4wMDAsMTIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjk1OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk0LjAwMCwxMjIuMDAwIEMgMjk4LjEwNywxMjAuMTkwIDI5OC4wNTEsMTIwLjExMCAzMDIuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy43NjQiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMwMi4wMDAsMTE4LjAwMCBDIDMwNi4yMzgsMTE1LjgyMSAzMDYuMTA3LDExNS42OTAgMzEwLjAwMCwxMTMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjAzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDExMy4wMDAgQyAzMTQuMjUzLDEwOS43NDcgMzE0LjIzOCwxMDkuODIxIDMxOC4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUwMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCwxMDYuMDAwIEMgMzIwLjg0OCwxMDMuMjI4IDMyMC43NTMsMTAzLjI0NyAzMjMuMDAwLDEwMC4wMDAiIHN0cm9rZS13aWR0aD0iMy42OTIiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMyMy4wMDAsMTAwLjAwMCBDIDMyNC4zOTUsOTYuOTQyIDMyNC44NDgsOTcuMjI4IDMyNi4wMDAsOTQuMDAwIiBzdHJva2Utd2lkdGg9IjMuOTI1IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDk0LjAwMCBDIDMyNy42MDUsOTEuNTU4IDMyNy4zOTUsOTEuNDQyIDMyOS4wMDAsODkuMDAwIiBzdHJva2Utd2lkdGg9IjQuMTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDg5LjAwMCBDIDMzMS4wOTIsODYuMTc5IDMzMC42MDUsODYuMDU4IDMzMi4wMDAsODMuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzIuMDAwLDgzLjAwMCBDIDMzMi4zMzgsNzguOTc0IDMzMy4wOTIsNzkuMTc5IDMzMy4wMDAsNzUuMDAwIiBzdHJva2Utd2lkdGg9IjMuODMzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzMuMDAwLDc1LjAwMCBDIDMzNC4xNjIsNzAuMDI2IDMzMy44MzgsNjkuOTc0IDMzNS4wMDAsNjUuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzUuMDAwLDY1LjAwMCBDIDMzNS43MTMsNjEuMDEzIDMzNS42NjIsNjEuMDI2IDMzNi4wMDAsNTcuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjgwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDU3LjAwMCBDIDMzNy4xNTMsNTAuMzQxIDMzNi4yMTMsNTQuMDEzIDMzNi4wMDAsNTEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMDAyIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMzYuMDAwLDUxLjAwMCBDIDMzMi40MzgsNTUuOTU4IDMzMy42NTMsNTIuMzQxIDMyOS4wMDAsNjEuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzQzIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjkuMDAwLDYxLjAwMCBDIDMyNC45NTIsNjYuOTY4IDMyNC45MzgsNjYuOTU4IDMyMS4wMDAsNzMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNDEwIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjEuMDAwLDczLjAwMCBDIDMxNS4yNDUsODEuMzQ2IDMxNS40NTIsODEuNDY4IDMxMC4wMDAsOTAuMDAwIiBzdHJva2Utd2lkdGg9IjIuNzczIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMTAuMDAwLDkwLjAwMCBDIDMwNS41ODYsOTguMDUwIDMwNS4yNDUsOTcuODQ2IDMwMS4wMDAsMTA2LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjY2NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAxLjAwMCwxMDYuMDAwIEMgMjk3LjcyMiwxMTAuODU4IDI5OC4wODYsMTExLjA1MCAyOTUuMDAwLDExNi4wMDAiIHN0cm9rZS13aWR0aD0iMy4xMDEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI5NS4wMDAsMTE2LjAwMCBDIDI5My45MDEsMTE5Ljc0MCAyOTMuMjIyLDExOS4zNTggMjkyLjAwMCwxMjMuMDAwIiBzdHJva2Utd2lkdGg9IjMuNjExIiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEyMy4wMDAgQyAyODkuODMyLDEyNS4zODMgMjkwLjQwMSwxMjUuNzQwIDI4OC4wMDAsMTI4LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjMxNyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjg4LjAwMCwxMjguMDAwIEMgMjg2LjMwMCwxMzAuNDAxIDI4Ni4zMzIsMTMwLjM4MyAyODUuMDAwLDEzMy4wMDAiIHN0cm9rZS13aWR0aD0iNC42MzEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4NS4wMDAsMTMzLjAwMCBDIDI4My40MzUsMTM4LjQzNSAyODMuODAwLDEzNS40MDEgMjgzLjAwMCwxMzguMDAwIiBzdHJva2Utd2lkdGg9IjQuNzg2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyODMuMDAwLDEzOC4wMDAgQyAyODIuMzIwLDEzNC4zOTggMjgyLjQzNSwxMzcuNDM1IDI4My4wMDAsMTMxLjAwMCIgc3Ryb2tlLXdpZHRoPSI1LjEwNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjgzLjAwMCwxMzEuMDAwIEMgMjg0Ljc3NywxMjQuNDIzIDI4NC4zMjAsMTI0LjM5OCAyODcuMDAwLDExOC4wMDAiIHN0cm9rZS13aWR0aD0iMy40NjAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDI4Ny4wMDAsMTE4LjAwMCBDIDI4OS41MDAsMTExLjUwMCAyODkuMjc3LDExMS40MjMgMjkyLjAwMCwxMDUuMDAwIiBzdHJva2Utd2lkdGg9IjMuMTk0IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAyOTIuMDAwLDEwNS4wMDAgQyAyOTQuMjg4LDk4LjQxMCAyOTQuNTAwLDk4LjUwMCAyOTcuMDAwLDkyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjEyMiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMjk3LjAwMCw5Mi4wMDAgQyAyOTkuOTEyLDg1LjQ1OCAyOTkuNzg4LDg1LjQxMCAzMDMuMDAwLDc5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjAxMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzAzLjAwMCw3OS4wMDAgQyAzMDUuMzA4LDczLjg5NSAzMDUuNDEyLDczLjk1OCAzMDguMDAwLDY5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjI2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzA4LjAwMCw2OS4wMDAgQyAzMTAuOTEwLDYzLjk0MyAzMTAuODA4LDYzLjg5NSAzMTQuMDAwLDU5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE0LjAwMCw1OS4wMDAgQyAzMTUuNzAzLDU1Ljc1NiAzMTUuOTEwLDU1Ljk0MyAzMTguMDAwLDUzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjY5MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE4LjAwMCw1My4wMDAgQyAzMjAuODg1LDQ5Ljg3NiAzMjAuNzAzLDQ5Ljc1NiAzMjQuMDAwLDQ3LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjczMyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzI0LjAwMCw0Ny4wMDAgQyAzMjcuMzE5LDQzLjc2MSAzMjcuMzg1LDQzLjg3NiAzMzEuMDAwLDQxLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjcyNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzMxLjAwMCw0MS4wMDAgQyAzMzUuMjY2LDM3LjU4MiAzMzUuMzE5LDM3Ljc2MSAzNDAuMDAwLDM1LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjUxOSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQwLjAwMCwzNS4wMDAgQyAzNDYuMzIwLDMxLjUzNCAzNDYuMjY2LDMxLjU4MiAzNTMuMDAwLDI5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE4MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzUzLjAwMCwyOS4wMDAgQyAzNjAuOTM1LDI2LjI1OCAzNjAuODIwLDI2LjAzNCAzNjkuMDAwLDI0LjAwMCIgc3Ryb2tlLXdpZHRoPSIyLjkyOCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY5LjAwMCwyNC4wMDAgQyAzNzQuMDM4LDIxLjE1MSAzNzMuNDM1LDIyLjc1OCAzNzguMDAwLDIyLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM0OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc4LjAwMCwyMi4wMDAgQyAzODIuMjYwLDIzLjg1NSAzODEuMDM4LDIyLjY1MSAzODMuMDAwLDI3LjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM5NCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgzLjAwMCwyNy4wMDAgQyAzODIuNzc4LDMzLjAzNyAzODQuMjYwLDMyLjM1NSAzODIuMDAwLDM5LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjU2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgyLjAwMCwzOS4wMDAgQyAzODEuMzUzLDQ0LjU4NiAzODEuMjc4LDQ0LjUzNyAzODAuMDAwLDUwLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM4MiIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzgwLjAwMCw1MC4wMDAgQyAzNzcuOTA0LDU2LjQ3MiAzNzguMzUzLDU2LjU4NiAzNzYuMDAwLDYzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjE5OCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzc2LjAwMCw2My4wMDAgQyAzNzUuMDIwLDY4LjY5OSAzNzQuNDA0LDY4LjQ3MiAzNzMuMDAwLDc0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjMxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzczLjAwMCw3NC4wMDAgQyAzNzAuNzk1LDc5LjE3MSAzNzEuMDIwLDc5LjE5OSAzNjguMDAwLDg0LjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2OSIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzY4LjAwMCw4NC4wMDAgQyAzNjQuODQ1LDg4LjQwNCAzNjUuMjk1LDg4LjY3MSAzNjIuMDAwLDkzLjAwMCIgc3Ryb2tlLXdpZHRoPSIzLjM2MCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzYyLjAwMCw5My4wMDAgQyAzNTguNzA2LDk5LjEzMyAzNTguMzQ1LDk4LjkwNCAzNTUuMDAwLDEwNS4wMDAiIHN0cm9rZS13aWR0aD0iMy4xNzAiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDM1NS4wMDAsMTA1LjAwMCBDIDM1Mi42ODQsMTA4LjY0NSAzNTIuNzA2LDEwOC42MzMgMzUwLjAwMCwxMTIuMDAwIiBzdHJva2Utd2lkdGg9IjMuNTQ2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzNTAuMDAwLDExMi4wMDAgQyAzNDYuODY1LDExNi4zOTMgMzQ2LjY4NCwxMTYuMTQ1IDM0My4wMDAsMTIwLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjAxNCIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzQzLjAwMCwxMjAuMDAwIEMgMzM5LjE4OCwxMjMuMjkwIDMzOS4zNjUsMTIzLjM5MyAzMzUuMDAwLDEyNi4wMDAiIHN0cm9rZS13aWR0aD0iNC4yMjEiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMzNS4wMDAsMTI2LjAwMCBDIDMzMC43NDgsMTI5LjE1NCAzMzAuNjg4LDEyOC43OTAgMzI2LjAwMCwxMzEuMDAwIiBzdHJva2Utd2lkdGg9IjQuMjY3IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PHBhdGggZD0iTSAzMjYuMDAwLDEzMS4wMDAgQyAzMjEuNTI4LDEzMi43MTcgMzIxLjc0OCwxMzIuNjU0IDMxNy4wMDAsMTMzLjAwMCIgc3Ryb2tlLXdpZHRoPSI0LjM3NyIgc3Ryb2tlPSJyZ2JhKDAsIDAsIDAsIDAuOCkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjxwYXRoIGQ9Ik0gMzE3LjAwMCwxMzMuMDAwIEMgMzEzLjA4OSwxMzMuNDI1IDMxMy41MjgsMTMzLjIxNyAzMTAuMDAwLDEzMi4wMDAiIHN0cm9rZS13aWR0aD0iNC41NTMiIHN0cm9rZT0icmdiYSgwLCAwLCAwLCAwLjgpIiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48cGF0aCBkPSJNIDMxMC4wMDAsMTMyLjAwMCBDIDMwNi45MDAsMTI5LjYxMCAzMDYuNTg5LDEzMC40MjUgMzA0LjAwMCwxMjcuMDAwIiBzdHJva2Utd2lkdGg9IjQuNzc2IiBzdHJva2U9InJnYmEoMCwgMCwgMCwgMC44KSIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj48L3BhdGg+PC9zdmc+\",\"acceptedAt\",\"2025-07-07T14:03:44.290Z\",\"acceptedBy\",\"Camille Desmarais (camille@halfred.ca)\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light\",\"dark\",\"https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/dark\",\"public\",\"private\",\"halfred_private\",\"billingEmail\",\"camille@halfred.ca\",\"lastDigit\",\"3644\",\"paymentType\",\"visa\",\"configured\",\"Business\",\"notes\",\"planId\",\"business_2025_06\",\"startDate\",\"2025-07-01\",\"yearlyPrice\",5990,\"monthlyPrice\",418,\"freeTrialDays\",\"includedUsers\",15,\"integrationFee\",\"billingInterval\",\"monthly\",\"additionalUserPrice\",\"planDurationInMonths\",12,\"current\",\"shouldAccept\",\"lastAccepted\",\"facebook\",\"https://www.facebook.com/halfredgestionimmobiliere/\",\"youtube\",{\"_783\":784},\"updated_at\",\"2026-04-21T13:21:29.427Z\"]\n");</script><!--$--><script>window.__reactRouterContext.streamController.close();</script><!--/$--><!--/$--></body></html>
\ No newline at end of file
added tests/fixtures/halfred/cd420176ea90d476cb39.html +322 −0
@@ -0,0 +1,1047 @@
1 +<!DOCTYPE html><html lang="fr" class="h-full" data-sentry-component="Layout" data-sentry-source-file="root.layout.tsx"><head><meta charSet="utf-8" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><meta name="viewport" content="width=device-width, initial-scale=1" data-sentry-element="meta" data-sentry-source-file="root.layout.tsx"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-2.jpg?width=800&amp;height=520&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=1280&amp;height=880&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-2.jpg?width=1280&amp;height=720&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/b2ab947f-f429-4e05-909c-9e41315435dd/0-36%20Rue%20Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/0dd918cd-56d6-43d0-a02a-d577a46f6b98/4__0dd918cd-56d6-43d0-a02a-d577a46f6b98.webp?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/10__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/0__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/10__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp?width=232&amp;height=168&amp;quality=80"/><script async="" src="https://www.googletagmanager.com/gtag/js?id=AW-10996299223"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" defer="" async=""></script><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/10__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp?width=232&amp;height=168&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/88ce5de4-950d-46de-8fc2-4785e82fe201/0-36%20Rue%20Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/c7f62d0e-94a8-4677-8c6a-c746a86c372e/0__exterieur-2.jpg?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/11e05b3f-d716-4177-93bb-49e434df913f/0-Boulevard%20Du%20Plateau.PNG?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/6e0fc15a-b20b-40c7-a207-40ad76b4b5ed/0__6e0fc15a-b20b-40c7-a207-40ad76b4b5ed.webp?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/66c431b7-3e52-45af-82cf-672d8c108b7f/0-Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/bc7470bb-44c7-4ff7-9028-f58f4c8810ae/0-Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/4473893f-c6d9-4079-bfb0-6a2819a3e9b0/0-Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80"/><link rel="preload" as="image" href="/storage/v1/render/image/public/halfred/buildings/648bb8cd-ab1e-4e82-9571-0d1dfcc3f446/exterieur-2.jpg?width=192&amp;height=144&amp;quality=80"/><title>Halfred | Apartment rentals | Nuvo, Gatineau</title><meta name="description" content="✨ Appartements contemporains tout inclus – Secteur du Plateau ✨ Découvrez ces magnifiques appartements modernes tout inclus situés dans un immeuble haut de..."/><meta property="og:title" content="Halfred | Apartment rentals | Nuvo, Gatineau"/><meta property="og:locale" content="fr_CA"/><meta property="og:locale:alternate" content="en_CA"/><link rel="icon" href="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/icon?v=1776777689427"/><meta property="og:description" content="✨ Appartements contemporains tout inclus – Secteur du Plateau ✨ Découvrez ces magnifiques appartements modernes tout inclus situés dans un immeuble haut de..."/><meta property="og:image" content="/storage/v1/object/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png"/><meta property="og:url" content="https://www.halfred.ca/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details"/><meta property="og:type" content="website"/><link rel="canonical" href="https://www.halfred.ca/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details"/><link rel="alternate" hrefLang="en" href="https://www.halfred.ca/en/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details"/><link rel="alternate" hrefLang="fr" href="https://www.halfred.ca/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details"/><link rel="alternate" hrefLang="x-default" href="https://www.halfred.ca/en/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><meta name="color-scheme" content="light dark"/><link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.js" as="script"/><link rel="modulepreload" href="/assets/entry.client-BIJa3TY3.js"/><link rel="modulepreload" href="/assets/jsx-runtime-umhk6iWe.js"/><link rel="modulepreload" href="/assets/debug-build-VZlf1Aof.js"/><link rel="modulepreload" href="/assets/chunk-QUQL4437-m7Whu12z.js"/><link rel="modulepreload" href="/assets/index-blsAimsU.js"/><link rel="modulepreload" href="/assets/instance-Dwq5XJYG.js"/><link rel="modulepreload" href="/assets/locale-rlhQ6FjN.js"/><link rel="modulepreload" href="/assets/paths-CiQnXl4X.js"/><link rel="modulepreload" href="/assets/index-DJnVLKJF.js"/><link rel="modulepreload" href="/assets/root-QjKtVYQu.js"/><link rel="modulepreload" href="/assets/icon-D77RBjQx.js"/><link rel="modulepreload" href="/assets/index-BcM1d6pB.js"/><link rel="modulepreload" href="/assets/index-BxwHZyk5.js"/><link rel="modulepreload" href="/assets/address-picker-D28Ia1SL.js"/><link rel="modulepreload" href="/assets/should-revalidate-for-modal-BjoLrI2F.js"/><link rel="modulepreload" href="/assets/app-form-CRPZmLNY.js"/><link rel="modulepreload" href="/assets/client-CpT78rmL.js"/><link rel="modulepreload" href="/assets/use-auth-D_t8q_v4.js"/><link rel="modulepreload" href="/assets/runtime-TD3m583z.js"/><link rel="modulepreload" href="/assets/app-role-CLgIwJtM.js"/><link rel="modulepreload" href="/assets/button-KaTnxiWj.js"/><link rel="modulepreload" href="/assets/debounced-input-CiRn7H0h.js"/><link rel="modulepreload" href="/assets/modal-BG3X61k6.js"/><link rel="modulepreload" href="/assets/select-DAy4fObn.js"/><link rel="modulepreload" href="/assets/spinner-DDyy7LQF.js"/><link rel="modulepreload" href="/assets/chunk-Z2IJA2C6-HV0pgn-m.js"/><link rel="modulepreload" href="/assets/chunk-X7MTWOQW-WAUgT67m.js"/><link rel="modulepreload" href="/assets/chunk-KCYYJJH4-D1ITcD8b.js"/><link rel="modulepreload" href="/assets/use-screenshot-mode-RoZeXH-d.js"/><link rel="modulepreload" href="/assets/chunk-MZRCPRP2-DYxK4Zfu.js"/><link rel="modulepreload" href="/assets/chunk-AEGP7AWW-CdjLmKwP.js"/><link rel="modulepreload" href="/assets/chunk-LWGPUDJ5-DXeFIXJr.js"/><link rel="modulepreload" href="/assets/chunk-Z3BOY3TE-DEWsIWYm.js"/><link rel="modulepreload" href="/assets/chunk-XHMVOG2O-4Klpj7aY.js"/><link rel="modulepreload" href="/assets/chunk-ANTZPR32-oluoUkZX.js"/><link rel="modulepreload" href="/assets/index-BY237WkB.js"/><link rel="modulepreload" href="/assets/use-tenant-wE0zDJ1a.js"/><link rel="modulepreload" href="/assets/check.types-BWLDkV3s.js"/><link rel="modulepreload" href="/assets/index-CwlnhZHs.js"/><link rel="modulepreload" href="/assets/index-CXP4lC37.js"/><link rel="modulepreload" href="/assets/google-analytics-D-bO2gMa.js"/><link rel="modulepreload" href="/assets/use-hydrated-nn_6IPIK.js"/><link rel="modulepreload" href="/assets/index-8boKsGvQ.js"/><link rel="modulepreload" href="/assets/chunk-XOTBZDRP-Cs68Z8tX.js"/><link rel="modulepreload" href="/assets/chunk-UWE6H66T-CATF3OXa.js"/><link rel="modulepreload" href="/assets/context-C7uvIu_A.js"/><link rel="modulepreload" href="/assets/preload-helper-Cer9inx8.js"/><link rel="modulepreload" href="/assets/useModal-C3khzgYn.js"/><link rel="modulepreload" href="/assets/should-revalidate-public-site-5Jm5YPL-.js"/><link rel="modulepreload" href="/assets/root.not-found-DP5tZm2i.js"/><link rel="modulepreload" href="/assets/show-BOEsnqQk.js"/><link rel="modulepreload" href="/assets/use-is-iframe-DIKEri2l.js"/><link rel="modulepreload" href="/assets/chunk-J7I6W5JF-BxlgVQt-.js"/><link rel="modulepreload" href="/assets/chunk-T45N425O-CCF24x8B.js"/><link rel="modulepreload" href="/assets/index-4iKnbB6S.js"/><link rel="modulepreload" href="/assets/divider-DdHzHMcP.js"/><link rel="modulepreload" href="/assets/chunk-IHO36JMK-CudmTyxx.js"/><link rel="modulepreload" href="/assets/chip-CYQecIkM.js"/><link rel="modulepreload" href="/assets/chunk-IGTUIHQL-CdI6Gxle.js"/><link rel="modulepreload" href="/assets/chunk-46U6G7UJ-gFKycGP3.js"/><link rel="modulepreload" href="/assets/chunk-GIXI35A3-B8XtW7nM.js"/><link rel="modulepreload" href="/assets/proxy-BlmPTkqy.js"/><link rel="modulepreload" href="/assets/create-visual-element-Cc1-iv7S.js"/><link rel="modulepreload" href="/assets/accelerated-values-ClBEnI7v.js"/><link rel="modulepreload" href="/assets/index-DmhvH8SD.js"/><link rel="modulepreload" href="/assets/layout-CqatgvGE.js"/><link rel="modulepreload" href="/assets/chunk-MW56SEHC-DwFKBuSp.js"/><link rel="modulepreload" href="/assets/chunk-6VC6TS2O-SX8Y9q32.js"/><link rel="modulepreload" href="/assets/chunk-LGSBTEIA-UfZs9AlK.js"/><link rel="modulepreload" href="/assets/chunk-A6PX3NG3-Chz5RD4X.js"/><link rel="modulepreload" href="/assets/chunk-GQT3YUX3-DzENEW_R.js"/><link rel="modulepreload" href="/assets/index-CRabYQb-.js"/><link rel="modulepreload" href="/assets/index-DuhTrrt1.js"/><link rel="modulepreload" href="/assets/input-CkQmsiJb.js"/><link rel="modulepreload" href="/assets/chunk-HLVSDU2Q-BfKq6B3B.js"/><link rel="modulepreload" href="/assets/chunk-M4TMBWRA-DZmj94dY.js"/><link rel="modulepreload" href="/assets/chunk-2BFF5KFD-B5kMqXyZ.js"/><link rel="modulepreload" href="/assets/useControlledState-C6ovzWeF.js"/><link rel="modulepreload" href="/assets/useFormValidation-BlL8vXtt.js"/><link rel="modulepreload" href="/assets/useControlledState-Dl_rDvO0.js"/><link rel="modulepreload" href="/assets/useField-CBKMx-DQ.js"/><link rel="modulepreload" href="/assets/useLabel-FzyH2LZi.js"/><link rel="modulepreload" href="/assets/useLabels-BL4rQGMb.js"/><link rel="modulepreload" href="/assets/chunk-SLABUSGS-CsPdtrbI.js"/><link rel="modulepreload" href="/assets/mergeRefs-C8xtGVp3.js"/><link rel="modulepreload" href="/assets/extends-BSSSaanF.js"/><link rel="modulepreload" href="/assets/chunk-M3MASYO7-COH9P04M.js"/><link rel="modulepreload" href="/assets/types-BKXG3Vd5.js"/><link rel="modulepreload" href="/assets/index-BoeY4VQ9.js"/><link rel="modulepreload" href="/assets/OtpInput-CJhAm1Gc.js"/><link rel="modulepreload" href="/assets/roles-Cde3N6LE.js"/><link rel="modulepreload" href="/assets/modal-root-haL454LR.js"/><link rel="modulepreload" href="/assets/chunk-3BLMMOBU-tqWtrwC-.js"/><link rel="modulepreload" href="/assets/useOverlayTriggerState-woQJgDxB.js"/><link rel="modulepreload" href="/assets/FocusScope-CWuTxhav.js"/><link rel="modulepreload" href="/assets/useDialog-Bh9KG6MB.js"/><link rel="modulepreload" href="/assets/VisuallyHidden-D-Q2SU4O.js"/><link rel="modulepreload" href="/assets/isScrollable-Dnxj3NSq.js"/><link rel="modulepreload" href="/assets/useLocalizedStringFormatter-D7dPX0dK.js"/><link rel="modulepreload" href="/assets/chunk-3JRSRN3Z-BUx49d_-.js"/><link rel="modulepreload" href="/assets/chunk-O5MCAK4F-A0F2Kr_1.js"/><link rel="modulepreload" href="/assets/chunk-4EXC76WE-CTMOnrtn.js"/><link rel="modulepreload" href="/assets/chunk-AN5I7NTT-DacZf5QI.js"/><link rel="modulepreload" href="/assets/Item-DuavYi1u.js"/><link rel="modulepreload" href="/assets/chunk-PNCCMQP3-Dlh7B5Hk.js"/><link rel="modulepreload" href="/assets/chunk-WQVQ7P2I-CK8OnwRa.js"/><link rel="modulepreload" href="/assets/number-lhSI2oqU.js"/><link rel="modulepreload" href="/assets/chunk-2TLCDWYU-RTcKDiay.js"/><link rel="modulepreload" href="/assets/getItemCount-BQolBIkZ.js"/><link rel="modulepreload" href="/assets/SelectionManager-BmJrKgY4.js"/><link rel="modulepreload" href="/assets/scrollIntoView-BWAA50rI.js"/><link rel="modulepreload" href="/assets/useSelectableItem-Ds0Ihirs.js"/><link rel="modulepreload" href="/assets/useDescription-DF6TDnVi.js"/><link rel="modulepreload" href="/assets/index-D8QbWu84.js"/><link rel="modulepreload" href="/assets/useSelectableList-BOP0KhmN.js"/><link rel="modulepreload" href="/assets/DOMLayoutDelegate-Brany3qe.js"/><link rel="modulepreload" href="/assets/useCollator-CbJkpXG2.js"/><link rel="modulepreload" href="/assets/useTreeState-Dx1W0YuM.js"/><link rel="modulepreload" href="/assets/useMenuTriggerState-CHKcWOlC.js"/><link rel="modulepreload" href="/assets/useMenuTrigger-DKFjnCNZ.js"/><link rel="modulepreload" href="/assets/chunk-OTWYT2HS-lPQ6au10.js"/><link rel="modulepreload" href="/assets/Section-CaP3oBph.js"/><link rel="modulepreload" href="/assets/chunk-SKOC4V7G-Do7Tq4HL.js"/><link rel="modulepreload" href="/assets/useToggleState-DY8z2i0t.js"/><link rel="modulepreload" href="/assets/index-BzZ-MzUq.js"/><link rel="modulepreload" href="/assets/useToggle-QKKEqo_x.js"/><link rel="modulepreload" href="/assets/chunk-SCEI2WGG-BFru4-X-.js"/><link rel="modulepreload" href="/assets/useListState-B4m86R4N.js"/><link rel="modulepreload" href="/assets/chunk-6KAJCIZ3-P4qKaVGt.js"/><link rel="modulepreload" href="/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js"/><link rel="modulepreload" href="/assets/index-BqKdBFUB.js"/><link rel="modulepreload" href="/assets/slugify-CySYC-JW.js"/><link rel="modulepreload" href="/assets/skus-CGbSBieh.js"/><link rel="modulepreload" href="/assets/index-DqzG1Q9x.js"/><link rel="modulepreload" href="/assets/support-packages.config-6a6yxm_x.js"/><link rel="modulepreload" href="/assets/public-language.route-CAo3UYRz.js"/><link rel="modulepreload" href="/assets/listings-layout.page-LDEbvt1e.js"/><link rel="modulepreload" href="/assets/runtime-MtUT-9pW.js"/><link rel="modulepreload" href="/assets/global-progress-CjDASA7T.js"/><link rel="modulepreload" href="/assets/facebook-pixel-B5MxbSaJ.js"/><link rel="modulepreload" href="/assets/header-BBMyfPB0.js"/><link rel="modulepreload" href="/assets/footer-Byz07yjl.js"/><link rel="modulepreload" href="/assets/powered-by-eversa-BF980dJS.js"/><link rel="modulepreload" href="/assets/listing-card-Cg3TPyWe.js"/><link rel="modulepreload" href="/assets/use-locale-BnwvbFV-.js"/><link rel="modulepreload" href="/assets/use-localized-path-BMxKZwMg.js"/><link rel="modulepreload" href="/assets/i18n-CTdcZBaW.js"/><link rel="modulepreload" href="/assets/date-C7fQmg2U.js"/><link rel="modulepreload" href="/assets/format-BKStloXP.js"/><link rel="modulepreload" href="/assets/differenceInCalendarMonths-BIK1pmCx.js"/><link rel="modulepreload" href="/assets/formatDistanceToNow-BvwR-I5H.js"/><link rel="modulepreload" href="/assets/listingTypes-CkyCgPCr.js"/><link rel="modulepreload" href="/assets/floor-label-CGeBlKR2.js"/><link rel="modulepreload" href="/assets/chunk-2R3S2K5U-B-QC78gb.js"/><link rel="modulepreload" href="/assets/useNumberFormatter-DG2VO0C1.js"/><link rel="modulepreload" href="/assets/NumberFormatter-BWU_gJyt.js"/><link rel="modulepreload" href="/assets/chunk-BWXGEJBS-HK8A-kdw.js"/><link rel="modulepreload" href="/assets/chunk-HAJUSXOG-CmxXBVjy.js"/><link rel="modulepreload" href="/assets/useButton-DZK-beuH.js"/><link rel="modulepreload" href="/assets/chunk-OH2E76JR-DzJdiJUl.js"/><link rel="modulepreload" href="/assets/index-B915wqUE.js"/><link rel="modulepreload" href="/assets/index-DGzYOEP8.js"/><link rel="modulepreload" href="/assets/chunk-D7WRZFSP-cqLhFDYn.js"/><link rel="modulepreload" href="/assets/use-debounce-D23YJQRM.js"/><link rel="modulepreload" href="/assets/use-debounced-callback-Do1iUmMt.js"/><link rel="modulepreload" href="/assets/locale-switcher-kD-MOI9x.js"/><link rel="modulepreload" href="/assets/use-show-profile-modal-Cgfts1ut.js"/><link rel="modulepreload" href="/assets/chunk-5LMKFFWA-GEW8N4pt.js"/><link rel="modulepreload" href="/assets/chunk-IGERPFKH-BDJ90PZL.js"/><link rel="modulepreload" href="/assets/storage-image-BRiFwsnF.js"/><link rel="modulepreload" href="/assets/empty-image-DeSmMdF3.js"/><link rel="modulepreload" href="/assets/storage-JzkTKPy4.js"/><link rel="modulepreload" href="/assets/chunk-UYTDJMPP-w_Hx60qF.js"/><link rel="modulepreload" href="/assets/chunk-4DMBHLGU-BGQrDZEF.js"/><link rel="modulepreload" href="/assets/chunk-TLGNVWIG-DUXnPsRX.js"/><link rel="modulepreload" href="/assets/tooltip-_QqyKTfK.js"/><link rel="modulepreload" href="/assets/eversa-logo-DmkjJgjq.js"/><link rel="modulepreload" href="/assets/exports-mapbox-Dy-MMXYe.js"/><link rel="modulepreload" href="/assets/chunk-H4M2ZVHB-CKd8CziD.js"/><link rel="modulepreload" href="/assets/useProgressBar-DhWwJb16.js"/><link rel="modulepreload" href="/assets/index-Cy2bmlj7.js"/><link rel="modulepreload" href="/assets/chunk-6NGXL2PC-CZx5wfNy.js"/><link rel="modulepreload" href="/assets/std-cron-C0Hf3jWh.js"/><link rel="modulepreload" href="/assets/legacy-date-D-X4tG6T.js"/><link rel="modulepreload" href="/assets/chunk-D5XJWRAV-Deu-Z5uA.js"/><link rel="modulepreload" href="/assets/link-CrZmIZC6.js"/><link rel="modulepreload" href="/assets/rich-text-display--Qas76Hg.js"/><link rel="modulepreload" href="/assets/utils-D0p-v41w.js"/><link rel="modulepreload" href="/assets/signature-block-8SMePIUg.js"/><link rel="modulepreload" href="/assets/client-only-BGvaz0Jn.js"/><link rel="modulepreload" href="/assets/settings.types-CTRD0B_j.js"/><link rel="modulepreload" href="/assets/user-menu-BuoWMPG0.js"/><link rel="modulepreload" href="/assets/chunk-R6AK6OQ4-C4Vp7qrO.js"/><link rel="modulepreload" href="/assets/chunk-XPMFI4TR-B3n8vMuC.js"/><link rel="modulepreload" href="/assets/LiveAnnouncer-CnNJa9NI.js"/><link rel="modulepreload" href="/assets/useUpdateEffect-DsCDOPa2.js"/><link rel="modulepreload" href="/assets/index-BT5H2sjL.js"/><link rel="modulepreload" href="/assets/features-animation-BCPmlPPs.js"/><link rel="modulepreload" href="/assets/chunk-G5VRPE3T-DQ9dVtGk.js"/><link rel="modulepreload" href="/assets/use-server-command-DJ0CxbuT.js"/><link rel="modulepreload" href="/assets/create-rpc-stub-SmqOCk37.js"/><link rel="modulepreload" href="/assets/zod-CmeTJI5u.js"/><link rel="modulepreload" href="/assets/lead-preferences-renderer-Efc5v0j9.js"/><link rel="modulepreload" href="/assets/form-hidden-input-DI5aJPYE.js"/><link rel="modulepreload" href="/assets/form-input-C6s4itpV.js"/><link rel="modulepreload" href="/assets/system-preferences-DL4TO29S.js"/><link rel="modulepreload" href="/assets/use-in-view-BNnh4L6M.js"/><link rel="modulepreload" href="/assets/chunk-CXOJTH5M-BzSfmy9K.js"/><link rel="modulepreload" href="/assets/project-detail.page-BFNjsI3w.js"/><link rel="modulepreload" href="/assets/detail-error-boundary-C3TWahqB.js"/><link rel="modulepreload" href="/assets/seo.helpers-rKbdQkhM.js"/><link rel="stylesheet" href="/assets/root-BKxsnM4_.css"/><link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Outfit:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mapbox-gl/3.5.2/mapbox-gl.min.css" type="text/css"/><link rel="stylesheet" href="/assets/rich-text-editor-D9Rskyfk.css#"/><link rel="stylesheet" href="/assets/listing-card-CI-uxcFh.css"/><link rel="stylesheet" type="text/css" href="/style"/><noscript data-sentry-component="GoogleTagManagerNoscript" data-sentry-source-file="google-analytics.tsx"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NDZF3K4R" height="0" width="0" style="display:none;visibility:hidden" title="Google Tag Manager"></iframe></noscript><meta name="sentry-trace" content="30a431eb035eb818255c402d81dd3f4f-fab5d9a13fdd4d5f-1"/>
2 +<meta name="baggage" content="sentry-environment=production,sentry-release=prod-20260917-9ad1803,sentry-public_key=32ea4234f0e509eb140fb92334ebc954,sentry-trace_id=30a431eb035eb818255c402d81dd3f4f,sentry-org_id=476518,sentry-transaction=GET%20%2Fproject%2F%3Aid%2Fdetails,sentry-sampled=true,sentry-sample_rand=0.7334946539620207,sentry-sample_rate=1"/></head><body class="h-full font-montserrat"><div data-overlay-container="true" class="flex h-full flex-1 flex-col" data-theme="light" data-sentry-element="HeroUIProvider" data-sentry-source-file="root.tsx"><script>
3 + window.dataLayer = window.dataLayer || [];
4 + (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 + })(window,document,'script','dataLayer','GTM-NDZF3K4R');
9 + </script><script async="" id="gtag-init">
10 + window.dataLayer = window.dataLayer || [];
11 + function gtag(){dataLayer.push(arguments);}
12 + gtag('js', new Date());
13 +
14 + gtag('config', 'AW-10996299223', {
15 + page_path: window.location.pathname,
16 + });
17 + </script><script>
18 + !function(f,b,e,v,n,t,s)
19 + {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
20 + n.callMethod.apply(n,arguments):n.queue.push(arguments)};
21 + if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
22 + n.queue=[];t=b.createElement(e);t.async=!0;
23 + t.src=v;s=b.getElementsByTagName(e)[0];
24 + s.parentNode.insertBefore(t,s)}(window, document,'script',
25 + 'https://connect.facebook.net/en_US/fbevents.js');
26 + fbq('init', '559624543506935');
27 + fbq('track', 'PageView');
28 + </script><noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=559624543506935&amp;ev=PageView&amp;noscript=1" alt=""/></noscript><div role="progressbar" aria-hidden="true" class="fixed inset-x-0 left-0 z-50 h-1 animate-pulse top-0" data-sentry-component="GlobalProgress" data-sentry-source-file="global-progress.tsx"><div class="h-full bg-primary duration-500 ease-in-out w-0 opacity-0 transition-none"></div></div><div class="shrink-0" data-sentry-component="EditorialHeader" data-sentry-source-file="header.tsx"><header class="editorial-template z-40 bg-[var(--ed-surface)] "><nav data-ed-fade="true" class="mx-auto flex max-w-[1320px] flex-wrap items-center gap-x-3 gap-y-2 px-[clamp(16px,3vw,40px)] py-2 sm:gap-y-3 sm:py-3 lg:grid lg:gap-x-8 lg:py-3.5 lg:grid-cols-[1fr_minmax(0,640px)_1fr]"><div class="order-1 flex min-w-0 flex-1 items-center gap-4 sm:gap-7 lg:min-w-max lg:flex-none lg:gap-10"><a class="min-w-0 shrink" href="/fr" data-discover="true"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/object/public/halfred/logo/light" alt="Halfred | Apartment rentals" class="h-8 w-auto min-w-[90px] max-w-full object-contain sm:h-9" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><form role="search" class="max-lg:hidden order-3 flex h-12 w-full min-w-0 items-center rounded-full border border-[var(--ed-border)] bg-[var(--ed-surface)] pl-1 pr-1.5 shadow-[0_1px_2px_rgba(26,26,23,0.07),0_4px_12px_rgba(26,26,23,0.05)] transition-shadow duration-300 focus-within:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] hover:shadow-[0_1px_3px_rgba(26,26,23,0.08),0_6px_16px_rgba(26,26,23,0.07)] lg:order-2 lg:h-[52px]"><nav aria-label="Views" class="hidden shrink-0 items-center gap-0.5 pl-0.5 lg:flex"><a class="flex h-10 items-center gap-1.5 rounded-full px-3 text-[14px] font-medium tracking-[0.01em] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true"><span></span>Retour à la liste</a><span aria-hidden="true" class="ml-1 h-6 w-px bg-[var(--ed-hairline)]"></span></nav><div class="group flex flex-col data-[hidden=true]:hidden w-full relative justify-end data-[has-label=true]:mt-[calc(theme(fontSize.small)_+_10px)] h-full min-w-0 flex-1" data-slot="base" data-filled="true" data-filled-within="true" data-has-value="true"><div data-slot="main-wrapper" class="h-full flex flex-col"><div data-slot="input-wrapper" class="relative w-full inline-flex tap-highlight-transparent flex-row items-center gap-3 rounded-full transition-background motion-reduce:transition-none !duration-150 outline-none group-data-[focus-visible=true]:z-10 group-data-[focus-visible=true]:ring-2 group-data-[focus-visible=true]:ring-focus group-data-[focus-visible=true]:ring-offset-2 group-data-[focus-visible=true]:ring-offset-background h-full min-h-0 border-0 bg-transparent px-3 shadow-none data-[hover=true]:bg-transparent group-data-[focus=true]:bg-transparent sm:px-4" style="cursor:text"><div data-slot="inner-wrapper" class="inline-flex w-full items-center h-full box-border"><input data-slot="input" class="w-full font-normal bg-transparent !outline-none focus-visible:outline-none data-[has-start-content=true]:ps-1.5 data-[has-end-content=true]:pe-1.5 file:cursor-pointer file:bg-transparent file:border-0 autofill:bg-transparent bg-clip-text group-data-[has-value=true]:text-default-foreground text-ellipsis text-[16px] text-[var(--ed-ink)] placeholder:text-[var(--ed-secondary)] sm:text-[15px]" aria-label="Search listings" data-sentry-element="Input" data-sentry-source-file="header.tsx" type="text" placeholder="Search by address or neighborhood" id="react-aria-_R_59tij5_" aria-describedby="react-aria-_R_59tij5H3_ react-aria-_R_59tij5H4_" value=""/></div></div></div></div><span aria-hidden="true" class="h-6 w-px shrink-0 bg-[var(--ed-hairline)]"></span><button type="button" aria-label="Open filters" class="flex h-full shrink-0 items-center gap-2 rounded-full px-3 text-[var(--ed-ink)] transition-opacity hover:opacity-70 sm:px-4"><span></span><span class="hidden text-[14px] font-medium sm:block">Filtres</span></button><button type="submit" aria-label="Search" class="ml-1 flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form><div class="order-2 flex shrink-0 items-center justify-end gap-2 lg:order-3"><button type="button" data-testid="header-language-switch" class="flex h-10 shrink-0 items-center gap-1.5 rounded-full border border-[var(--ed-border)] px-3 text-[13px] text-[var(--ed-secondary)] transition-colors hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)] sm:px-3.5"><span></span><span class="font-semibold text-[var(--ed-ink)]">EN</span><span aria-hidden="true" class="text-[var(--ed-border)]">/</span><span>FR</span></button><div class="flex items-center" data-sentry-component="PlainItem" data-sentry-source-file="auth-actions.tsx"><button type="button" data-testid="auth.sign-in" class="z-0 group relative inline-flex items-center justify-center box-border appearance-none select-none whitespace-nowrap subpixel-antialiased overflow-hidden tap-highlight-transparent data-[pressed=true]:scale-[0.97] outline-none data-[focus-visible=true]:z-10 data-[focus-visible=true]:outline-2 data-[focus-visible=true]:outline-focus data-[focus-visible=true]:outline-offset-2 min-w-20 gap-2 [&amp;&gt;svg]:max-w-[theme(spacing.8)] transition-transform-colors-opacity motion-reduce:transition-none data-[hover=true]:opacity-hover h-10 rounded-full bg-[#1A1A17] px-4 text-[14px] font-semibold tracking-[0.01em] text-white data-[hover=true]:bg-[#2C2A22] data-[hover=true]:opacity-100 sm:px-5">Se connecter</button></div></div></nav></header></div><div class="editorial-template flex-1 bg-[var(--ed-canvas)]" data-sentry-component="EditorialLayout" data-sentry-source-file="layout.tsx"><div class="px-3.5" data-sentry-component="EditorialProjectDetailsPage" data-sentry-source-file="project-details.tsx"><main class="mx-auto max-w-[1320px] px-1 pb-10 pt-3 sm:px-[clamp(20px,4.5vw,64px)] sm:pb-[clamp(48px,5.5vw,84px)] sm:pt-[clamp(24px,3.2vw,44px)]"><div class="flex flex-wrap items-start gap-x-[clamp(40px,5vw,72px)] gap-y-7 sm:gap-y-14 lg:flex-nowrap"><div class="order-2 min-w-0 max-w-[660px] flex-[1_1_440px] lg:order-1"><div data-ed-rise="true" class="ed-kicker mb-2 sm:mb-3">Gatineau</div><h1 class="ed-serif m-0 mb-5 overflow-hidden pb-[0.05em] text-[length:var(--ed-text-h1)] font-medium leading-[1.12] tracking-[-0.012em] text-[var(--ed-ink)] sm:mb-6"><span data-ed-mask="true" class="block">Nuvo</span></h1><div data-ed-rise="4" class="mb-8 sm:mb-10" id="details-cta"><div data-sentry-component="ConversionRail" data-sentry-source-file="conversion-rail.tsx"><div class="flex flex-col items-stretch gap-2.5 sm:flex-row sm:flex-wrap sm:items-center sm:gap-3"><button type="button" class="inline-flex w-full min-h-12 items-center justify-center gap-2.5 rounded-full bg-[var(--ed-ink)] px-7 py-1 shadow-[0_8px_20px_rgba(26,26,23,0.16)] transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto"><span class="text-[14px] font-semibold leading-snug text-white">Je suis intéressé par cette propriété</span><span></span></button></div></div></div><div data-ed-rise="5"><div data-sentry-component="HomeTypeRows" data-sentry-source-file="home-types.tsx"><div class="ed-kicker mb-2 text-[10.5px] tracking-[0.13em]">Logements disponibles</div><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">1 chambre</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">4 disponibles</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,465<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">2 chambres</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">15 disponibles</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,595<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a><a href="#units" class="group flex items-baseline gap-3 border-t border-[var(--ed-hairline)] py-2.5 sm:gap-4"><span class="ed-serif min-w-0 flex-1 text-[15.5px] leading-snug text-[var(--ed-ink)] underline-offset-4 group-hover:underline sm:text-[16.5px]">3 chambres</span><span class="w-[84px] shrink-0 whitespace-nowrap text-[12.5px] text-[var(--ed-secondary)] sm:w-[96px]">6 disponibles</span><span class="shrink-0"><span class="text-[14px] font-semibold text-[var(--ed-ink)]">$1,795<!-- --> <span class="text-[11.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span></span></a></div></div><div data-ed-rise="9" class="mt-8 sm:mt-10"><div class="text-[length:var(--ed-text-copy)] leading-[var(--ed-copy-leading)] text-[var(--ed-body)] [&amp;_p:empty]:hidden [&amp;_p:has(&gt;br:only-child)]:hidden line-clamp-4"><div data-sentry-component="RichTextDisplay" data-sentry-source-file="rich-text-display.tsx"><div class="rich-text-editor"><div class="ProseMirror"><p>✨ <strong>Contemporary All-Inclusive Apartments – Plateau Area</strong> ✨</p><p>Discover these stunning modern all-inclusive apartments located in a premium 4-storey building designed to offer comfort, tranquility, and modern living. With reinforced concrete construction and 9-foot ceilings, enjoy superior soundproofing and bright, spacious living spaces.</p><p>🏙️ <strong>Prime Location – Plateau, Gatineau</strong></p><p>Located in the heart of the Plateau, just steps from <strong>Parc Central, the Agora and its urban village, the municipal library</strong>, and all essential services. Only <strong>10 minutes from downtown Ottawa</strong>, with quick access to public transportation, schools, medical clinics, restaurants, shops, and major retailers.</p><p>🌳 The neighborhood also offers:<br>• Dog park<br>• Community garden<br>• Outdoor skating rink<br>• Splash pad<br>• Children’s playgrounds</p><p>🏡 <strong>All-inclusive for maximum comfort:</strong><br>✅ 5 appliances included<br>✅ Internet included<br>✅ Cable included<br>✅ Outdoor parking included<br>✅ Air conditioning<br>✅ Heat &amp; electricity included<br>✅ Storage spaces<br>✅ Window blinds included</p><p>💡 <strong>Why you’ll love this project:</strong><br>A modern and highly sought-after environment offering exceptional quality of life in one of Gatineau’s most desirable neighborhoods.</p><p>📋 <strong>Rental conditions:</strong><br>• 📆 Minimum 12-month lease<br>• 📋 Credit check required<br>• 🐱🐶 Cats and dogs under 15 lbs accepted<br>• 🚭 Non-smoking complex<br>• 📸 Model photos – units may vary</p><p>📞 Contact <strong>Halfred</strong> today at <strong>819-593-3304</strong> for more information or to schedule your visit!</p></div></div></div></div></div><!--$?--><template id="B:0"></template><!--/$--><div data-ed-rise="9" class="mt-6 sm:mt-8"><div data-sentry-component="ContactPanel" data-sentry-source-file="conversion-rail.tsx"><div class="rounded-[18px] border border-[var(--ed-hairline)] bg-[var(--ed-card-alt)] p-4 sm:p-5" data-sentry-component="ContactActions" data-sentry-source-file="conversion-rail.tsx"><div class="mb-4 flex items-center gap-3"><span class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-chip)] text-[13px] font-semibold tracking-[0.02em] text-[var(--ed-strong)]">H|</span><span class="min-w-0"><span class="block truncate text-[15px] font-semibold text-[var(--ed-ink)]">Halfred | Apartment rentals</span><span class="block text-[12.5px] text-[var(--ed-secondary)]">Gestionnaire immobilier</span></span></div><div class="flex flex-wrap gap-2"><a href="mailto:info@halfred.ca" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full bg-[var(--ed-ink)] px-4 text-[13.5px] font-medium text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:w-auto sm:flex-1"><span></span>Message</a><a href="tel:(819) 593-3304" class="inline-flex h-10 w-full min-w-0 items-center justify-center gap-2 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[13.5px] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)] sm:w-auto sm:flex-1"><span></span><span class="truncate">Appeler (819) 593-3304</span></a></div><form class="mt-2.5 flex items-center gap-2" data-sentry-component="QuickQuestion" data-sentry-source-file="conversion-rail.tsx"><input type="text" placeholder="Or ask a quick question…" class="h-10 min-w-0 flex-1 rounded-full border border-[var(--ed-border)] bg-white px-4 text-[16px] text-[var(--ed-ink)] outline-none transition-colors placeholder:text-[var(--ed-tertiary)] focus:border-[var(--ed-ink)] sm:text-[13.5px]" value=""/><button type="submit" aria-label="Send your question" class="flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-[var(--ed-ink)] text-white transition-colors hover:bg-[var(--ed-ink-hover)]"><span></span></button></form></div></div></div></div><div class="order-1 min-w-0 flex-[1.15_1_480px] lg:sticky lg:top-[92px] lg:order-2 lg:self-start" data-sentry-component="GalleryCollage" data-sentry-source-file="gallery-collage.tsx"><div class="-mx-[1.125rem] flex snap-x snap-mandatory gap-3 overflow-x-auto px-[1.125rem] pb-1 sm:hidden"><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-[86%] snap-center first:w-[92%]" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=800&amp;height=520&amp;quality=80" alt="Nuvo" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span class="absolute bottom-2.5 right-2.5 flex items-center gap-1.5 rounded-full bg-[rgba(26,26,23,0.72)] px-2.5 py-1 text-[11.5px] font-medium text-white"><span></span>2 photos</span></a><a class="ed-thumb relative h-[240px] shrink-0 overflow-hidden rounded-[16px] w-[86%] snap-center first:w-[92%]" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?index=1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-2.jpg?width=800&amp;height=520&amp;quality=80" alt="Nuvo" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div><div class="hidden sm:block"><a data-ed-img="true" class="ed-thumb relative block cursor-zoom-in overflow-hidden rounded-[20px]" style="aspect-ratio:16/11" data-sentry-element="RemixLink" data-sentry-source-file="gallery-collage.tsx" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?index=0" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-1.png?width=1280&amp;height=880&amp;quality=80" alt="Nuvo" data-ed-imgzoom="true" class="absolute inset-0 h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/><div class="absolute bottom-3.5 right-3.5 flex items-center gap-2 rounded-full bg-[rgba(26,26,23,0.78)] px-3.5 py-2"><span></span><span class="text-[13px] font-semibold text-white">2 photos</span></div></a><a data-ed-img="2" class="ed-thumb relative mt-3.5 block cursor-zoom-in overflow-hidden rounded-[18px]" style="aspect-ratio:16/9" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?index=1" data-discover="true"><img src="/storage/v1/render/image/public/halfred/buildings/eb68e600-e815-4e3a-8401-7d0f648af422/exterieur-2.jpg?width=1280&amp;height=720&amp;quality=80" alt="Nuvo" data-ed-imgzoom="2" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/></a></div></div></div><div id="units" class="scroll-mt-[calc(var(--ed-header-h,0px)+16px)] mt-[var(--ed-section-gap)]"><h2 tabindex="-1" data-ed-reveal="true" class="ed-serif m-0 mb-3 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] outline-none sm:mb-4">Bâtiments et unités</h2><div class="mb-5 text-[length:var(--ed-text-lede)] text-[var(--ed-secondary)] sm:mb-7">Choisissez un bâtiment, puis ouvrez un logement pour tous les détails.</div><div class="mb-5 flex flex-col gap-2 sm:mb-6 sm:flex-row sm:flex-wrap sm:items-center sm:gap-x-4 sm:gap-y-2"><div class="flex flex-col gap-2 sm:flex-row sm:flex-wrap sm:items-center" data-sentry-component="UnitsToolbar" data-sentry-source-file="units-toolbar.tsx"><label class="flex h-10 w-full items-center gap-2 rounded-full border border-[var(--ed-border)] bg-white pl-3.5 pr-3 transition-colors focus-within:border-[var(--ed-ink)] sm:h-9 sm:w-auto sm:min-w-[190px] sm:max-w-[260px] sm:flex-none"><span></span><input type="search" placeholder="Search homes" class="w-full min-w-0 bg-transparent text-[16px] text-[var(--ed-ink)] outline-none placeholder:text-[var(--ed-tertiary)] sm:text-[13.5px]" value=""/></label><div class="ed-scroll-rail -mx-[1.125rem] flex items-center gap-2 overflow-x-auto px-[1.125rem] sm:contents"><button type="button" data-type-chip="all" aria-pressed="true" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-transparent bg-[var(--ed-ink)] font-medium text-white">Tous les types</button><button type="button" data-type-chip="bed-1" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">1 chambre<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">4</span></button><button type="button" data-type-chip="bed-2" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">2 chambres<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">15</span></button><button type="button" data-type-chip="bed-3" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]">3 chambres<span class="text-[11.5px] tabular-nums text-[var(--ed-tertiary)]">6</span></button><button type="button" aria-pressed="false" class="flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]"><span></span>Disponible maintenant</button><span class="inline-flex shrink-0 items-center gap-1.5" data-sentry-component="MoveInRangeButton" data-sentry-source-file="units-toolbar.tsx"><button type="button" aria-pressed="false" class="z-10 aria-expanded:scale-[0.97] aria-expanded:opacity-70 subpixel-antialiased flex h-10 shrink-0 items-center gap-1.5 whitespace-nowrap rounded-full border px-3.5 text-[13.5px] transition-colors sm:h-9 border-[var(--ed-border)] bg-white text-[var(--ed-secondary)] hover:border-[var(--ed-ink)] hover:text-[var(--ed-ink)]" data-slot="trigger" aria-haspopup="dialog" aria-expanded="false" data-sentry-element="PopoverTrigger" data-sentry-source-file="units-toolbar.tsx"><span></span>Dates d&#x27;emménagement</button></span></div></div></div><div class="flex flex-col gap-4"><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[#d8d3ca] bg-[var(--ed-surface)] shadow-[0_12px_34px_rgba(26,26,23,0.07)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="true" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/b2ab947f-f429-4e05-909c-9e41315435dd/0-36%20Rue%20Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80" alt="34 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">34 Rue Marjorie-D.-Shackleton</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">5 sur 5 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">34 Rue Marjorie-D.-Shackleton · Plateau</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,540<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform rotate-180 bg-[var(--ed-ink)]"><span></span></span></div></button><div class="border-t border-[var(--ed-hairline-soft)] px-3 pb-4 pt-3 sm:px-[22px] sm:pb-5 sm:pt-4"><div class="mb-4 flex flex-wrap items-center gap-2 px-1 sm:mb-5 sm:px-0"><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Cats Allowed</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Oven</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Parking</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Dryer</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Stove</span><span class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-chip)] px-3 py-1.5 text-[12.5px] text-[var(--ed-strong)]"><span></span>Cable</span><button type="button" class="text-[12.5px] text-[var(--ed-ink)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink-hover)]">+14 plus</button></div><div class="flex flex-col gap-5" data-sentry-component="UnitGroupsSection" data-sentry-source-file="unit-groups.tsx"><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2"><span class="ed-serif text-[var(--ed-ink)] text-[18px] sm:text-[22px]">1 chambre</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=0dd918cd-56d6-43d0-a02a-d577a46f6b98" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/0dd918cd-56d6-43d0-a02a-d577a46f6b98/4__0dd918cd-56d6-43d0-a02a-d577a46f6b98.webp?width=232&amp;height=168&amp;quality=80" alt="101" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">5 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">101</span></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>Étage -1</span><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>474 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 20 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->17</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]">Disponible maintenant</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,540</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div></div></div><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2"><span class="ed-serif text-[var(--ed-ink)] text-[18px] sm:text-[22px]">2 chambres</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=a8a65f89-5a4f-4039-9ad6-c41b7731c1a8" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/a8a65f89-5a4f-4039-9ad6-c41b7731c1a8/10__a8a65f89-5a4f-4039-9ad6-c41b7731c1a8.webp?width=232&amp;height=168&amp;quality=80" alt="103" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">12 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">103</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>Étage -1</span><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>877 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 20 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->17</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]" data-sentry-component="AvailabilityText" data-sentry-source-file="unit-groups.tsx">Disponible le November 1, 2026</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$1,850</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,705</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div><div aria-hidden="true" class="h-px bg-[var(--ed-hairline-soft)]"></div><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=e92e5692-5956-461c-8cba-0b5a1cdf24f7" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/e92e5692-5956-461c-8cba-0b5a1cdf24f7/0__e92e5692-5956-461c-8cba-0b5a1cdf24f7.webp?width=232&amp;height=168&amp;quality=80" alt="402" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">11 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">402</span><button type="button" class="inline-flex items-center gap-1.5 rounded-full bg-[var(--ed-ink)] px-2.5 py-0.5 text-[11px] font-medium leading-[1.35] text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:px-3 sm:py-1 sm:text-[11.5px] sm:leading-normal"><span></span>Promotion disponible — Voir les détails</button></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>1,104 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 20 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->17</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]" data-sentry-component="AvailabilityText" data-sentry-source-file="unit-groups.tsx">Disponible le November 1, 2026</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><span class="text-[13px] text-[var(--ed-secondary)] line-through">$2,250</span><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$1,850</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div></div></div><div data-ed-reveal="true"><div class="flex flex-wrap items-baseline gap-x-3.5 gap-y-1 border-b border-[var(--ed-hairline-soft)] px-0 pb-2 sm:px-0.5 sm:pb-3 mb-2"><span class="ed-serif text-[var(--ed-ink)] text-[18px] sm:text-[22px]">3 chambres</span></div><div class="flex flex-col"><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=f6b7d1b8-ec91-44ba-a824-f45ed2410de4" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/f6b7d1b8-ec91-44ba-a824-f45ed2410de4/10__f6b7d1b8-ec91-44ba-a824-f45ed2410de4.webp?width=232&amp;height=168&amp;quality=80" alt="201" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">10 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">201</span></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>Étage 1</span><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>962 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 22 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->19</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]" data-sentry-component="AvailabilityText" data-sentry-source-file="unit-groups.tsx">Disponible le November 1, 2026</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$2,137</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div><div aria-hidden="true" class="h-px bg-[var(--ed-hairline-soft)]"></div><div class="ed-unit-row w-full rounded-[14px] px-0 py-2.5 text-left transition-colors [--ed-unit-gap:20px] [--ed-unit-thumb-w:60px] hover:bg-[var(--ed-hover-fill)] sm:px-3 sm:[--ed-unit-thumb-w:96px]" data-sentry-component="UnitRow" data-sentry-source-file="unit-groups.tsx"><a class="ed-thumb ed-unit-thumb-area relative overflow-hidden h-[52px] rounded-[10px] sm:h-[62px] block" href="/fr/listings/project/63a3366d-bd30-45af-af68-d25143fbf8e9/details/gallery?unit=95c702e7-e8a6-461a-b9a8-5733bb122d5c" data-discover="true"><img src="/storage/v1/render/image/public/halfred/units/95c702e7-e8a6-461a-b9a8-5733bb122d5c/10__95c702e7-e8a6-461a-b9a8-5733bb122d5c.webp?width=232&amp;height=168&amp;quality=80" alt="301" class="absolute inset-0 h-full w-full object-cover" data-sentry-component="StorageImageInner" data-sentry-source-file="storage-image.tsx"/><span data-testid="unit-photo-count" class="absolute bottom-1 left-1 rounded-full bg-[rgba(26,26,23,0.78)] px-1.5 py-0.5 text-[10px] font-medium text-white">12 photos</span></a><div class="ed-unit-head mb-0.5 flex min-w-0 flex-wrap items-center gap-2.5"><span class="ed-serif text-[17px] text-[var(--ed-ink)] sm:text-[19px]">301</span></div><div class="ed-unit-specs flex min-w-0 flex-wrap items-center gap-x-2.5 gap-y-1 text-[13px] text-[var(--ed-secondary)] sm:mb-1 sm:gap-x-3 sm:text-[13.5px]"><span class="inline-flex items-center gap-1.5"><span></span>Étage 2</span><span class="inline-flex items-center gap-1.5"><span></span>1 salle de bain</span><span class="inline-flex items-center gap-1.5"><span></span>1,005 pi²</span><span class="inline-flex items-center gap-1.5" data-sentry-component="UnitAmenityChips" data-sentry-source-file="unit-groups.tsx"><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><span class="flex h-6 w-6 cursor-default items-center justify-center rounded-full bg-[var(--ed-chip)]"><span></span></span><button type="button" aria-label="Show all 20 amenities" class="relative flex h-6 items-center rounded-full bg-[var(--ed-chip)] px-2 text-[11.5px] font-semibold text-[var(--ed-ink)] transition-colors before:absolute before:-inset-2 before:content-[&#x27;&#x27;] hover:bg-[var(--ed-active-fill)] sm:before:hidden">+<!-- -->17</button></span></div><div class="ed-unit-avail flex min-w-0 items-center gap-1.5 text-[13px]"><span></span><span class="text-[var(--ed-strong)]" data-sentry-component="AvailabilityText" data-sentry-source-file="unit-groups.tsx">Disponible le November 1, 2026</span></div><div class="ed-unit-price flex flex-wrap items-baseline gap-x-1.5 sm:flex-col sm:items-end sm:gap-0"><div class="flex items-baseline gap-1"><span class="text-[18px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[21px]">$2,137</span><span class="text-[12.5px] text-[var(--ed-secondary)]">/ mois</span></div></div></div></div></div></div></div></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/88ce5de4-950d-46de-8fc2-4785e82fe201/0-36%20Rue%20Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80" alt="36 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">36 Rue Marjorie-D.-Shackleton</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">3 sur 3 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">36 Rue Marjorie-D.-Shackleton · Plateau</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,750<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/c7f62d0e-94a8-4677-8c6a-c746a86c372e/0__exterieur-2.jpg?width=192&amp;height=144&amp;quality=80" alt="38 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">38 Rue Marjorie-D.-Shackleton</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">2 sur 2 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">38 Rue Marjorie-D.-Shackleton · Plateau </div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,465<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/11e05b3f-d716-4177-93bb-49e434df913f/0-Boulevard%20Du%20Plateau.PNG?width=192&amp;height=144&amp;quality=80" alt="655 Boulevard Du Plateau" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">655 Boulevard Du Plateau</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">4 sur 4 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">655 Boulevard Du Plateau · Plateau</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,595<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="https://nykxxjptujeqkwefdxxg.supabase.co/storage/v1/render/image/public/halfred/buildings/6e0fc15a-b20b-40c7-a207-40ad76b4b5ed/0__6e0fc15a-b20b-40c7-a207-40ad76b4b5ed.webp?width=192&amp;height=144&amp;quality=80" alt="" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]"></span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">1 sur 1 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">659 Boulevard Du Plateau · Plateau</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,595<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/66c431b7-3e52-45af-82cf-672d8c108b7f/0-Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80" alt="10 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">10 Rue Marjorie-D.-Shackleton</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">1 sur 1 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">10 Rue Marjorie-D.-Shackleton · Plateau</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,882<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/bc7470bb-44c7-4ff7-9028-f58f4c8810ae/0-Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80" alt="" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]"></span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">3 sur 3 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">40 Rue Marjorie-D.-Shackleton · Plateau</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,533<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/4473893f-c6d9-4079-bfb0-6a2819a3e9b0/0-Marjorie-D-Shackleton.jpg?width=192&amp;height=144&amp;quality=80" alt="8 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">8 Rue Marjorie-D.-Shackleton</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">5 sur 5 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">8 Rue Marjorie-D.-Shackleton · Plateau</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,533<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div><div data-ed-reveal="true" class="overflow-hidden rounded-[20px] border transition-[border-color] border-[var(--ed-hairline)] bg-[var(--ed-card-alt)]" data-sentry-component="BuildingCard" data-sentry-source-file="project-details.tsx"><button type="button" aria-expanded="false" class="flex w-full flex-wrap items-center gap-x-4 gap-y-3 px-4 py-4 text-left sm:flex-nowrap sm:gap-6 sm:px-[22px] sm:py-5"><div class="ed-thumb h-[56px] w-[72px] shrink-0 overflow-hidden rounded-[14px] sm:h-[72px] sm:w-[96px]"><img src="/storage/v1/render/image/public/halfred/buildings/648bb8cd-ab1e-4e82-9571-0d1dfcc3f446/exterieur-2.jpg?width=192&amp;height=144&amp;quality=80" alt="42 Rue Marjorie-D.-Shackleton" class="h-full w-full object-cover" data-sentry-element="StorageImage" data-sentry-source-file="storage-image.tsx" data-sentry-component="StorageImageInner"/></div><div class="min-w-0 flex-1"><div class="mb-1.5 flex flex-wrap items-center gap-3"><span class="ed-serif text-[20px] text-[var(--ed-ink)] sm:text-[24px]">42 Rue Marjorie-D.-Shackleton</span><span class="whitespace-nowrap rounded-full bg-[var(--ed-chip)] px-3 py-1 text-[12.5px] text-[var(--ed-strong)]">1 sur 1 disponibles</span></div><div class="truncate text-[14px] text-[var(--ed-tertiary)]">42 Rue Marjorie-D.-Shackleton · Plateau</div></div><div class="flex w-full shrink-0 items-center justify-between gap-3.5 sm:w-auto sm:flex-col sm:items-end"><span class="whitespace-nowrap text-[15.5px] font-bold text-[var(--ed-ink)]">À partir de $1,625<!-- --> <span class="text-[12.5px] font-normal text-[var(--ed-secondary)]">/ mois</span></span><span class="flex h-[34px] w-[34px] items-center justify-center rounded-full transition-transform bg-[var(--ed-chip)]"><span></span></span></div></button></div></div></div><div id="location" class="mt-[var(--ed-section-gap)] scroll-mt-[calc(var(--ed-header-h,78px)+24px)] border-t border-[var(--ed-hairline)] pt-[var(--ed-section-pad)]"><h2 data-ed-reveal="true" class="ed-serif m-0 mb-6 text-[length:var(--ed-text-h2)] font-medium tracking-[-0.01em] text-[var(--ed-ink)] sm:mb-8">Emplacement</h2><div class="flex flex-wrap items-stretch gap-6 sm:gap-9"><!--$?--><template id="B:1"></template><!--/$--><div data-ed-reveal="true" class="relative min-h-[260px] flex-1 basis-[420px] overflow-hidden rounded-[18px] border border-[var(--ed-hairline)] bg-[#efede6] sm:min-h-[320px]" data-sentry-component="EditorialMap" data-sentry-source-file="location.tsx"><div aria-hidden="true" class="absolute inset-0" style="background-image:linear-gradient(#e4e0d8 1px,transparent 1px),linear-gradient(90deg,#e4e0d8 1px,transparent 1px);background-size:38px 38px"></div><div aria-hidden="true" class="absolute left-1/2 top-[48%] -translate-x-1/2 -translate-y-full"><svg width="40" height="40" viewBox="0 0 24 24" fill="#1A1A17" stroke="#fff" stroke-width="1.4" role="presentation" data-sentry-element="svg" data-sentry-component="InkPin" data-sentry-source-file="location.tsx"><path d="M12 22s-7-7.2-7-12a7 7 0 1 1 14 0c0 4.8-7 12-7 12z" data-sentry-element="path" data-sentry-source-file="location.tsx"></path><circle cx="12" cy="10" r="2.4" fill="#fff" stroke="none" data-sentry-element="circle" data-sentry-source-file="location.tsx"></circle></svg></div><div style="position:absolute;width:100%;height:100%;inset:0"></div><div class="ed-caption ed-caption-on-map pointer-events-none absolute bottom-3.5 left-4 rounded-full bg-white/85 px-3 py-1.5 backdrop-blur-[2px]">GATINEAU</div></div></div><a href="https://www.google.com/maps/dir/?api=1&amp;destination=45.428546,-75.804521" target="_blank" rel="noopener noreferrer" class="mt-2.5 inline-block py-2.5 text-[14.5px] text-[var(--ed-secondary)] underline underline-offset-4 transition-colors hover:text-[var(--ed-ink)] sm:mt-5 sm:py-0" data-sentry-component="EditorialDirectionsLink" data-sentry-source-file="location.tsx">Obtenir l&#x27;itinéraire<!-- --> ↗</a></div></main><div aria-hidden="true" class="sticky bottom-[calc(var(--footer-height)+env(safe-area-inset-bottom))] z-40 -mx-3.5 border-t border-[var(--ed-band-line)] bg-white px-3.5 transition-[transform,visibility] duration-300 lg:bottom-0 pointer-events-none invisible translate-y-[110%]" data-sentry-component="DetailsActionBar" data-sentry-source-file="action-bar.tsx"><div class="mx-auto flex h-[var(--ed-action-bar-height)] max-w-[1320px] items-center justify-between gap-3 px-1 sm:gap-4 sm:px-[clamp(20px,4.5vw,64px)]"><div class="min-w-0 overflow-hidden"><div class="truncate"><span class="text-[16px] font-bold tracking-[-0.01em] text-[var(--ed-ink)] sm:text-[18px] lg:text-[19px]">À partir de $1,465</span><span class="hidden text-[13px] text-[var(--ed-secondary)] sm:inline"> <!-- -->/ mois</span></div></div><div class="flex shrink-0 items-center gap-5"><button type="button" class="inline-flex h-11 shrink-0 items-center gap-2 whitespace-nowrap rounded-full bg-[var(--ed-ink)] px-4 text-[14px] font-semibold text-white transition-colors hover:bg-[var(--ed-ink-hover)] sm:gap-2.5 sm:px-6 sm:text-[14.5px]"><span class="sm:hidden">Contactez-nous</span><span class="hidden sm:inline">Je suis intéressé par cette propriété</span><span></span></button></div></div></div><div aria-hidden="true" data-testid="units-spotlight-scrim" class="fixed inset-0 z-[45] bg-[rgba(26,26,23,0.35)] transition-opacity duration-300 motion-reduce:transition-none pointer-events-none opacity-0" data-sentry-component="UnitsSpotlightScrim" data-sentry-source-file="units-spotlight.tsx"></div></div></div><div class="editorial-template" data-sentry-component="EditorialFooter" data-sentry-source-file="footer.tsx"><nav class="fixed bottom-0 left-0 right-0 z-50 border-t border-[var(--ed-hairline)] bg-[var(--ed-surface)] pb-[env(safe-area-inset-bottom)] lg:hidden"><div class="mx-auto h-16 max-w-screen-xl px-2"><ul class="flex h-full items-center justify-around"><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/list" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Liste</span></a></li><li><a class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]" data-sentry-element="RemixLink" data-sentry-source-file="footer.tsx" href="/fr/listings/map" data-discover="true"><span></span><span class="max-w-full truncate text-xs">Carte</span></a></li><li><button type="button" class="flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span></span><span class="max-w-full truncate text-xs">Recherche</span></button></li><li><button type="button" class="relative flex min-w-0 flex-col items-center gap-1 p-2 text-[var(--ed-secondary)]"><span class="relative"><span></span></span><span class="max-w-full truncate text-xs">Filtres</span></button></li></ul></div></nav><footer class="bg-[var(--ed-paper)] lg:hidden"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)] py-7 text-[13.5px] text-[var(--ed-secondary)]"><ul class="mb-5 space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul><div class="flex flex-wrap items-center gap-x-4 gap-y-2 border-t border-[var(--ed-border)] pt-5 sm:gap-x-5"><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 py-2.5 transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><div class="mt-4 flex flex-wrap items-center justify-between gap-2"><span>© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></div></div></footer><div aria-hidden="true" class="h-[calc(var(--footer-height)+env(safe-area-inset-bottom))] lg:hidden"></div><footer class="hidden lg:block bg-[var(--ed-paper)] pb-8"><div class="mx-auto max-w-[1320px] px-[clamp(16px,3vw,40px)]"><div class="pt-14"><div class="grid grid-cols-1 gap-10 md:grid-cols-2 lg:grid-cols-4"><div class="lg:col-span-2"><a class="ed-serif mb-5 inline-block text-[26px] text-[var(--ed-ink)]" href="/fr" data-discover="true">Halfred | Apartment rentals</a><p class="mb-6 max-w-sm text-[14.5px] leading-relaxed text-[var(--ed-secondary)]">Appartements à louer dans l’Outaouais et les Laurentides. Optez pour une solution clé en main.</p><div class="flex gap-3"><a href="https://www.facebook.com/halfredgestionimmobiliere/" target="_blank" rel="noopener noreferrer" aria-label="Facebook" class="flex h-10 w-10 items-center justify-center rounded-full border border-[var(--ed-border)] text-[var(--ed-ink)] transition-colors hover:border-[var(--ed-ink)]"><span></span></a></div></div><div><div class="ed-kicker mb-5">Liens rapides</div><ul class="space-y-3"><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/list" data-discover="true">Listings</a></li><li><a class="text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]" href="/fr/listings/map" data-discover="true">Map</a></li></ul></div><div><div class="ed-kicker mb-5">Contact</div><ul class="space-y-3"><li><a href="mailto:info@halfred.ca" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>info@halfred.ca</a></li><li><a href="tel:(819) 593-3304" class="flex items-center gap-2 text-[14.5px] text-[var(--ed-secondary)] transition-colors hover:text-[var(--ed-ink)]"><span></span>(819) 593-3304</a></li></ul></div></div></div><div class="mt-12 border-t border-[var(--ed-border)] pb-2 pt-7 relative flex flex-col items-center justify-between gap-4 text-[13.5px] text-[var(--ed-secondary)] md:flex-row"><span class="lg:flex-1">© <!-- -->2026<!-- --> <!-- -->Halfred | Apartment rentals</span><div class="flex items-center gap-5"><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Politique de confidentialité</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="transition-colors hover:text-[var(--ed-ink)]">Conditions d&#x27;utilisation</button><span class="text-[var(--ed-border)]">·</span><button type="button" class="-my-2.5 inline-flex items-center gap-1 py-2.5 transition-colors hover:text-[var(--ed-ink)]" data-sentry-component="LocaleSwitch" data-sentry-source-file="footer.tsx"><span></span><span class="font-medium text-[var(--ed-ink)]">EN</span><span class="text-[var(--ed-border)]">/</span><span class="">FR</span></button></div><span class="flex lg:flex-1 lg:justify-end"><a href="https://eversa.app?utm_source=client_site&amp;utm_medium=footer&amp;utm_campaign=Halfred%20%7C%20Apartment%20rentals" target="_blank" rel="noopener noreferrer" data-testid="powered-by-eversa" class="group inline-flex w-fit items-stretch overflow-hidden whitespace-nowrap rounded-full shadow-[0_1px_3px_rgba(0,0,0,0.15)] transition-shadow hover:shadow-[0_2px_8px_rgba(0,0,0,0.25)] "><span class="flex items-center gap-[7px] bg-[#141414] py-[7px] pl-3 pr-2.5"><span class="text-[10px] leading-none text-white/70">Propulsé par</span><svg viewBox="31.12 18.1 801.77 143.8" class="h-[9px] w-auto text-white" role="img" aria-label="Eversa" focusable="false" data-sentry-element="svg" data-sentry-component="EversaWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M570.311,31.321l-10.07,21.901c-7.639-4.911-15.252-7.031-23.435-7.031c-23.184,0-38.459,18.273-38.459,46.095v66.275h0c-14.009,0-25.365-11.356-25.365-25.365V23.827h22.64l0.27,22.638C506.53,29.553,520.168,21.37,538.17,21.37C550.988,21.37,562.848,25.501,570.311,31.321z" fill="currentColor"></path><path d="M832.884,46.177v112.385h-22.363l-0.273-19.575c-10.636,14.184-29.185,22.91-51.275,22.91c-39.548,0-67.368-28.909-67.368-70.367c0-41.456,27.82-70.364,67.368-70.364c22.09,0,40.638,8.726,51.275,22.91l0.273-20.263h0C822.872,23.813,832.884,33.826,832.884,46.177z M807.52,91.53c0-27.545-18.546-46.91-45.276-46.91c-26.455,0-45.273,19.365-45.273,46.91c0,27.548,18.819,46.91,45.273,46.91C788.975,138.441,807.52,119.078,807.52,91.53z" fill="currentColor"></path><path d="M309.188,18.102c-10.306,0-19.708,6.148-24.216,15.835l-45.191,97.12l-23.762-51.23c-4.501-9.704-13.912-15.867-24.231-15.867h-12.046l43.879,94.602h3.361h25.556h3.42l65.358-140.459H309.188z" fill="currentColor"></path><path d="M127.975,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L127.975,133.694z M100.801,43.758c25.042,0,41.648,14.154,43.825,35.931H57.519C61.602,57.097,77.12,43.758,100.801,43.758z" fill="currentColor"></path><path d="M411.846,133.694c-7.445,3.04-16.116,4.792-24.724,4.792c-25.858,0-44.07-17.784-46.001-37.292h111.334c3.81-49.542-22.323-80.029-68.597-80.029c-41.105,0-68.87,28.58-68.87,69.955c0,38.808,28.31,70.777,71.592,70.777c15.493,0,30.363-4.046,42.348-11.122L411.846,133.694z M384.672,43.758c25.042,0,41.648,14.154,43.825,35.931H341.39C345.474,57.097,360.991,43.758,384.672,43.758z" fill="currentColor"></path><path d="M627.355,79.26c-20.645-3.001-28.51-8.182-28.51-18.275c0-11.454,10.57-17.728,30.229-17.728c9.741,0,18.683,2.082,27.128,6.628l15.554-15.554c-12.755-8.879-26.995-13.164-43.664-13.164c-30.966,0-51.61,16.091-51.61,40.092c0,22.637,16.219,36.001,48.906,40.365c21.873,3.001,30.476,8.182,30.476,19.092c0,11.454-10.814,18.31-28.261,18.272c-16.048-0.035-29.115-5.359-39.381-13.04l-15.488,15.488c15.429,12.915,32.063,20.463,54.376,20.463c30.722,0,51.366-16.638,51.366-40.912C678.475,96.441,663.482,84.441,627.355,79.26z" fill="currentColor"></path></svg></span><span class="flex items-center bg-[#00A9E0] pl-2.5 pr-3 text-[#141414]"><svg viewBox="8.46 -133.2 892.26 134.82" class="w-auto" style="height:8.57512367491166px" role="img" aria-label="Showcase" focusable="false" data-sentry-element="svg" data-sentry-component="ModuleWordmark" data-sentry-source-file="powered-by-eversa.tsx"><path d="M48.78 1.62Q37.44 1.62 28.44-2.25Q19.44-6.12 14.22-13.05Q9-19.98 8.46-28.98L25.38-28.98Q26.10-21.60 32.31-16.92Q38.52-12.24 48.60-12.24Q57.96-12.24 63.36-16.38Q68.76-20.52 68.76-26.82Q68.76-33.30 63-36.45Q57.24-39.60 45.18-42.66Q34.20-45.54 27.27-48.51Q20.34-51.48 15.39-57.33Q10.44-63.18 10.44-72.72Q10.44-80.28 14.94-86.58Q19.44-92.88 27.72-96.57Q36-100.26 46.62-100.26Q63-100.26 73.08-91.98Q83.16-83.70 83.88-69.30L67.50-69.30Q66.96-77.04 61.29-81.72Q55.62-86.40 46.08-86.40Q37.26-86.40 32.04-82.62Q26.82-78.84 26.82-72.72Q26.82-67.86 29.97-64.71Q33.12-61.56 37.89-59.67Q42.66-57.78 51.12-55.44Q61.74-52.56 68.40-49.77Q75.06-46.98 79.83-41.40Q84.60-35.82 84.78-26.82Q84.78-18.72 80.28-12.24Q75.78-5.76 67.59-2.07Q59.40 1.62 48.78 1.62M156.78-100.44Q167.94-100.44 176.94-95.67Q185.94-90.90 191.07-81.36Q196.20-71.82 196.20-58.14L196.20 0L180 0L180-55.80Q180-70.56 172.62-78.39Q165.24-86.22 152.46-86.22Q139.50-86.22 131.85-78.12Q124.20-70.02 124.20-54.54L124.20 0L107.82 0L107.82-133.20L124.20-133.20L124.20-84.60Q129.06-92.16 137.61-96.30Q146.16-100.44 156.78-100.44M266.04 1.62Q252.18 1.62 240.93-4.68Q229.68-10.98 223.29-22.59Q216.90-34.20 216.90-49.50Q216.90-64.62 223.47-76.23Q230.04-87.84 241.38-94.05Q252.72-100.26 266.76-100.26Q280.80-100.26 292.14-94.05Q303.48-87.84 310.05-76.32Q316.62-64.80 316.62-49.50Q316.62-34.20 309.87-22.59Q303.12-10.98 291.60-4.68Q280.08 1.62 266.04 1.62M266.04-12.78Q274.86-12.78 282.60-16.92Q290.34-21.06 295.11-29.34Q299.88-37.62 299.88-49.50Q299.88-61.38 295.20-69.66Q290.52-77.94 282.96-81.99Q275.40-86.04 266.58-86.04Q257.58-86.04 250.11-81.99Q242.64-77.94 238.14-69.66Q233.64-61.38 233.64-49.50Q233.64-37.44 238.05-29.16Q242.46-20.88 249.84-16.83Q257.22-12.78 266.04-12.78M453.42-98.64L469.62-98.64L438.84 0L421.92 0L398.16-78.30L374.40 0L357.48 0L326.52-98.64L343.26-98.64L365.94-15.84L390.42-98.64L407.16-98.64L431.10-15.66L453.42-98.64M479.70-49.50Q479.70-64.80 485.82-76.23Q491.94-87.66 502.83-93.96Q513.72-100.26 527.76-100.26Q545.94-100.26 557.73-91.44Q569.52-82.62 573.30-66.96L555.66-66.96Q553.14-75.96 545.85-81.18Q538.56-86.40 527.76-86.40Q513.72-86.40 505.08-76.77Q496.44-67.14 496.44-49.50Q496.44-31.68 505.08-21.96Q513.72-12.24 527.76-12.24Q538.56-12.24 545.76-17.28Q552.96-22.32 555.66-31.68L573.30-31.68Q569.34-16.56 557.46-7.47Q545.58 1.62 527.76 1.62Q513.72 1.62 502.83-4.68Q491.94-10.98 485.82-22.50Q479.70-34.02 479.70-49.50M588.96-49.68Q588.96-64.80 595.08-76.23Q601.20-87.66 611.91-93.96Q622.62-100.26 635.76-100.26Q648.72-100.26 658.26-94.68Q667.80-89.10 672.48-80.64L672.48-98.64L689.04-98.64L689.04 0L672.48 0L672.48-18.36Q667.62-9.72 657.99-4.05Q648.36 1.62 635.58 1.62Q622.44 1.62 611.82-4.86Q601.20-11.34 595.08-23.04Q588.96-34.74 588.96-49.68M672.48-49.50Q672.48-60.66 667.98-68.94Q663.48-77.22 655.83-81.63Q648.18-86.04 639-86.04Q629.82-86.04 622.26-81.72Q614.70-77.40 610.20-69.12Q605.70-60.84 605.70-49.68Q605.70-38.34 610.20-29.97Q614.70-21.60 622.26-17.19Q629.82-12.78 639-12.78Q648.18-12.78 655.83-17.19Q663.48-21.60 667.98-29.97Q672.48-38.34 672.48-49.50M751.68 1.62Q740.34 1.62 731.34-2.25Q722.34-6.12 717.12-13.05Q711.90-19.98 711.36-28.98L728.28-28.98Q729-21.60 735.21-16.92Q741.42-12.24 751.50-12.24Q760.86-12.24 766.26-16.38Q771.66-20.52 771.66-26.82Q771.66-33.30 765.90-36.45Q760.14-39.60 748.08-42.66Q737.10-45.54 730.17-48.51Q723.24-51.48 718.29-57.33Q713.34-63.18 713.34-72.72Q713.34-80.28 717.84-86.58Q722.34-92.88 730.62-96.57Q738.90-100.26 749.52-100.26Q765.90-100.26 775.98-91.98Q786.06-83.70 786.78-69.30L770.40-69.30Q769.86-77.04 764.19-81.72Q758.52-86.40 748.98-86.40Q740.16-86.40 734.94-82.62Q729.72-78.84 729.72-72.72Q729.72-67.86 732.87-64.71Q736.02-61.56 740.79-59.67Q745.56-57.78 754.02-55.44Q764.64-52.56 771.30-49.77Q777.96-46.98 782.73-41.40Q787.50-35.82 787.68-26.82Q787.68-18.72 783.18-12.24Q778.68-5.76 770.49-2.07Q762.30 1.62 751.68 1.62M900.72-53.10Q900.72-48.42 900.18-43.20L821.34-43.20Q822.24-28.62 831.33-20.43Q840.42-12.24 853.38-12.24Q864-12.24 871.11-17.19Q878.22-22.14 881.10-30.42L898.74-30.42Q894.78-16.20 882.90-7.29Q871.02 1.62 853.38 1.62Q839.34 1.62 828.27-4.68Q817.20-10.98 810.90-22.59Q804.60-34.20 804.60-49.50Q804.60-64.80 810.72-76.32Q816.84-87.84 827.91-94.05Q838.98-100.26 853.38-100.26Q867.42-100.26 878.22-94.14Q889.02-88.02 894.87-77.31Q900.72-66.60 900.72-53.10M883.80-56.52Q883.80-65.88 879.66-72.63Q875.52-79.38 868.41-82.89Q861.30-86.40 852.66-86.40Q840.24-86.40 831.51-78.48Q822.78-70.56 821.52-56.52" fill="currentColor" data-sentry-element="path" data-sentry-source-file="powered-by-eversa.tsx"></path></svg></span></a></span></div></div></footer></div></div><script data-sentry-element="ScrollRestoration" data-sentry-source-file="root.layout.tsx">((storageKey2, restoreKey) => {
29 + if (!window.history.state || !window.history.state.key) {
30 + let key = Math.random().toString(32).slice(2);
31 + window.history.replaceState({ key }, "");
32 + }
33 + try {
34 + let positions = JSON.parse(sessionStorage.getItem(storageKey2) || "{}");
35 + let storedY = positions[restoreKey || window.history.state.key];
36 + if (typeof storedY === "number") {
37 + window.scrollTo(0, storedY);
38 + }
39 + } catch (error) {
40 + console.error(error);
41 + sessionStorage.removeItem(storageKey2);
42 + }
43 + })("react-router-scroll-positions", null)</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx">window.__reactRouterContext = {"basename":"/","future":{"unstable_optimizeDeps":false,"v8_passThroughRequests":false,"v8_trailingSlashAwareDataRequests":false,"unstable_previewServerPrerendering":false,"v8_middleware":false,"v8_splitRouteModules":false,"v8_viteEnvironmentApi":true},"routeDiscovery":{"mode":"lazy","manifestPath":"/__manifest"},"ssr":true,"isSpaMode":false};window.__reactRouterContext.stream = new ReadableStream({start(controller){window.__reactRouterContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());</script><script data-sentry-element="Scripts" data-sentry-source-file="root.layout.tsx" type="module" async="">;
44 +import * as route0 from "/assets/root-QjKtVYQu.js";
45 +import * as route1 from "/assets/public-language.route-CAo3UYRz.js";
46 +import * as route2 from "/assets/listings-layout.page-LDEbvt1e.js";
47 +import * as route3 from "/assets/project-detail.page-BFNjsI3w.js";
48 + window.__reactRouterManifest = {
49 + "entry": {
50 + "module": "/assets/entry.client-BIJa3TY3.js",
51 + "imports": [
52 + "/assets/jsx-runtime-umhk6iWe.js",
53 + "/assets/debug-build-VZlf1Aof.js",
54 + "/assets/chunk-QUQL4437-m7Whu12z.js",
55 + "/assets/index-blsAimsU.js",
56 + "/assets/instance-Dwq5XJYG.js",
57 + "/assets/locale-rlhQ6FjN.js",
58 + "/assets/paths-CiQnXl4X.js",
59 + "/assets/index-DJnVLKJF.js"
60 + ],
61 + "css": []
62 + },
63 + "routes": {
64 + "root": {
65 + "id": "root",
66 + "path": "",
67 + "hasAction": false,
68 + "hasLoader": true,
69 + "hasClientAction": false,
70 + "hasClientLoader": false,
71 + "hasClientMiddleware": false,
72 + "hasDefaultExport": true,
73 + "hasErrorBoundary": true,
74 + "module": "/assets/root-QjKtVYQu.js",
75 + "imports": [
76 + "/assets/jsx-runtime-umhk6iWe.js",
77 + "/assets/debug-build-VZlf1Aof.js",
78 + "/assets/chunk-QUQL4437-m7Whu12z.js",
79 + "/assets/index-blsAimsU.js",
80 + "/assets/instance-Dwq5XJYG.js",
81 + "/assets/locale-rlhQ6FjN.js",
82 + "/assets/paths-CiQnXl4X.js",
83 + "/assets/index-DJnVLKJF.js",
84 + "/assets/icon-D77RBjQx.js",
85 + "/assets/index-BcM1d6pB.js",
86 + "/assets/index-BxwHZyk5.js",
87 + "/assets/address-picker-D28Ia1SL.js",
88 + "/assets/should-revalidate-for-modal-BjoLrI2F.js",
89 + "/assets/app-form-CRPZmLNY.js",
90 + "/assets/client-CpT78rmL.js",
91 + "/assets/use-auth-D_t8q_v4.js",
92 + "/assets/runtime-TD3m583z.js",
93 + "/assets/app-role-CLgIwJtM.js",
94 + "/assets/button-KaTnxiWj.js",
95 + "/assets/debounced-input-CiRn7H0h.js",
96 + "/assets/modal-BG3X61k6.js",
97 + "/assets/select-DAy4fObn.js",
98 + "/assets/spinner-DDyy7LQF.js",
99 + "/assets/chunk-Z2IJA2C6-HV0pgn-m.js",
100 + "/assets/chunk-X7MTWOQW-WAUgT67m.js",
101 + "/assets/chunk-KCYYJJH4-D1ITcD8b.js",
102 + "/assets/use-screenshot-mode-RoZeXH-d.js",
103 + "/assets/chunk-MZRCPRP2-DYxK4Zfu.js",
104 + "/assets/chunk-AEGP7AWW-CdjLmKwP.js",
105 + "/assets/chunk-LWGPUDJ5-DXeFIXJr.js",
106 + "/assets/chunk-Z3BOY3TE-DEWsIWYm.js",
107 + "/assets/chunk-XHMVOG2O-4Klpj7aY.js",
108 + "/assets/chunk-ANTZPR32-oluoUkZX.js",
109 + "/assets/index-BY237WkB.js",
110 + "/assets/use-tenant-wE0zDJ1a.js",
111 + "/assets/check.types-BWLDkV3s.js",
112 + "/assets/index-CwlnhZHs.js",
113 + "/assets/index-CXP4lC37.js",
114 + "/assets/google-analytics-D-bO2gMa.js",
115 + "/assets/use-hydrated-nn_6IPIK.js",
116 + "/assets/index-8boKsGvQ.js",
117 + "/assets/chunk-XOTBZDRP-Cs68Z8tX.js",
118 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
119 + "/assets/context-C7uvIu_A.js",
120 + "/assets/preload-helper-Cer9inx8.js",
121 + "/assets/useModal-C3khzgYn.js",
122 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
123 + "/assets/root.not-found-DP5tZm2i.js",
124 + "/assets/show-BOEsnqQk.js",
125 + "/assets/use-is-iframe-DIKEri2l.js",
126 + "/assets/chunk-J7I6W5JF-BxlgVQt-.js",
127 + "/assets/chunk-T45N425O-CCF24x8B.js",
128 + "/assets/index-4iKnbB6S.js",
129 + "/assets/divider-DdHzHMcP.js",
130 + "/assets/chunk-IHO36JMK-CudmTyxx.js",
131 + "/assets/chip-CYQecIkM.js",
132 + "/assets/chunk-IGTUIHQL-CdI6Gxle.js",
133 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
134 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
135 + "/assets/proxy-BlmPTkqy.js",
136 + "/assets/create-visual-element-Cc1-iv7S.js",
137 + "/assets/accelerated-values-ClBEnI7v.js",
138 + "/assets/index-DmhvH8SD.js",
139 + "/assets/layout-CqatgvGE.js",
140 + "/assets/chunk-MW56SEHC-DwFKBuSp.js",
141 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
142 + "/assets/chunk-LGSBTEIA-UfZs9AlK.js",
143 + "/assets/chunk-A6PX3NG3-Chz5RD4X.js",
144 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
145 + "/assets/index-CRabYQb-.js",
146 + "/assets/index-DuhTrrt1.js",
147 + "/assets/input-CkQmsiJb.js",
148 + "/assets/chunk-HLVSDU2Q-BfKq6B3B.js",
149 + "/assets/chunk-M4TMBWRA-DZmj94dY.js",
150 + "/assets/chunk-2BFF5KFD-B5kMqXyZ.js",
151 + "/assets/useControlledState-C6ovzWeF.js",
152 + "/assets/useFormValidation-BlL8vXtt.js",
153 + "/assets/useControlledState-Dl_rDvO0.js",
154 + "/assets/useField-CBKMx-DQ.js",
155 + "/assets/useLabel-FzyH2LZi.js",
156 + "/assets/useLabels-BL4rQGMb.js",
157 + "/assets/chunk-SLABUSGS-CsPdtrbI.js",
158 + "/assets/mergeRefs-C8xtGVp3.js",
159 + "/assets/extends-BSSSaanF.js",
160 + "/assets/chunk-M3MASYO7-COH9P04M.js",
161 + "/assets/types-BKXG3Vd5.js",
162 + "/assets/index-BoeY4VQ9.js",
163 + "/assets/OtpInput-CJhAm1Gc.js",
164 + "/assets/roles-Cde3N6LE.js",
165 + "/assets/modal-root-haL454LR.js",
166 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
167 + "/assets/useOverlayTriggerState-woQJgDxB.js",
168 + "/assets/FocusScope-CWuTxhav.js",
169 + "/assets/useDialog-Bh9KG6MB.js",
170 + "/assets/VisuallyHidden-D-Q2SU4O.js",
171 + "/assets/isScrollable-Dnxj3NSq.js",
172 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
173 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
174 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
175 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
176 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
177 + "/assets/Item-DuavYi1u.js",
178 + "/assets/chunk-PNCCMQP3-Dlh7B5Hk.js",
179 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
180 + "/assets/number-lhSI2oqU.js",
181 + "/assets/chunk-2TLCDWYU-RTcKDiay.js",
182 + "/assets/getItemCount-BQolBIkZ.js",
183 + "/assets/SelectionManager-BmJrKgY4.js",
184 + "/assets/scrollIntoView-BWAA50rI.js",
185 + "/assets/useSelectableItem-Ds0Ihirs.js",
186 + "/assets/useDescription-DF6TDnVi.js",
187 + "/assets/index-D8QbWu84.js",
188 + "/assets/useSelectableList-BOP0KhmN.js",
189 + "/assets/DOMLayoutDelegate-Brany3qe.js",
190 + "/assets/useCollator-CbJkpXG2.js",
191 + "/assets/useTreeState-Dx1W0YuM.js",
192 + "/assets/useMenuTriggerState-CHKcWOlC.js",
193 + "/assets/useMenuTrigger-DKFjnCNZ.js",
194 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
195 + "/assets/Section-CaP3oBph.js",
196 + "/assets/chunk-SKOC4V7G-Do7Tq4HL.js",
197 + "/assets/useToggleState-DY8z2i0t.js",
198 + "/assets/index-BzZ-MzUq.js",
199 + "/assets/useToggle-QKKEqo_x.js",
200 + "/assets/chunk-SCEI2WGG-BFru4-X-.js",
201 + "/assets/useListState-B4m86R4N.js",
202 + "/assets/chunk-6KAJCIZ3-P4qKaVGt.js",
203 + "/assets/chunk-7F3ZLNJ6-DJ7VTYH6.js",
204 + "/assets/index-BqKdBFUB.js",
205 + "/assets/slugify-CySYC-JW.js",
206 + "/assets/skus-CGbSBieh.js",
207 + "/assets/index-DqzG1Q9x.js",
208 + "/assets/support-packages.config-6a6yxm_x.js"
209 + ],
210 + "css": [
211 + "/assets/root-BKxsnM4_.css"
212 + ]
213 + },
214 + "public-language": {
215 + "id": "public-language",
216 + "parentId": "root",
217 + "path": ":lang?",
218 + "hasAction": false,
219 + "hasLoader": true,
220 + "hasClientAction": false,
221 + "hasClientLoader": false,
222 + "hasClientMiddleware": false,
223 + "hasDefaultExport": true,
224 + "hasErrorBoundary": false,
225 + "module": "/assets/public-language.route-CAo3UYRz.js",
226 + "imports": [
227 + "/assets/chunk-QUQL4437-m7Whu12z.js",
228 + "/assets/jsx-runtime-umhk6iWe.js"
229 + ],
230 + "css": []
231 + },
232 + "PublicListingsLayoutPage": {
233 + "id": "PublicListingsLayoutPage",
234 + "parentId": "public-language",
235 + "path": "listings",
236 + "hasAction": false,
237 + "hasLoader": true,
238 + "hasClientAction": false,
239 + "hasClientLoader": false,
240 + "hasClientMiddleware": false,
241 + "hasDefaultExport": true,
242 + "hasErrorBoundary": false,
243 + "module": "/assets/listings-layout.page-LDEbvt1e.js",
244 + "imports": [
245 + "/assets/chunk-QUQL4437-m7Whu12z.js",
246 + "/assets/jsx-runtime-umhk6iWe.js",
247 + "/assets/runtime-MtUT-9pW.js",
248 + "/assets/global-progress-CjDASA7T.js",
249 + "/assets/facebook-pixel-B5MxbSaJ.js",
250 + "/assets/google-analytics-D-bO2gMa.js",
251 + "/assets/header-BBMyfPB0.js",
252 + "/assets/footer-Byz07yjl.js",
253 + "/assets/powered-by-eversa-BF980dJS.js",
254 + "/assets/listing-card-Cg3TPyWe.js",
255 + "/assets/should-revalidate-public-site-5Jm5YPL-.js",
256 + "/assets/types-BKXG3Vd5.js",
257 + "/assets/chunk-46U6G7UJ-gFKycGP3.js",
258 + "/assets/chunk-GIXI35A3-B8XtW7nM.js",
259 + "/assets/index-CXP4lC37.js",
260 + "/assets/use-locale-BnwvbFV-.js",
261 + "/assets/instance-Dwq5XJYG.js",
262 + "/assets/locale-rlhQ6FjN.js",
263 + "/assets/use-localized-path-BMxKZwMg.js",
264 + "/assets/i18n-CTdcZBaW.js",
265 + "/assets/date-C7fQmg2U.js",
266 + "/assets/format-BKStloXP.js",
267 + "/assets/differenceInCalendarMonths-BIK1pmCx.js",
268 + "/assets/formatDistanceToNow-BvwR-I5H.js",
269 + "/assets/paths-CiQnXl4X.js",
270 + "/assets/icon-D77RBjQx.js",
271 + "/assets/modal-BG3X61k6.js",
272 + "/assets/runtime-TD3m583z.js",
273 + "/assets/modal-root-haL454LR.js",
274 + "/assets/chunk-3BLMMOBU-tqWtrwC-.js",
275 + "/assets/chunk-UWE6H66T-CATF3OXa.js",
276 + "/assets/preload-helper-Cer9inx8.js",
277 + "/assets/index-DmhvH8SD.js",
278 + "/assets/useOverlayTriggerState-woQJgDxB.js",
279 + "/assets/FocusScope-CWuTxhav.js",
280 + "/assets/chunk-6VC6TS2O-SX8Y9q32.js",
281 + "/assets/useControlledState-Dl_rDvO0.js",
282 + "/assets/useDialog-Bh9KG6MB.js",
283 + "/assets/VisuallyHidden-D-Q2SU4O.js",
284 + "/assets/isScrollable-Dnxj3NSq.js",
285 + "/assets/useLabels-BL4rQGMb.js",
286 + "/assets/useLocalizedStringFormatter-D7dPX0dK.js",
287 + "/assets/context-C7uvIu_A.js",
288 + "/assets/index-DJnVLKJF.js",
289 + "/assets/chunk-3JRSRN3Z-BUx49d_-.js",
290 + "/assets/mergeRefs-C8xtGVp3.js",
291 + "/assets/chunk-O5MCAK4F-A0F2Kr_1.js",
292 + "/assets/chunk-4EXC76WE-CTMOnrtn.js",
293 + "/assets/chunk-AN5I7NTT-DacZf5QI.js",
294 + "/assets/proxy-BlmPTkqy.js",
295 + "/assets/create-visual-element-Cc1-iv7S.js",
296 + "/assets/accelerated-values-ClBEnI7v.js",
297 + "/assets/layout-CqatgvGE.js",
298 + "/assets/index-blsAimsU.js",
299 + "/assets/listingTypes-CkyCgPCr.js",
300 + "/assets/floor-label-CGeBlKR2.js",
301 + "/assets/chunk-2R3S2K5U-B-QC78gb.js",
302 + "/assets/useFormValidation-BlL8vXtt.js",
303 + "/assets/number-lhSI2oqU.js",
304 + "/assets/useLabel-FzyH2LZi.js",
305 + "/assets/useNumberFormatter-DG2VO0C1.js",
306 + "/assets/NumberFormatter-BWU_gJyt.js",
307 + "/assets/chunk-BWXGEJBS-HK8A-kdw.js",
308 + "/assets/chunk-WQVQ7P2I-CK8OnwRa.js",
309 + "/assets/chunk-GQT3YUX3-DzENEW_R.js",
310 + "/assets/chunk-OTWYT2HS-lPQ6au10.js",
311 + "/assets/index-DuhTrrt1.js",
312 + "/assets/useModal-C3khzgYn.js",
313 + "/assets/chunk-HAJUSXOG-CmxXBVjy.js",
314 + "/assets/useButton-DZK-beuH.js",
315 + "/assets/chunk-OH2E76JR-DzJdiJUl.js",
316 + "/assets/index-B915wqUE.js",
317 + "/assets/useTreeState-Dx1W0YuM.js",
318 + "/assets/SelectionManager-BmJrKgY4.js",
319 + "/assets/scrollIntoView-BWAA50rI.js",
320 + "/assets/useSelectableList-BOP0KhmN.js",
321 + "/assets/DOMLayoutDelegate-Brany3qe.js",
322 + "/assets/useCollator-CbJkpXG2.js",

Diff truncated — file too large.